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

        :root {
            --beige: #f5f1e8;
            --dark: #1A1A1A;
            --gold: #C9A65C;
            --light-gold: #D4B571;
            --white: #f5f1e8;
        }

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

        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            background: rgba(26, 26, 26, 0.3);
            backdrop-filter: blur(20px);
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            border-radius: 50px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 1200px;
            width: calc(100% - 3rem);
        }

        nav.scrolled {
            background: rgba(26, 26, 26, 0.5);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--white);
            text-decoration: none;
        }

        .logo span:first-child {
            font-weight: 600;
        }

        .logo span:last-child {
            color: var(--gold);
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--white);
            font-size: 0.9rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
            position: relative;
        }

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

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

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

        .btn-reserve {
            background: var(--gold);
            color: var(--dark);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .btn-reserve:hover {
            background: var(--light-gold);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(201, 166, 92, 0.4);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?q=80&w=2070') center/cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
            position: relative;
        }

        .hero-content {
            max-width: 900px;
            padding: 2rem;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-subtitle {
            font-size: 0.9rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            color: var(--light-gold);
            animation: fadeInUp 1s ease 0.2s both;
            text-align: center;
        }

        .hero h1 {
            font-size: 5rem;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease 0.4s both;
            min-height: 180px;
            text-align: center;
            width: 100%;
        }

        .hero-title-main {
            display: block;
            margin-bottom: 1rem;
            text-align: center;
        }

        .hero-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 5rem;
            font-weight: 600;
            color: var(--white);
            font-family: 'Outfit', sans-serif;
        }

        .hero-logo-first {
            font-weight: 600;
        }

        .hero-logo-second {
            color: var(--gold);
            text-transform: uppercase;
            font-size: 0.666666em;
            letter-spacing: 2px;
            font-weight: 400;
        }

        .hero-title-subtitle {
            display: flex;
            align-items: baseline;
            justify-content: center;
            flex-wrap: nowrap;
            gap: 0.5rem;
            width: 100%;
        }

        .hero-subtitle-text {
            color: var(--white);
            font-family: 'Cormorant Garamond', serif;
            font-size: 5rem;
            font-weight: 300;
            white-space: nowrap;
        }

        .hero-typing-container {
            display: inline-block;
            width: 600px;
            text-align: center;
            vertical-align: baseline;
            position: relative;
            white-space: nowrap;
        }

        .hero h1 em {
            font-style: italic;
            color: var(--light-gold);
        }

        .hero h1 .typed-word {
            color: var(--gold);
            font-style: italic;
            display: inline-block;
            font-family: 'Cormorant Garamond', serif;
            font-size: 5rem;
            font-weight: 300;
            min-height: 1.2em;
            text-align: center;
            white-space: nowrap;
        }

        .hero h1 .typing-cursor {
            color: var(--gold);
            font-weight: 400;
            animation: blink-cursor 0.8s infinite;
            margin-left: 3px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 5rem;
        }

        @keyframes blink-cursor {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0;
            }
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease 0.6s both;
            text-align: center;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            animation: fadeInUp 1s ease 0.8s both;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--dark);
        }

        .btn-primary:hover {
            background: var(--light-gold);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(201, 166, 92, 0.4);
        }

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

        .btn-secondary:hover {
            background: rgba(26, 26, 26, 0.8);
            border-color: var(--dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        .scroll-indicator span {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .scroll-indicator::after {
            content: '';
            width: 1px;
            height: 30px;
            background: var(--white);
        }

        /* Services Section */
        .services {
            padding: 8rem 3rem;
            background: #f5f1e8;
            position: relative;
            overflow: hidden;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(201, 166, 92, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .services > * {
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-subtitle {
            font-size: 0.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
        }

        .section-title em {
            font-style: italic;
        }

        .section-description {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .service-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 8rem;
            align-items: start;
            opacity: 0;
            transform: translateY(80px);
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
        }

        .service-item.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .service-item.animate-in .service-image {
            animation: slideInImage 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
        }

        .service-item.animate-in .service-content {
            animation: slideInContent 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
        }

        @keyframes slideInImage {
            from {
                opacity: 0;
                transform: translateX(-50px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        @keyframes slideInContent {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .service-item:nth-child(even).animate-in .service-image {
            animation: slideInImageReverse 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
        }

        .service-item:nth-child(even).animate-in .service-content {
            animation: slideInContentReverse 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
        }

        @keyframes slideInImageReverse {
            from {
                opacity: 0;
                transform: translateX(50px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        @keyframes slideInContentReverse {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .service-item:nth-child(even) {
            direction: rtl;
        }

        .service-item:nth-child(even) > * {
            direction: ltr;
        }

        .service-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 0;
        }

        .service-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(201, 166, 92, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.6s ease;
            z-index: 1;
            pointer-events: none;
        }

        .service-image:hover {
            transform: scale(1.03) translateY(-10px);
            box-shadow: 0 30px 80px rgba(201, 166, 92, 0.3);
        }

        .service-image:hover::before {
            opacity: 1;
        }

            .service-image img {
                width: 100%;
                height: 500px;
                object-fit: cover;
            }

            @media (max-width: 768px) {
                .service-image img {
                    height: 350px;
                }
            }

            @media (max-width: 480px) {
                .service-image img {
                    height: 250px;
                }
            }

        .service-icon {
            position: absolute;
            top: 30px;
            left: 30px;
            background: var(--white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 2;
            opacity: 0;
            transform: scale(0) rotate(-180deg);
            transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 10px 30px rgba(201, 166, 92, 0.3);
        }

        .service-item.animate-in .service-icon {
            opacity: 1;
            transform: scale(1) rotate(0deg);
            transition-delay: 0.5s;
        }

        .service-icon i {
            color: var(--gold);
            transition: transform 0.3s ease;
        }

        .service-image:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 40px rgba(201, 166, 92, 0.5);
        }

        .service-content {
            padding: 2rem;
            opacity: 0;
        }

        .service-item.animate-in .service-number {
            animation: numberReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
        }

        .service-item.animate-in h3 {
            animation: titleReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
        }

        .service-item.animate-in .service-tagline {
            animation: taglineReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
        }

        .service-item.animate-in .service-content > p {
            animation: textReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
        }

        .service-item.animate-in .service-features {
            animation: featuresReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
        }

        @keyframes numberReveal {
            from {
                opacity: 0;
                transform: scale(0.5) rotate(-90deg);
            }
            to {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        @keyframes titleReveal {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes taglineReveal {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes textReveal {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes featuresReveal {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .service-item.animate-in .feature-item {
            opacity: 0;
            transform: translateX(-20px);
            animation: featureItemReveal 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
        }

        .service-item.animate-in .feature-item:nth-child(1) { animation-delay: 0.9s; }
        .service-item.animate-in .feature-item:nth-child(2) { animation-delay: 1s; }
        .service-item.animate-in .feature-item:nth-child(3) { animation-delay: 1.1s; }
        .service-item.animate-in .feature-item:nth-child(4) { animation-delay: 1.2s; }
        .service-item.animate-in .feature-item:nth-child(5) { animation-delay: 1.3s; }
        .service-item.animate-in .feature-item:nth-child(6) { animation-delay: 1.4s; }

        @keyframes featureItemReveal {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .service-number {
            font-size: 5rem;
            font-family: 'Cormorant Garamond', serif;
            color: #D4AF37;
            font-weight: 600;
            line-height: 1;
            margin-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
            opacity: 0.9;
        }

        .service-content h3 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .service-tagline {
            color: var(--gold);
            font-size: 1rem;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .service-content p {
            font-size: 1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 2rem;
        }

        .service-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.95rem;
        }

        .feature-item::before {
            content: '✦';
            color: var(--gold);
            font-size: 0.8rem;
        }

        /* About Section */
        .about {
            padding: 8rem 3rem;
            background: #f5f1e8;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
        }

        .about-text h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
        }

        .about-text h2 em {
            font-style: italic;
        }

        .about-text p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 2rem;
        }

        .value-item {
            margin-bottom: 2rem;
            padding-left: 1rem;
            border-left: 2px solid var(--gold);
        }

        .value-item h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .value-item p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .stat-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .stat-icon i {
            color: var(--gold);
        }

        .stat-number {
            font-size: 3rem;
            font-family: 'Cormorant Garamond', serif;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
        }

        .cta-button {
            display: inline-block;
            margin-top: 2rem;
            background: var(--gold);
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: var(--dark);
            transform: translateY(-2px);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 8rem 3rem;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?q=80&w=2070') center/cover;
            background-attachment: fixed;
            color: var(--white);
            position: relative;
        }

        .testimonials .section-subtitle {
            color: var(--light-gold);
        }

        .testimonials .section-title {
            color: var(--white);
        }

        .testimonials .section-title em {
            color: var(--light-gold);
        }

        .stats-bar {
            display: flex;
            justify-content: space-around;
            max-width: 1000px;
            margin: 0 auto 5rem;
            padding: 3rem 0;
        }

        .stat-item {
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3.5rem;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #999;
        }

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

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2.5rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--gold);
            opacity: 0.3;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: #ddd;
        }

        .stars {
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }

        .testimonial-author {
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .testimonial-role {
            font-size: 0.85rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .testimonials-cta {
            text-align: center;
            margin-top: 4rem;
        }

        .testimonials-cta p {
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        /* Contact Section */
        .contact {
            padding: 8rem 3rem;
            background: #f5f1e8;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }

        .contact-info h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
        }

        .contact-info h2 em {
            font-style: italic;
        }

        .contact-info > p {
            font-size: 1.05rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-icon i {
            color: var(--gold);
        }

        .contact-details h4 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .contact-details p {
            font-size: 1.1rem;
            color: var(--dark);
        }

        .social-links {
            margin-top: 3rem;
        }

        .social-links h4 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .social-links-list {
            display: flex;
            gap: 1rem;
        }

        .social-links-list a {
            color: #666;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .social-links-list a:hover {
            color: var(--gold);
        }

        .contact-form-container {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .contact-form-container h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            color: #666;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Outfit', sans-serif;
            transition: border-color 0.3s ease;
            background: var(--beige);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
        }

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

        .btn-submit {
            width: 100%;
            background: var(--dark);
            color: var(--white);
            padding: 1.2rem;
            border: none;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .btn-submit:hover {
            background: var(--gold);
            transform: translateY(-2px);
        }

        /* Avantages Section - Motion Design Premium */
        .avantages {
            padding: 8rem 3rem;
            background: #f5f1e8;
            position: relative;
            overflow: hidden;
        }

        .avantages::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 166, 92, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        .avantages::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 15s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, -50px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 20px) rotate(240deg);
            }
        }

        .avantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .avantage-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 241, 232, 0.9));
            backdrop-filter: blur(15px);
            padding: 3rem 2rem;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            text-align: center;
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            border: 3px solid transparent;
            position: relative;
            overflow: visible;
            box-shadow: 0 15px 40px rgba(201, 166, 92, 0.15);
            animation: morph 8s ease-in-out infinite;
        }

        /* Animation de morphing organique */
        @keyframes morph {
            0%, 100% {
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            }
            25% {
                border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
            }
            50% {
                border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
            }
            75% {
                border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
            }
        }

        /* Gradient liquide en arrière-plan */
        .avantage-card::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(
                60deg,
                var(--gold),
                var(--light-gold),
                transparent,
                var(--gold)
            );
            border-radius: inherit;
            opacity: 0;
            transition: opacity 0.6s ease;
            z-index: -1;
            animation: rotate-gradient 4s linear infinite;
            background-size: 300% 300%;
        }

        @keyframes rotate-gradient {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        .avantage-card:hover::before {
            opacity: 1;
        }

        /* Effet d'ombre liquide */
        .avantage-card::after {
            content: '';
            position: absolute;
            inset: 10px;
            background: radial-gradient(circle at 50% 50%, rgba(201, 166, 92, 0.1), transparent 70%);
            border-radius: inherit;
            opacity: 0;
            transition: opacity 0.6s ease;
            filter: blur(20px);
            z-index: -2;
        }

        .avantage-card:hover {
            transform: translateY(-20px) scale(1.05);
            box-shadow:
                0 30px 60px rgba(201, 166, 92, 0.25),
                0 0 0 1px rgba(201, 166, 92, 0.2);
            border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
            animation-play-state: paused;
        }

        .avantage-card:hover::after {
            opacity: 1;
        }

        /* Animation de l'icône - Style liquide */
        .avantage-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--gold), var(--light-gold));
            border-radius: 45% 55% 52% 48% / 48% 50% 50% 52%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2.5rem;
            color: var(--white);
            position: relative;
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow:
                0 10px 30px rgba(201, 166, 92, 0.3),
                inset 0 -5px 15px rgba(0, 0, 0, 0.1);
            animation: icon-morph 6s ease-in-out infinite;
        }

        @keyframes icon-morph {
            0%, 100% {
                border-radius: 45% 55% 52% 48% / 48% 50% 50% 52%;
            }
            33% {
                border-radius: 73% 27% 56% 44% / 49% 44% 56% 51%;
            }
            66% {
                border-radius: 36% 64% 27% 73% / 55% 58% 42% 45%;
            }
        }

        /* Vagues liquides autour de l'icône */
        .avantage-icon::before,
        .avantage-icon::after {
            content: '';
            position: absolute;
            inset: -15px;
            background: linear-gradient(135deg, var(--gold), transparent);
            border-radius: inherit;
            opacity: 0;
            transition: all 0.8s ease;
            filter: blur(10px);
        }

        .avantage-icon::after {
            inset: -25px;
            background: linear-gradient(225deg, var(--light-gold), transparent);
        }

        .avantage-card:hover .avantage-icon {
            transform: scale(1.2) rotate(15deg);
            box-shadow:
                0 20px 50px rgba(201, 166, 92, 0.5),
                0 0 40px rgba(212, 175, 55, 0.4),
                inset 0 -8px 20px rgba(0, 0, 0, 0.15);
            border-radius: 50%;
            animation-play-state: paused;
        }

        .avantage-card:hover .avantage-icon::before {
            opacity: 0.4;
            animation: liquid-wave 2s ease-in-out infinite;
        }

        .avantage-card:hover .avantage-icon::after {
            opacity: 0.3;
            animation: liquid-wave 2s ease-in-out 0.5s infinite reverse;
        }

        @keyframes liquid-wave {
            0%, 100% {
                transform: scale(1) rotate(0deg);
                border-radius: 45% 55% 52% 48% / 48% 50% 50% 52%;
            }
            50% {
                transform: scale(1.3) rotate(180deg);
                border-radius: 73% 27% 56% 44% / 49% 44% 56% 51%;
            }
        }

        /* Animation de l'icône au sein de la carte */
        .avantage-icon i {
            transition: all 0.4s ease;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .avantage-card:hover .avantage-icon i {
            transform: scale(1.1);
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }

        .avantage-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 500;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
        }

        .avantage-card h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--light-gold), var(--gold));
            border-radius: 50% 50% 50% 50% / 80% 80% 20% 20%;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            animation: wave-underline 3s ease-in-out infinite;
        }

        @keyframes wave-underline {
            0%, 100% {
                border-radius: 50% 50% 50% 50% / 80% 80% 20% 20%;
            }
            50% {
                border-radius: 50% 50% 50% 50% / 20% 20% 80% 80%;
            }
        }

        .avantage-card:hover h3 {
            color: var(--gold);
            transform: translateY(-5px);
            letter-spacing: 1px;
        }

        .avantage-card:hover h3::after {
            transform: translateX(-50%) scaleX(1);
            height: 5px;
        }

        .avantage-card p {
            font-size: 1rem;
            line-height: 1.8;
            color: #666;
            transition: color 0.3s ease;
        }

        .avantage-card:hover p {
            color: #555;
        }

        /* Animation d'apparition en cascade */
        .avantage-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .avantage-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .avantage-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .avantage-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .avantage-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .avantage-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        /* Particules décoratives */
        @keyframes particle-float {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-20px) translateX(10px);
                opacity: 0.6;
            }
        }

        /* Process Section */
        .process {
            padding: 8rem 3rem;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?q=80&w=2070') center/cover;
            background-attachment: fixed;
            color: var(--white);
            position: relative;
        }

        .process .section-subtitle {
            color: var(--light-gold);
        }

        .process .section-title {
            color: var(--white);
        }

        .process .section-title em {
            color: var(--light-gold);
        }

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

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(to right, var(--gold), var(--light-gold));
            z-index: 0;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gold), var(--light-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            color: var(--white);
            margin: 0 auto 2rem;
            box-shadow: 0 10px 30px rgba(201, 166, 92, 0.3);
            transition: all 0.4s ease;
        }

        .process-step:hover .step-number {
            transform: scale(1.15) rotate(10deg);
        }

        .step-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .step-content p {
            font-size: 1rem;
            line-height: 1.7;
            color: #ccc;
        }

        /* FAQ Section */
        .faq {
            padding: 8rem 3rem;
            background: #f5f1e8;
        }

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

        .faq-item {
            background: var(--beige);
            border-radius: 15px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .faq-question {
            padding: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(201, 166, 92, 0.1);
        }

        .faq-question h3 {
            font-size: 1.2rem;
            color: var(--dark);
            margin: 0;
            font-weight: 500;
        }

        .faq-question i {
            color: var(--gold);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

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

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 2rem 2rem;
        }

        .faq-answer p {
            font-size: 1rem;
            line-height: 1.8;
            color: #666;
            margin: 0;
        }

        /* Hero About Page */
        .hero-about {
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=2070') center/cover;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8rem 3rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero-about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(201, 166, 92, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-about .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1000px;
            animation: fadeInUp 1s ease;
        }

        .hero-about .hero-subtitle {
            color: var(--light-gold);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-about h1 {
            font-size: 5rem;
            color: var(--white);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-about .hero-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 5rem;
            font-weight: 600;
            color: var(--white);
            font-family: 'Outfit', sans-serif;
        }

        .hero-about .hero-logo-first {
            font-weight: 600;
        }

        .hero-about .hero-logo-second {
            color: var(--gold);
            text-transform: uppercase;
            font-size: 0.666666em;
            letter-spacing: 2px;
            font-weight: 400;
        }

        .hero-about .hero-description {
            color: #ddd;
            font-size: 1.3rem;
            line-height: 1.8;
            animation: fadeInUp 1s ease 0.6s both;
        }

        /* Team Section */
        .team {
            padding: 8rem 3rem;
            background: #f5f1e8;
        }

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

        .team-card {
            background: var(--beige);
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(201, 166, 92, 0.2);
        }

        .team-image {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--gold), var(--light-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 3rem;
            color: var(--white);
            transition: all 0.4s ease;
        }

        .team-card:hover .team-image {
            transform: scale(1.1) rotate(10deg);
        }

        .team-card h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .team-role {
            color: var(--gold);
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .team-bio {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #666;
        }

        /* Values Section */
        .values {
            padding: 8rem 3rem;
            background: #f5f1e8;
        }

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

        .value-card {
            background: var(--white);
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

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

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

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(201, 166, 92, 0.2);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gold), var(--light-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2rem;
            color: var(--white);
            transition: all 0.4s ease;
        }

        .value-card:hover .value-icon {
            transform: scale(1.1) rotate(360deg);
        }

        .value-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .value-card p {
            font-size: 1rem;
            line-height: 1.8;
            color: #666;
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 3rem;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1564501049412-61c2a3083791?q=80&w=2089') center/cover;
            background-attachment: fixed;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(201, 166, 92, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

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

        .cta-section h2 {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 1.5rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
        }

        .cta-section h2 em {
            font-style: italic;
            color: var(--gold);
        }

        .cta-section p {
            font-size: 1.3rem;
            color: #ddd;
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            align-items: center;
        }

        .cta-section .btn {
            padding: 1.2rem 3rem;
            border-radius: 30px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .cta-section .btn-primary {
            background: var(--gold);
            color: var(--dark);
        }

        .cta-section .btn-primary:hover {
            background: var(--light-gold);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(201, 166, 92, 0.4);
        }

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

        .cta-section .btn-secondary:hover {
            background: var(--white);
            color: var(--dark);
            transform: translateY(-2px);
        }

        /* Active nav link */
        .nav-links a.active {
            color: var(--gold);
        }

        /* Footer */
        footer {
            background: var(--dark);
            padding: 3rem 3rem 2rem;
            color: var(--white);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
        }

        .footer-section p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #ccc;
            margin-bottom: 1.5rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--gold);
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--gold);
            transform: translateY(-3px);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: #999;
        }

        .footer-bottom a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--gold);
        }

        /* Mobile Menu Button - Simple et Épuré */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1001;
            padding: 8px;
            width: 40px;
            height: 40px;
        }

        .mobile-menu-btn span {
            width: 26px;
            height: 2px;
            background: var(--white);
            border-radius: 1px;
            transition: all 0.3s ease;
            display: block;
        }

        .mobile-menu-btn:hover span {
            background: var(--gold);
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
            background: var(--gold);
        }

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

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

        /* Responsive Design */
        @media (max-width: 1024px) {
            .section-title {
                font-size: 3rem;
            }

            .service-item {
                gap: 3rem;
            }

            .about {
                padding: 6rem 2rem;
            }

            .about-content {
                gap: 3rem;
            }

            .about-text h2 {
                font-size: 2.8rem;
            }

            .hero-about {
                min-height: 80vh;
                padding: 7rem 2rem 4rem;
            }

            .hero-about h1 {
                font-size: 4rem;
            }

            .hero-about .hero-logo {
                font-size: 4rem;
            }

            .cta-section {
                padding: 6rem 2rem;
            }

            .cta-section h2 {
                font-size: 3rem;
            }

            .about {
                padding: 6rem 2rem;
            }

            .stats-bar {
                flex-wrap: wrap;
                gap: 2rem;
            }

            .hero-about {
                min-height: 80vh;
                padding: 7rem 2rem 4rem;
            }

            .hero-about h1 {
                font-size: 4rem;
            }

            .hero-about .hero-logo {
                font-size: 4rem;
            }

            .cta-section {
                padding: 6rem 2rem;
            }

            .cta-section h2 {
                font-size: 3rem;
            }

            .hero-logo {
                font-size: 4rem;
            }

            .hero-subtitle-text {
                font-size: 4rem;
            }

            .hero h1 .typed-word {
                font-size: 4rem;
            }

            .hero h1 .typing-cursor {
                font-size: 4rem;
            }

            .hero-typing-container {
                width: 500px;
            }

            .services {
                padding: 6rem 2rem;
            }

            .testimonials {
                padding: 6rem 2rem;
            }

            .process {
                padding: 6rem 2rem;
            }

            .contact {
                padding: 6rem 2rem;
            }

            .faq {
                padding: 6rem 2rem;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem 1.5rem;
                top: 1rem;
                left: 50%;
                transform: translateX(-50%);
                border-radius: 30px;
                width: calc(100% - 2rem);
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                max-width: 350px;
                height: 100vh;
                background: rgba(26, 26, 26, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                gap: 0;
                transition: right 0.4s ease;
                padding: 5rem 2rem 2rem;
                z-index: 1000;
                overflow-y: auto;
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
            }

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

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                padding: 1rem 0;
                font-size: 1rem;
                font-weight: 400;
                color: var(--white);
                text-decoration: none;
                text-transform: uppercase;
                letter-spacing: 1px;
                transition: color 0.3s ease;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

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

            /* Bouton Réserver dans le menu mobile - Simple */
            .nav-links .btn-reserve-mobile {
                display: block;
                margin-top: 2rem;
                padding: 1rem 2rem;
                background: var(--gold);
                color: var(--dark);
                text-align: center;
                border-radius: 4px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1px;
                font-size: 0.85rem;
                transition: background 0.3s ease;
                width: 100%;
            }

            .nav-links .btn-reserve-mobile:hover {
                background: var(--light-gold);
            }

            .nav-links li:last-child {
                border-bottom: none;
            }


            .nav-links a::before {
                content: '';
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                width: 4px;
                height: 0;
                background: var(--gold);
                transition: height 0.3s ease;
                border-radius: 0 2px 2px 0;
            }

            .nav-links a:hover {
                color: var(--gold);
                padding-left: 1.5rem;
            }

            .nav-links a:hover::before {
                height: 60%;
            }

            .nav-links a::after {
                display: none;
            }

            /* Overlay pour fermer le menu - Simple */
            .nav-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.5);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
            }

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

            .mobile-menu-btn {
                display: flex;
            }


            .btn-reserve {
                display: none;
            }

            .avantages-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }


            .process-steps {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .process-steps::before {
                display: none;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero {
                padding: 0 1.5rem;
            }

            .hero h1 {
                font-size: 2.8rem;
                min-height: 140px;
            }

            .hero-logo {
                font-size: 2.8rem;
                flex-direction: column;
                gap: 0.3rem;
            }

            .hero-logo-second {
                font-size: 0.666666em;
            }

            .hero-title-subtitle {
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
            }

            .hero-subtitle-text {
                font-size: 2.8rem;
            }

            .hero-typing-container {
                width: 100%;
                min-width: auto;
                text-align: center;
            }

            .hero h1 .typed-word {
                font-size: 2.8rem;
            }

            .hero h1 .typing-cursor {
                font-size: 2.8rem;
            }

            .hero-subtitle {
                font-size: 0.8rem;
                letter-spacing: 2px;
            }

            .hero-description {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .services {
                padding: 4rem 1.5rem;
            }

            .testimonials {
                padding: 4rem 1.5rem;
            }

            .process {
                padding: 4rem 1.5rem;
            }

            .contact {
                padding: 4rem 1.5rem;
            }

            .faq {
                padding: 4rem 1.5rem;
            }

            .avantages {
                padding: 4rem 1.5rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .section-description {
                font-size: 1rem;
            }

            .service-item {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-bottom: 4rem;
            }

            .service-item:nth-child(even) {
                direction: ltr;
            }

            .service-item.animate-in .service-image {
                animation: slideInImageMobile 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
            }

            .service-item.animate-in .service-content {
                animation: slideInContentMobile 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
            }

            @keyframes slideInImageMobile {
                from {
                    opacity: 0;
                    transform: translateY(30px) scale(0.95);
                }
                to {
                    opacity: 1;
                    transform: translateY(0) scale(1);
                }
            }

            @keyframes slideInContentMobile {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .service-number {
                font-size: 3.5rem;
            }

            .service-content h3 {
                font-size: 2rem;
            }

            .service-features {
                grid-template-columns: 1fr;
            }

            .about {
                padding: 4rem 1.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-text h2 {
                font-size: 2.5rem;
            }

            .about-text p {
                font-size: 1rem;
            }

            .value-item {
                margin-bottom: 1.5rem;
            }

            .value-item h4 {
                font-size: 1.2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }

            .stat-card {
                padding: 2rem 1.5rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .stat-icon {
                font-size: 2rem;
            }

            .hero-about {
                background-attachment: scroll;
            }

            .cta-section {
                background-attachment: scroll;
            }

            .stats-bar {
                flex-direction: column;
                padding: 2rem 0;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .hero-title-main {
                margin-bottom: 0.5rem;
            }

            .hero-content {
                max-width: 100%;
                padding: 1rem;
            }

            .hero-about {
                min-height: 70vh;
                padding: 6rem 1.5rem 3rem;
            }

            .hero-about h1 {
                font-size: 3rem;
            }

            .hero-about .hero-logo {
                font-size: 3rem;
            }

            .hero-about .hero-description {
                font-size: 1.1rem;
            }

            .cta-section {
                padding: 4rem 1.5rem;
            }

            .cta-section h2 {
                font-size: 2.5rem;
            }

            .cta-section p {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .cta-section .btn {
                width: 100%;
                max-width: 300px;
            }

            .cta-section .btn-secondary {
                padding: 0.9rem 2rem;
                font-size: 0.85rem;
                max-width: 250px;
            }

            .service-features {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }

            .testimonial-card {
                padding: 2rem 1.5rem;
            }

            .avantage-card {
                padding: 2rem 1.5rem;
            }

            .process-step {
                margin-bottom: 2rem;
            }

            .step-number {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }

            .step-content h3 {
                font-size: 1.2rem;
            }

            .step-content p {
                font-size: 0.9rem;
            }

            .faq-question h3 {
                font-size: 1rem;
            }

            .faq-answer p {
                font-size: 0.9rem;
            }

            .contact-info h2 {
                font-size: 2rem;
            }

            .contact-details p {
                font-size: 1rem;
            }

            .contact-form-container h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 1rem;
                top: 0.5rem;
                left: 50%;
                transform: translateX(-50%);
                border-radius: 25px;
                width: calc(100% - 1rem);
            }

            .hero {
                padding: 0 1rem;
            }

            .hero h1 {
                font-size: 2.2rem;
                min-height: 120px;
            }

            .hero-logo {
                font-size: 2.2rem;
            }

            .hero-subtitle-text {
                font-size: 2.2rem;
            }

            .hero h1 .typed-word {
                font-size: 2.2rem;
            }

            .hero h1 .typing-cursor {
                font-size: 2.2rem;
            }

            .hero-typing-container {
                width: 100%;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-subtitle {
                font-size: 0.75rem;
            }

            .services {
                padding: 3rem 1rem;
            }

            .testimonials {
                padding: 3rem 1rem;
            }

            .process {
                padding: 3rem 1rem;
            }

            .contact {
                padding: 3rem 1rem;
            }

            .faq {
                padding: 3rem 1rem;
            }

            .avantages {
                padding: 3rem 1rem;
            }

            .hero-about {
                min-height: 70vh;
                padding: 6rem 1.5rem 3rem;
            }

            .hero-about h1 {
                font-size: 3rem;
            }

            .hero-about .hero-logo {
                font-size: 3rem;
            }

            .hero-about .hero-description {
                font-size: 1.1rem;
            }

            .cta-section {
                padding: 4rem 1.5rem;
            }

            .cta-section h2 {
                font-size: 2.5rem;
            }

            .cta-section p {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .cta-section .btn {
                width: 100%;
                max-width: 300px;
            }

            .cta-section .btn-secondary {
                padding: 0.8rem 1.8rem;
                font-size: 0.8rem;
                max-width: 220px;
            }

            .service-number {
                font-size: 3rem;
            }

            .service-content {
                padding: 1.5rem;
            }

            .service-content h3 {
                font-size: 1.5rem;
            }

            .service-image img {
                height: 250px;
            }

            .service-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                top: 20px;
                left: 20px;
            }

            .stat-item h3 {
                font-size: 2.5rem;
            }

            .testimonial-text {
                font-size: 0.95rem;
            }

            .contact-form-container {
                padding: 2rem 1.5rem;
            }

            .hero-content {
                padding: 0.5rem;
            }

            .hero-subtitle {
                font-size: 0.7rem;
                letter-spacing: 1px;
                margin-bottom: 1rem;
            }

            .hero-description {
                font-size: 0.9rem;
                padding: 0;
            }

            .section-header {
                margin-bottom: 2rem;
            }

            .section-description {
                font-size: 0.9rem;
            }

            .about {
                padding: 3rem 1rem;
            }

            .about-content {
                gap: 2rem;
            }

            .about-text h2 {
                font-size: 2rem;
            }

            .about-text p {
                font-size: 0.95rem;
            }

            .value-item {
                margin-bottom: 1.5rem;
                padding-left: 0.8rem;
            }

            .value-item h4 {
                font-size: 1.1rem;
            }

            .value-item p {
                font-size: 0.9rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .stat-card {
                padding: 1.5rem 1rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-icon {
                font-size: 1.8rem;
            }

            .stat-label {
                font-size: 0.85rem;
            }

            .hero-about {
                min-height: 60vh;
                padding: 5rem 1rem 2rem;
                background-attachment: scroll;
            }

            .hero-about h1 {
                font-size: 2.5rem;
            }

            .hero-about .hero-logo {
                font-size: 2.5rem;
                flex-direction: column;
                gap: 0.3rem;
            }

            .hero-about .hero-subtitle {
                font-size: 0.75rem;
                letter-spacing: 2px;
            }

            .hero-about .hero-description {
                font-size: 1rem;
            }

            .cta-section {
                padding: 3rem 1rem;
                background-attachment: scroll;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            .cta-section p {
                font-size: 1rem;
            }
        }