@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2B1B4D;
    --secondary: #3D2A5F;
    --accent: #CC9A33;
    --dark: #0A0612;
    --dark-secondary: #1A0F2E;
    --dark-tertiary: #2B1B4D;
    --warm: #1C1520;
    --light: #FFFFFF;
    --gold: #CC9A33;
    --text-dark: #E8E3ED;
    --text-light: #B8B0C3;
    --ease: cubic-bezier(0.77, 0, 0.175, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s var(--ease);
    background: rgba(10, 6, 18, 0);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 2px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--light);
    text-shadow: 0 0 30px rgba(204, 154, 51, 0.5);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-reserve {
    padding: 12px 30px;
    color: var(--dark);
    background: var(--accent);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    
}

.btn-reserve:hover {
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 154, 51, 0.6);
}

nav.scrolled {
    background: rgba(10, 6, 18, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 60px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* ==================== NAVIGATION RESPONSIVE ==================== */

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Bouton hamburger pour mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    margin-right: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--accent);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* État ouvert du menu hamburger */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Overlay pour mobile */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 6, 18, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Navigation mobile */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--primary) 100%);
    z-index: 1000;
    transition: right 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    padding: 100px 40px 40px;
    border-left: 2px solid var(--accent);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.mobile-nav-links li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(204, 154, 51, 0.2);
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
    color: var(--accent);
    transform: translateX(10px);
}

