﻿        /* Base Reset & Variables */
        :root {
            --color-cream: #F5F5F0;
            --color-black: #0A0A0A;
            --color-navy: #050B14;
            --color-accent: #D4E157;
            /* Lemon Green */
            --color-accent-alt: #E6EE9C;
            --color-gray: #888888;
            --color-off-white: #E5E5E5;
            --font-sans: 'Inter', sans-serif;
            --font-serif: 'Playfair Display', serif;
        }

        html,
        body {
            overflow-x: hidden;
            /* Prevent horizontal scroll causing layout break */
            width: 100%;
            position: relative;
        }

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

        html {
            scroll-behavior: smooth;
        }

        html.lenis,
        html.lenis body {
            height: auto;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }

        .lenis.lenis-smooth [data-lenis-prevent] {
            overscroll-behavior: contain;
        }

        .lenis.lenis-stopped {
            overflow: hidden;
        }

        .lenis.lenis-scrolling iframe {
            pointer-events: none;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--color-black);
            color: var(--color-off-white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Selection */
        ::selection {
            background-color: var(--color-accent);
            color: var(--color-black);
        }

        /* Floating Navigation */
        .nav-floating {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 50px;
            padding: 12px 32px;
            display: flex;
            align-items: center;
            gap: 32px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-floating.scrolled {
            background: rgba(10, 10, 10, 0.9);
            border-color: rgba(255, 255, 255, 0.05);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .nav-logo img {
            height: 36px;
            width: auto;
            border-radius: 6px;
        }

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

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

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

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

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

        .nav-contact {
            background: var(--color-off-white);
            color: var(--color-black);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .nav-contact:hover {
            background: var(--color-accent);
            transform: scale(1.05);
        }

        /* Mobile Nav */
        .nav-mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .nav-mobile-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--color-off-white);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {

            .nav-links,
            .nav-contact {
                display: none;
            }

            .nav-mobile-toggle {
                display: block;
            }

            .nav-floating {
                padding: 12px 20px;
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 120px 20px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.6;
            animation: float 8s ease-in-out infinite;
        }

        .hero-orb-1 {
            width: 500px;
            height: 500px;
            background: linear-gradient(135deg, var(--color-navy) 0%, #1a2a5c 100%);
            top: 10%;
            left: 20%;
            animation-delay: 0s;
        }

        .hero-orb-2 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, var(--color-accent) 0%, #a8c400 100%);
            bottom: 20%;
            right: 15%;
            animation-delay: -4s;
        }

        .hero-orb-3 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-accent) 100%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -2s;
        }

        @keyframes float {

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

            50% {
                transform: translateY(-30px) scale(1.05);
            }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 1200px;
        }

        .hero-tagline {
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--color-accent);
            margin-bottom: 24px;
            opacity: 0;
            transform: translateY(20px);
        }

        .hero-title {
            font-family: var(--font-serif);
            font-size: clamp(48px, 12vw, 140px);
            font-weight: 400;
            line-height: 0.95;
            letter-spacing: -0.03em;
            margin-bottom: 32px;
        }

        .hero-title span {
            display: block;
            opacity: 0;
            transform: translateY(60px);
        }

        .hero-title .italic {
            font-style: italic;
            color: var(--color-accent);
        }

        .hero-subtitle {
            font-size: 20px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto 48px;
            opacity: 0;
            transform: translateY(20px);
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(20px);
        }

        .btn-primary {
            background: var(--color-off-white);
            color: var(--color-black);
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: var(--color-accent);
            transform: scale(1.05);
        }

        .btn-secondary {
            background: transparent;
            color: var(--color-off-white);
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 400;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-secondary:hover {
            border-color: var(--color-off-white);
            background: rgba(255, 255, 255, 0.1);
        }

        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            text-align: center;
            opacity: 0;
        }

        @media (max-width: 768px) {
            .hero-scroll {
                display: none;
            }
        }

        .hero-scroll span {
            display: block;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 12px;
        }

        .hero-scroll-line {
            width: 1px;
            height: 60px;
            background: linear-gradient(to bottom, var(--color-accent), transparent);
            margin: 0 auto;
            animation: scrollPulse 2s ease-in-out infinite;
        }

        @keyframes scrollPulse {

            0%,
            100% {
                opacity: 1;
                transform: scaleY(1);
            }

            50% {
                opacity: 0.5;
                transform: scaleY(0.8);
            }
        }

        /* Section Styles */
        section {
            padding: 120px 20px;
            position: relative;
        }

        .section-light {
            background: var(--color-off-white);
            color: var(--color-black);
        }

        .section-cream {
            background: var(--color-cream);
            color: var(--color-black);
        }

        .section-navy {
            background: var(--color-navy);
            color: var(--color-off-white);
        }

        .section-dark {
            background: var(--color-black);
            color: var(--color-off-white);
        }

        .section-accent {
            background: var(--color-accent);
            color: var(--color-black);
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
            /* Increased base padding */
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 24px;
                /* Ensure sufficient breathing room on mobile */
            }

            .section-header {
                margin-bottom: 40px;
            }
        }

        .section-header {
            margin-bottom: 80px;
        }

        .section-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--color-gray);
            margin-bottom: 16px;
        }

        .section-light .section-label,
        .section-cream .section-label {
            color: var(--color-dark-gray);
            opacity: 0.6;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: clamp(36px, 6vw, 72px);
            font-weight: 400;
            line-height: 1.1;
            letter-spacing: -0.02em;
            hyphens: auto;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .section-light .section-title,
        .section-cream .section-title {
            color: var(--color-black);
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        @media (max-width: 1024px) {
            .about-grid {
                display: flex;
                flex-direction: column;
                width: 100%;
                margin: 0;
                padding: 0;
                gap: 48px;
            }

            .about-content {
                width: 100%;
                padding: 0;
            }

            .about-image {
                height: 500px;
                width: 100%;
                margin: 0;
            }

            .about-stats {
                width: 100%;
                padding: 24px 0 0 0;
                margin-top: 24px;
                border-top: 1px solid rgba(0, 0, 0, 0.1);
                display: grid;
                grid-template-columns: 1fr;
                /* Stack vertically on mobile */
                gap: 32px;
                /* Add breathing room */
                justify-items: center;
            }

            .stat-item {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }

        .about-image {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            aspect-ratio: 4/5;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        }

        .about-image-overlay span {
            font-size: 14px;
            color: var(--color-accent);
            font-weight: 500;
        }

        .about-content h2 {
            font-family: var(--font-serif);
            font-size: clamp(32px, 4vw, 56px);
            font-weight: 400;
            line-height: 1.15;
            margin-bottom: 32px;
        }

        .about-content p {
            font-size: 18px;
            line-height: 1.8;
            color: rgba(0, 0, 0, 0.7);
            margin-bottom: 24px;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 48px;
            padding-top: 48px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

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

        .stat-number {
            font-family: var(--font-serif);
            font-size: 48px;
            font-weight: 400;
            color: var(--color-black);
            line-height: 1;
            font-family: var(--font-serif);
            /* Ensure font consistency */
            font-variant-numeric: tabular-nums;
            font-feature-settings: "tnum";
            min-width: 3.5ch;
            /* Slightly wider to prevent wobble */
            display: inline-block;
            text-align: center;
        }

        .stat-label {
            font-size: 14px;
            color: var(--color-gray);
            margin-top: 8px;
        }

        /* Services Section */
        .services-list {
            display: flex;
            flex-direction: column;
        }

        .service-item {
            display: grid;
            grid-template-columns: 80px 1fr auto;
            gap: 40px;
            align-items: center;
            padding: 48px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .service-item:hover {
            padding-left: 20px;
        }

        .service-number {
            font-family: var(--font-serif);
            font-size: 24px;
            color: var(--color-accent);
        }

        .service-content h3 {
            font-family: var(--font-serif);
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 400;
            margin-bottom: 12px;
            transition: color 0.3s ease;
            hyphens: auto;
            word-wrap: break-word;
        }

        .service-item:hover .service-content h3 {
            color: var(--color-accent);
        }

        .service-content p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
            max-width: 600px;
        }

        .service-arrow {
            font-size: 32px;
            color: var(--color-accent);
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.4s ease;
        }

        .service-item:hover .service-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        @media (max-width: 768px) {
            .service-item {
                grid-template-columns: 60px 1fr;
            }

            .service-arrow {
                display: none;
            }
        }

        /* Work/Featured Section */
        .work-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        @media (max-width: 768px) {
            .work-grid {
                grid-template-columns: 1fr;
            }
        }

        .work-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .work-card:hover {
            transform: scale(0.98);
        }

        .work-card-bg {
            position: absolute;
            inset: 0;
            transition: transform 0.6s ease;
        }

        .work-card:hover .work-card-bg {
            transform: scale(1.1);
        }

        .work-card-1 .work-card-bg {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        }

        .work-card-2 .work-card-bg {
            background: var(--color-accent);
        }

        .work-card-3 .work-card-bg {
            background: linear-gradient(135deg, #2d1b4e 0%, #1a0a2e 100%);
        }

        .work-card-4 .work-card-bg {
            background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
        }

        .work-card-content {
            position: absolute;
            inset: 0;
            padding: 40px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            /* Ensure left alignment for tags */
            justify-content: flex-end !important;
            z-index: 1;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
        }

        /* Ensure tags are always at bottom - GLOBAL rule */
        .work-card-content {
            justify-content: flex-end !important;
        }

        .work-card-2 .work-card-content {
            color: var(--color-black);
            background: linear-gradient(to top, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
        }

        .work-card-tags {
            display: flex;
            gap: 8px;
            gap: 8px;
            margin-bottom: 16px;
            margin-top: auto;
            /* Push to bottom of available space */
            flex-wrap: wrap;
            position: relative;
            transform: none;
        }

        .work-tag {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(4px);
            border-radius: 50px;
            color: #fff;
            position: static;
            transform: none;
        }

        .work-card-2 .work-tag {
            background: rgba(0, 0, 0, 0.15);
            color: var(--color-black);
        }

        @media (max-width: 768px) {
            .work-tag {
                font-size: 10px;
                /* Smaller tags on mobile */
                padding: 4px 10px;
                letter-spacing: 0.05em;
            }

            .work-card h3 {
                font-size: 24px !important;
                /* Force smaller title on mobile */
            }

            .work-card-content {
                padding: 24px;
                /* Slightly less padding to gain space */
            }
        }

        .work-card h3 {
            font-family: var(--font-serif);
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 400;
            margin-bottom: 8px;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .work-card-2 h3 {
            color: var(--color-black);
            text-shadow: none;
        }

        .work-card p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
        }

        .work-card-2 p {
            color: rgba(0, 0, 0, 0.7);
        }

        /* Experience Section */
        .experience-section {
            background: var(--color-navy);
        }

        .experience-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 48px;
            justify-content: center;
            /* Center tabs on mobile */
        }

        @media (max-width: 768px) {
            .experience-tabs {
                justify-content: flex-start;
                /* Left align on very small screens if preferred, or keep center */
                gap: 8px;
                /* Tighter gap for mobile */
            }

            .experience-tab {
                padding: 10px 16px;
                /* Smaller padding */
                font-size: 13px;
                flex-grow: 1;
                text-align: center;
            }
        }

        .experience-tab {
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .experience-tab:hover,
        .experience-tab.active {
            background: var(--color-accent);
            color: var(--color-black);
            border-color: var(--color-accent);
        }

        .experience-category {
            display: none;
        }

        .experience-category.active {
            display: block;
        }

        .experience-category-title {
            font-family: var(--font-serif);
            font-size: clamp(28px, 4vw, 42px);
            margin-bottom: 40px;
            color: var(--color-off-white);
        }

        .experience-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .experience-item {
            display: grid;
            grid-template-columns: 140px 1fr;
            gap: 32px;
            padding: 32px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .experience-item:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.15);
        }

        @media (max-width: 768px) {
            .experience-item {
                grid-template-columns: 1fr;
                gap: 12px;
            }
        }

        .experience-period {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-accent);
            white-space: nowrap;
        }

        .experience-content h4 {
            font-family: var(--font-serif);
            font-size: 20px;
            font-weight: 500;
            color: var(--color-off-white);
            margin-bottom: 8px;
        }

        .experience-content p {
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
        }

        .experience-content a {
            color: var(--color-accent);
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .experience-content a:hover {
            opacity: 0.8;
        }

        .current-badge {
            display: inline-block;
            padding: 4px 10px;
            background: var(--color-accent);
            color: var(--color-black);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-radius: 4px;
            margin-left: 8px;
        }

        /* Testimonials */
        .testimonials-container {
            position: relative;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .testimonials-container {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                /* Firefox */
            }

            .testimonials-container::-webkit-scrollbar {
                display: none;
                /* Chrome/Safari */
            }
        }

        .testimonials-track {
            display: flex;
            gap: 32px;
            animation: scroll 80s linear infinite;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .testimonials-track {
                animation: none;
                display: flex;
                flex-direction: row;
                /* Horizontal layout */
                overflow-x: auto;
                /* Allow scrolling */
                scroll-snap-type: x mandatory;
                /* Snap effect */
                gap: 20px;
                padding-bottom: 20px;
                /* Space for scrollbar if visible */
                transform: none;
                width: 100%;
                -webkit-overflow-scrolling: touch;
                /* Smooth scrolling iOS */
            }

            .testimonial-card {
                width: 85vw;
                /* Almost full width with peek */
                max-width: 400px;
                padding: 32px;
                white-space: normal;
                scroll-snap-align: center;
                /* Center on snap */
                flex-shrink: 0;
            }

            /* Hide scrollbar for cleaner look */
            .testimonials-track::-webkit-scrollbar {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .testimonials-track {
                animation: none;
                display: flex;
                flex-direction: row;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 20px;
                padding-bottom: 20px;
                transform: none;
                width: 100%;
                -webkit-overflow-scrolling: touch;
            }

            .testimonial-card {
                width: 85vw;
                max-width: 400px;
                padding: 32px;
                white-space: normal;
                scroll-snap-align: center;
                flex-shrink: 0;
                margin-right: 0;
                /* Clear any margin */
            }

            .testimonial-dots {
                display: flex !important;
                margin-bottom: 20px;
            }

            /* Hide duplicates on mobile to fix dot count and avoid confusion */
            .testimonial-card.duplicate {
                display: none;
            }
        }

        .testimonial-dots {
            display: none;
            /* Hidden on desktop */
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--color-accent);
            transform: scale(1.2);
        }

        .testimonial-card {
            flex-shrink: 0;
            width: 500px;
            padding: 48px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .testimonial-quote {
            font-family: var(--font-serif);
            font-size: 22px;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 32px;
            color: var(--color-off-white);
        }

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

        .testimonial-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-alt) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-serif);
            font-size: 20px;
            color: var(--color-black);
        }

        .testimonial-info h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .testimonial-info span {
            font-size: 14px;
            color: var(--color-gray);
        }

        /* FAQ Section */
        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 32px 0;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
        }

        .faq-question h3 {
            font-family: var(--font-serif);
            font-size: clamp(20px, 2.5vw, 28px);
            font-weight: 400;
            color: var(--color-black);
            transition: color 0.3s ease;
        }

        .faq-question:hover h3 {
            color: var(--color-gray);
        }

        .faq-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--color-black);
            color: var(--color-off-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 300;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            background: var(--color-accent);
            color: var(--color-black);
            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: 300px;
            padding-bottom: 32px;
        }

        .faq-answer p {
            font-size: 17px;
            line-height: 1.8;
            color: rgba(0, 0, 0, 0.7);
            padding-right: 60px;
        }

        /* Contact Section (New Layout) */
        .contact-section {
            padding: 120px 20px;
            position: relative;
        }

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

        @media (max-width: 968px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
        }

        .contact-info h2 {
            font-family: var(--font-serif);
            font-size: clamp(36px, 5vw, 64px);
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 32px;
            color: var(--color-off-white);
        }

        .contact-info p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            max-width: 500px;
        }

        .contact-details {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-detail-item {
            display: flex;
            align-items: center;
            gap: 16px;
            color: var(--color-off-white);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .contact-detail-item:hover {
            color: var(--color-accent);
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.03);
            padding: 40px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .form-label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-gray);
            margin-bottom: 12px;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 16px;
            color: var(--color-off-white);
            font-family: var(--font-sans);
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--color-accent);
            background: rgba(255, 255, 255, 0.1);
        }

        .form-textarea {
            height: 150px;
            resize: none;
        }

        .form-submit {
            width: 100%;
            background: var(--color-accent);
            color: var(--color-black);
            padding: 16px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            margin-top: 16px;
        }

        .form-submit:hover {
            transform: scale(1.02);
            background: var(--color-accent-alt);
        }

        /* Footer */
        footer {
            background: var(--color-black);
            color: var(--color-off-white);
            padding: 80px 20px 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        @media (max-width: 968px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 580px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        .footer-brand h3 {
            font-family: var(--font-serif);
            font-size: 28px;
            margin-bottom: 16px;
        }

        .footer-brand p {
            color: var(--color-gray);
            font-size: 15px;
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-col h4 {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 24px;
            color: var(--color-gray);
        }

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

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

        .footer-col a {
            color: var(--color-off-white);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
        }

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

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            font-size: 13px;
            color: var(--color-gray);
        }

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

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

        .footer-social a:hover {
            background: var(--color-accent);
            color: var(--color-black);
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--color-accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.15s ease;
            transform: translate(-50%, -50%);
            mix-blend-mode: difference;
        }

        .cursor.hover {
            width: 60px;
            height: 60px;
            background: var(--color-accent);
            opacity: 0.3;
        }

        @media (max-width: 768px) {
            .cursor {
                display: none;
            }
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 50px;
            height: 50px;
            background: var(--color-accent);
            color: var(--color-black);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(200, 230, 0, 0.3);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 30px rgba(200, 230, 0, 0.4);
        }

        @media (max-width: 768px) {
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 44px;
                height: 44px;
            }
        }

        /* Language Switcher */
        .lang-switcher {
            position: fixed;
            top: 80px;
            right: 20px;
            z-index: 997;
            display: flex;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            padding: 4px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .lang-btn {
            padding: 8px 16px;
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .lang-btn.active {
            background: var(--color-accent);
            color: var(--color-black);
        }

        .lang-btn:hover:not(.active) {
            color: var(--color-off-white);
        }

        /* Language Content Toggle */
        [data-lang-en] {
            display: none;
        }

        html[lang="en"] [data-lang-de] {
            display: none;
        }

        html[lang="en"] [data-lang-en] {
            display: block;
        }

        html[lang="en"] span[data-lang-en],
        html[lang="en"] a[data-lang-en] {
            display: inline;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            inset: 0;
            background: var(--color-black);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 32px;
            transform: translateY(-100%);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu.active {
            transform: translateY(0);
        }

        .mobile-menu a {
            font-family: var(--font-serif);
            font-size: 36px;
            color: var(--color-off-white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--color-accent);
        }

        .mobile-menu-close {
            position: absolute;
            top: 24px;
            right: 24px;
            background: none;
            border: none;
            color: var(--color-off-white);
            font-size: 32px;
            cursor: pointer;
        }

        /* Mobile Fixes */
        @media (max-width: 1024px) {
            .about-stats {
                grid-template-columns: repeat(3, 1fr) !important;
                gap: 10px;
            }

            .stat-number {
                font-size: 32px !important;
            }
        }