.mobile-nav .btn-reserve {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

/* Fermeture du menu mobile */
.mobile-nav-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-nav-close:hover {
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/DSC06195.jpg') center/cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
    filter: brightness(0.7);
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(10, 6, 18, 0.4) 0%, rgba(10, 6, 18, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
    text-shadow: 0 0 20px rgba(204, 154, 51, 0.5);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    font-weight: 900;
    color: var(--light);
    text-shadow: 0 0 30px rgba(204, 154, 51, 0.4), 0 4px 20px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

.hero-description {
    font-size: 18px;
    line-height: 2.2;
    text-align: justify;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    max-width: 1200px;
    margin: 0 auto 50px;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

.btn-primary,
.btn-secondary {
    padding: 18px 45px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 0, 22, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.btn-secondary:hover {
    background: var(--light);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Badges flottants */
.floating-badge {
    position: absolute;
    background: rgba(26, 15, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(204, 154, 51, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    z-index: 3;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.badge-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.badge-2 {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.badge-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(204, 154, 51, 0.5);
}

/* Section About */
.about-section {
    padding: 150px 60px;
    background: var(--dark-secondary);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 100px;
}

.section-label {
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.section-label.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-text {
    font-size: 18px;
    line-height: 2.2;
    text-align: justify;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
}

.section-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section avec Carrousel d'Images */
.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.about-text {
    padding-right: 40px;
}

.about-image {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s var(--ease);
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 10px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(204, 154, 51, 0.3);
    transition: all 0.6s var(--ease);
    height: 600px;
}

.image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px rgba(204, 154, 51, 0.3);
    border-color: var(--accent);
}

/* Slider Styles */
.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.restaurant-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) grayscale(0.1);
    transition: filter 1.2s var(--ease);
}

.slide.active .restaurant-image {
    filter: brightness(0.9) grayscale(0);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(43, 27, 77, 0.7) 0%,
            rgba(43, 27, 77, 0.3) 50%,
            transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 2;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--light);
    transform: translateY(20px);
    transition: transform 0.6s ease 0.2s;
}

.image-wrapper:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 24px;
    color: var(--accent);
    text-shadow: 0 0 15px rgba(204, 154, 51, 0.6);
}

.overlay-content span {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(204, 154, 51, 0.6);
}

.dot:hover {
    background: var(--accent);
    transform: scale(1.1);
}

/* Ajustements pour la section about existante */
.about-section .section-header {
    text-align: left;
    max-width: 100%;
    margin: 0 0 0 0;
}

.about-section .section-label {
    text-align: left;
}

.about-section .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.about-section .section-text {
    text-align: left;
    font-size: 17px;
    line-height: 1.9;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--dark);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(204, 154, 51, 0.2);
    text-align: center;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(40px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1).visible {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2).visible {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3).visible {
    transition-delay: 0.3s;
}

.feature-card:hover {
    background: var(--primary);
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(204, 154, 51, 0.2);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 25px;
    color: var(--accent);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 15px;
}

.feature-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Romantic Section */
.romantic-section {
    padding: 180px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('images/BELUGA-FOOD-34.jpg') center/cover;
}

.romantic-section::before {
    content: '💕';
    position: absolute;
    font-size: 500px;
    opacity: 0.15;
    padding-top: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--dark) 0%, var(--dark-secondary) 100%);
    animation: pulse 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(204, 154, 51, 0.3));
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.romantic-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.romantic-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
}

.romantic-text {
    font-size: 22px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.romantic-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.romantic-features {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

/* Music Feature Card */
.music-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    padding: 60px 40px;
    max-width: 900px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.music-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 154, 51, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.music-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(204, 154, 51, 0.4);
}

.music-feature:hover::before {
    opacity: 1;
}

/* Music Visual Layout */
.music-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.instrument {
    position: relative;
    width: 200px;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.instrument:hover {
    transform: scale(1.05);
    border-color: rgba(204, 154, 51, 0.6);
    box-shadow: 0 10px 30px rgba(204, 154, 51, 0.3);
}

.instrument-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: filter 0.4s ease;
}

.instrument:hover .instrument-image {
    filter: brightness(1);
}

.instrument-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 154, 51, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instrument:hover .instrument-glow {
    opacity: 1;
}

.piano {
    transform: perspective(1000px) rotateY(-15deg);
}

.accordion {
    transform: perspective(1000px) rotateY(15deg);
}

.music-feature:hover .piano {
    transform: perspective(1000px) rotateY(-5deg) translateX(-10px);
}

.music-feature:hover .accordion {
    transform: perspective(1000px) rotateY(5deg) translateX(10px);
}

/* Music Center */
.music-center {
    position: relative;
    z-index: 2;
    text-align: center;
}

.romantic-item-icon {
    font-size: 80px;
    margin-bottom: 20px;
    color: var(--dark-secondary);
    transition: all 0.4s ease;
}

.music-feature:hover .romantic-item-icon {
    transform: scale(1.1) rotate(5deg);
}

.music-notes {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.note {
    font-size: 24px;
    color: var(--dark-secondary);
    animation: floatNote 3s ease-in-out infinite;
}

.note:nth-child(1) {
    animation-delay: 0s;
}

.note:nth-child(2) {
    animation-delay: 1s;
}

.note:nth-child(3) {
    animation-delay: 2s;
}

@keyframes floatNote {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(10deg);
    }
}

/* Music Content */
.music-content {
    text-align: center;
}

.romantic-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.romantic-item-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.music-schedule {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-secondary);
    font-weight: 600;
}

.schedule-item i {
    font-size: 20px;
}

/* Groups Section */
.groups-section {
    padding: 150px 60px;
    background: var(--dark);
}

.groups-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1400px;
    margin: 80px auto 0;
}

.group-card {
    position: relative;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
    border: 1px solid rgba(204, 154, 51, 0.2);
}

.group-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.group-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    filter: brightness(0.7);
}

.group-card:hover .group-card-bg {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.group-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 6, 18, 0.95) 0%, transparent 60%);
}

.group-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    z-index: 2;
}

.group-card-label {
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(204, 154, 51, 0.6);
}

.group-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.group-card-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 25px;
}

.group-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.3s ease;
    text-shadow: 0 0 10px rgba(204, 154, 51, 0.6);
}

.group-card:hover .group-card-link {
    gap: 15px;
}

/* Testimonials */
.testimonials-section {
    padding: 150px 60px;
    background: var(--dark-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 80px auto 0;
}

.testimonial-card {
    background: rgba(26, 15, 46, 0.6);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(204, 154, 51, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    background: rgba(204, 154, 51, 0.15);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(204, 154, 51, 0.3);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(204, 154, 51, 0.6);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
    box-shadow: 0 0 20px rgba(204, 154, 51, 0.5);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    color: var(--light);
    margin-bottom: 3px;
}

.testimonial-type {
    font-size: 13px;
    color: var(--accent);
}

/* CTA Final */
.cta-final {
    background: var(--dark);
    text-align: center;
}

.cta-box {
    padding: 120px 60px;
    background: linear-gradient(135deg, rgba(10, 6, 18, 0.85), rgba(43, 27, 77, 0.75)),
        url('https://images.unsplash.com/photo-1424847651672-bf20a4b0982b?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-blend-mode: multiply;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--dark) 35%, transparent 90%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-final-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.cta-final-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta-final-button {
    padding: 20px 50px;
    background: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.cta-final-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: var(--light);
    color: var(--dark);
}

/* Styles spécifiques à la page Menu */
.menu-page {
    background: var(--dark);
}

/* Hero Menu */
.menu-hero {
    height: 100vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(18, 8, 39, 0.95) 0%, rgba(7, 0, 19, 0.9) 100%),
        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&h=1080&fit=crop') center/cover;
}

.menu-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(204, 154, 51, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.menu-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.menu-hero-label {
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(204, 154, 51, 0.5);
}

.menu-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
}

.menu-hero-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Menu Container */
.menu-section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 5%;
}

/* Navigation Menu Catégories */
.menu-categories-nav {
    position: sticky;
    top: 90px;
    background: rgba(26, 15, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: 25px 60px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    z-index: 900;
    border-bottom: 1px solid rgba(204, 154, 51, 0.2);
}

.menu-categories-list {
    display: flex;
    justify-content: center;
    gap: 50px;
    list-style: none;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.menu-categories-list li a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.menu-categories-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent);
}

.menu-categories-list li a:hover,
.menu-categories-list li a.active {
    color: var(--accent);
}

.menu-categories-list li a:hover::after,
.menu-categories-list li a.active::after {
    width: 100%;
}

/* Menu Category - Nouvelle version élégante */
.menu-category {
    margin-bottom: 100px;
}

.menu-category-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(204, 154, 51, 0.2);
}

.menu-category-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.menu-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--light);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.menu-category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}

.menu-category-description {
    color: var(--text-light);
    font-size: 1.1rem;
    font-style: italic;
}

/* Menu Items Grid - Style élégant 2 colonnes */
.menu-items-elegant {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.menu-item-elegant {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--warm) 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(204, 154, 51, 0.15);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.menu-item-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
    transition: height 0.4s ease;
}

.menu-item-elegant:hover {
    transform: translateX(10px);
    border-color: var(--accent);
    box-shadow: -10px 10px 40px rgba(204, 154, 51, 0.15);
}

.menu-item-elegant:hover::before {
    height: 100%;
}

.menu-item-elegant-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.menu-item-elegant-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--light);
    font-weight: 600;
    flex: 1;
    line-height: 1.3;
}

.menu-item-elegant-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.menu-item-elegant-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.menu-item-elegant-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.menu-item-elegant-tag {
    background: rgba(204, 154, 51, 0.1);
    color: var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(204, 154, 51, 0.2);
}

.menu-item-elegant-badge {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent) 0%, #b88a2d 100%);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Menu List - Pour Grillades et Desserts */
.menu-list-elegant {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.menu-list-item-elegant {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--warm) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(204, 154, 51, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.menu-list-item-elegant:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(204, 154, 51, 0.15);
}

.menu-list-item-content {
    flex: 1;
}

.menu-list-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.menu-list-item-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.menu-list-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

/* Menu Formules */
.menu-formulas {
    margin-bottom: 120px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.menu-formulas-header {
    text-align: center;
    margin-bottom: 60px;
}

.menu-formulas-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 15px;
}

.menu-formulas-text {
    font-size: 17px;
    color: var(--text-light);
}

.menu-formulas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.menu-formula-card {
    text-align: center;
    padding: 40px 30px;
    border: 2px solid rgba(204, 154, 51, 0.3);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    background: rgba(10, 6, 18, 0.6);
}

.menu-formula-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(204, 154, 51, 0.3);
    background: rgba(204, 154, 51, 0.1);
}

.menu-formula-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(204, 154, 51, 0.15) 0%, rgba(204, 154, 51, 0.05) 100%);
}

.menu-formula-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--dark);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(204, 154, 51, 0.5);
}

.menu-formula-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 10px;
}

.menu-formula-price {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 25px;
}

.menu-formula-items {
    list-style: none;
    text-align: left;
}

.menu-formula-items li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(204, 154, 51, 0.2);
    color: var(--text-light);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-formula-items li:last-child {
    border-bottom: none;
}

.menu-formula-items li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(204, 154, 51, 0.6);
}

/* SUGGESTIONS DE LA SEMAINE */
.menu-suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-suggestion-section {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(204, 154, 51, 0.2);
    transition: all 0.3s var(--ease);
}

.menu-suggestion-section:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.menu-suggestion-section-title {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    position: relative;
}

.menu-suggestion-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.menu-suggestion-list-elegant {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

/* ANIMATIONS */
.menu-suggestion-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease);
}

.menu-suggestion-section.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Info Section */
.menu-info-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 100px 60px;
    text-align: center;
    border-radius: 30px;
    margin-bottom: 0;
    border: 1px solid rgba(204, 154, 51, 0.3);
}

.menu-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.menu-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-info-item {
    text-align: center;
}

.menu-info-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.menu-info-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

/* Gallery-specific styles that extend styles.css */
.gallery-hero {
    height: 100vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(18, 8, 39, 0.5) 0%, rgba(7, 0, 19, 0.9) 100%),
        url('images/Beluga(20).jpg') center/cover;
}

.gallery-hero .hero-title {
    color: white;
    text-shadow: none;
}

.gallery-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 100px 60px;
}

/* Filter Tabs */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.filter-btn {
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(204, 154, 51, 0.5);
}

/* Masonry Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(204, 154, 51, 0.2);
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Varied heights for masonry effect */
.gallery-item:nth-child(6n+1) {
    grid-row: span 2;
}

.gallery-item:nth-child(6n+3) {
    grid-row: span 2;
}

.gallery-item:nth-child(6n+5) {
    grid-row: span 1;
}

.gallery-item-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.8) grayscale(0.2);
}

.gallery-item:hover .gallery-item-image img {
    transform: scale(1.15);
    filter: brightness(1) grayscale(0);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(43, 27, 77, 0.95) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.gallery-item:hover .gallery-item-title {
    transform: translateY(0);
}

.gallery-item-category {
    font-size: 13px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.15s;
    text-shadow: 0 0 10px rgba(204, 154, 51, 0.6);
}

.gallery-item:hover .gallery-item-category {
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 15, 46, 0.98);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(204, 154, 51, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--accent);
    text-shadow: 0 0 15px rgba(204, 154, 51, 0.6);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    font-size: 30px;
    padding: 20px 25px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(204, 154, 51, 0.3);
}

.lightbox-nav:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
    color: var(--dark);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-info {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
}

.lightbox-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.lightbox-category {
    font-size: 14px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Instagram Feed Section */
.instagram-section {
    padding: 100px 60px;
    background: var(--warm);
    text-align: center;
}

.instagram-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
}

.instagram-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.instagram-handle {
    font-size: 20px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 50px;
    text-shadow: 0 0 10px rgba(204, 154, 51, 0.5);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(204, 154, 51, 0.2);
}

.instagram-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(204, 154, 51, 0.3);
    border-color: var(--accent);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9);
}

.instagram-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 27, 77, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-stats {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.instagram-cta {
    display: inline-block;
    margin-top: 50px;
    padding: 18px 45px;
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.instagram-cta:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(204, 154, 51, 0.3);
}

/* Stats Section */
.stats-section {
    padding: 100px 60px;
    background: var(--dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(204, 154, 51, 0.4);
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Services-specific styles that extend styles.css */
.services-hero {
    height: 100vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(18, 8, 39, 0.5) 0%, rgba(7, 0, 19, 0.9) 100%),
        url('https://images.unsplash.com/photo-1529042410759-befb1204b468?auto=format&fit=crop&w=1920&q=80') center/cover;
}

.services-hero .hero-title {
    color: white;
    text-shadow: none;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px;
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 120px;
}

.service-card {
    background: rgba(26, 15, 46, 0.6);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(204, 154, 51, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(50px);
    backdrop-filter: blur(10px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(204, 154, 51, 0.3);
    border-color: var(--accent);
    background: rgba(204, 154, 51, 0.1);
}

.service-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.8);
}

.service-card:hover .service-card-image img {
    transform: scale(1.15);
    filter: brightness(1);
}

.service-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 20px rgba(204, 154, 51, 0.5);
}

.service-card-content {
    padding: 40px;
}

.service-card-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--accent);
    text-shadow: 0 0 15px rgba(204, 154, 51, 0.5);
}

.service-card:hover .service-card-icon {
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 25px rgba(204, 154, 51, 0.8);
}

.service-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0 0 15px rgba(204, 154, 51, 0.3);
}

.service-card-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-card-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-card-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    font-size: 15px;
    border-bottom: 1px solid rgba(204, 154, 51, 0.2);
}

.service-card-features li:last-child {
    border-bottom: none;
}

.service-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(204, 154, 51, 0.6);
}

.service-card-cta {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(204, 154, 51, 0.5);
}

.service-card-cta:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(204, 154, 51, 0.5);
}

/* Large Feature Section */
.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.feature-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-section:nth-child(even) {
    direction: rtl;
}

.feature-section:nth-child(even)>* {
    direction: ltr;
}

.feature-image {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(204, 154, 51, 0.2);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    filter: brightness(0.8);
}

.feature-section:hover .feature-image img {
    transform: scale(1.08);
    filter: brightness(1);
}

.feature-content {
    padding: 40px;
}

.feature-label {
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(204, 154, 51, 0.5);
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 25px;
    line-height: 1.3;
}

.feature-description {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 30px;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-highlight {
    display: flex;
    align-items: start;
    gap: 15px;
}

.feature-highlight-icon {
    font-size: 24px;
    flex-shrink: 0;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(204, 154, 51, 0.5);
}

.feature-highlight-text {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

/* Modal PDF */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background-color: white;
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #212529;
}

.pdf-container {
    flex: 1;
    overflow: auto;
    padding: 0;
}

.pdf-viewer {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Process Section */
.process-section {
    padding: 100px 60px;
    background: var(--dark-secondary);
    text-align: center;
}

.process-header {
    max-width: 800px;
    margin: 0 auto 80px;
}

.process-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
    
}

.process-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 30px rgba(204, 154, 51, 0.3);
    transition: all 0.4s ease;
    border: 2px solid rgba(204, 154, 51, 0.3);
}

.process-step:hover .process-step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(204, 154, 51, 0.5);
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    color: var(--dark);
}

.process-step-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(204, 154, 51, 0.3);
}

.process-step-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 60px;
    background: var(--dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 80px auto 0;
}

.pricing-card {
    background: rgba(26, 15, 46, 0.6);
    border: 2px solid rgba(204, 154, 51, 0.2);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(204, 154, 51, 0.3);
    border-color: var(--accent);
    background: rgba(204, 154, 51, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: 2px solid var(--accent);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(204, 154, 51, 0.4);
}

.pricing-card.featured * {
    color: white !important;
}

.pricing-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(204, 154, 51, 0.5);
}

.pricing-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 15px;
}

.pricing-price {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(204, 154, 51, 0.4);
}

.pricing-period {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-features li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    font-size: 15px;
    border-bottom: 1px solid rgba(204, 154, 51, 0.2);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(204, 154, 51, 0.6);
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 18px 40px;
    background: var(--accent);
    color: var(--dark);
    border: 2px solid var(--accent);
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(204, 154, 51, 0.6);
}

.pricing-card.featured .pricing-cta {
    background: white;
    color: var(--primary) !important;
    border-color: white;
}

.pricing-card.featured .pricing-cta:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* FAQ Section */
.faqs-section {
    padding: 100px 60px;
    background: var(--dark);
}

.faqs-container {
    max-width: 900px;
    margin: 0 auto;
}

.faqs-item {
    background: rgba(26, 15, 46, 0.6);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(204, 154, 51, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faqs-item:hover {
    border-color: var(--accent);
    background: rgba(204, 154, 51, 0.1);
}

.faqs-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faqs-question:hover {
    color: var(--accent);
}

.faqs-icon {
    font-size: 24px;
    color: var(--accent);
    transition: transform 0.3s ease;
    text-shadow: 0 0 10px rgba(204, 154, 51, 0.5);
}

.faqs-item.active .faqs-icon {
    transform: rotate(45deg);
}

.faqs-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faqs-item.active .faqs-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faqs-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Styles spécifiques à la page Contact */
.contact-page {
    background: var(--dark);
}

/* Hero Contact */
.contact-hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(18, 8, 39, 0.5) 0%, rgba(7, 0, 19, 0.9) 100%),
        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&h=1080&fit=crop') center/cover;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(204, 154, 51, 0.2) 0%, transparent 70%);
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
}

.contact-hero-label {
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
    text-shadow: 0 0 15px rgba(204, 154, 51, 0.5);
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    font-weight: 900;
    color: white;
    margin-bottom: 30px;
    line-height: 1;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.contact-hero-text {
    font-size: 22px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

/* Main Contact Section */
.contact-main {
    padding: 150px 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

/* Formulaire */
.contact-form-section {
    background: rgba(26, 15, 46, 0.6);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(204, 154, 51, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 15px;
}

.contact-form-subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(204, 154, 51, 0.3);
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: rgba(10, 6, 18, 0.8);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(10, 6, 18, 0.9);
    box-shadow: 0 0 0 4px rgba(204, 154, 51, 0.1);
}

.form-textarea {
    min-height: 160px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    width: 100%;
    padding: 20px;
    background: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.form-submit:hover {
    background: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(204, 154, 51, 0.6);
}

/* Info Section */
.contact-info-section {
    position: sticky;
    top: 150px;
}

.contact-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: rgba(26, 15, 46, 0.6);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid rgba(204, 154, 51, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.contact-info-card:hover {
    border-color: var(--accent);
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(204, 154, 51, 0.2);
    background: rgba(204, 154, 51, 0.1);
}

.contact-info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.contact-info-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 12px;
}

.contact-info-card-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-info-card-text a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card-text a:hover {
    color: var(--light);
}

/* Locations Section */
.locations-section {
    padding: 120px 60px;
    background: var(--dark-secondary);
}

.locations-header {
    text-align: center;
    margin-bottom: 80px;
}

.locations-label {
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(204, 154, 51, 0.5);
}

.locations-title {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
}

.locations-text {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.location-card {
    background: rgba(26, 15, 46, 0.6);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(204, 154, 51, 0.2);
    backdrop-filter: blur(10px);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(204, 154, 51, 0.3);
    border-color: var(--accent);
}

.location-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.8);
}

.location-card:hover .location-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.location-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(204, 154, 51, 0.5);
}

.location-content {
    padding: 40px;
}

.location-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 25px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.location-info-item {
    display: flex;
    align-items: start;
    gap: 15px;
}

.location-info-icon {
    width: 45px;
    height: 45px;
    background: rgba(204, 154, 51, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 1px solid rgba(204, 154, 51, 0.3);
}

.location-info-text {
    flex: 1;
}

.location-info-label {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(204, 154, 51, 0.5);
}

.location-info-value {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.location-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.location-btn {
    flex: 1;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.location-btn-primary {
    background: var(--accent);
    color: var(--dark);
    border: 2px solid var(--accent);
    box-shadow: 0 0 15px rgba(204, 154, 51, 0.4);
}

.location-btn-primary:hover {
    background: transparent;
    color: var(--accent);
}

.location-btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.location-btn-secondary:hover {
    background: var(--accent);
    color: var(--dark);
}

/* Map Section */
.map-section {
    padding: 0;
    margin: 0;
}

.map-container {
    width: 100%;
    height: 600px;
    background: var(--dark);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, rgba(204, 154, 51, 0.1) 100%);
}

.map-placeholder-content {
    text-align: center;
    padding: 40px;
}

.map-placeholder-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.6;
    color: var(--accent);
}

.map-placeholder-text {
    font-size: 18px;
    color: var(--text-light);
}

/* Social Section */
.social-section {
    padding: 120px 60px;
    background: var(--dark);
    text-align: center;
}

.social-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
}

.social-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-link {
    width: 70px;
    height: 70px;
    background: rgba(26, 15, 46, 0.6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid rgba(204, 154, 51, 0.3);
    color: var(--accent);
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 15px 40px rgba(204, 154, 51, 0.4);
    border-color: var(--accent);
    color: var(--dark);
}

/* FAQ Section */
.faq-section {
    padding: 120px 60px;
    background: var(--dark-secondary);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
}

.faq-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.faq-item {
    background: rgba(26, 15, 46, 0.6);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(204, 154, 51, 0.3);
}

.faq-question {
    padding: 30px 35px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
}

.faq-question-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--light);
}

.faq-icon {
    font-size: 24px;
    color: var(--accent);
    transition: transform 0.3s ease;
    text-shadow: 0 0 10px rgba(204, 154, 51, 0.5);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 35px 30px 35px;
}

.faq-answer-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Footer */
footer {
    background: var(--primary);
    padding: 80px 60px 40px;
    border-top: 1px solid rgba(204, 154, 51, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.footer-social .social-link:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(204, 154, 51, 0.4);
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: white;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}