/* ========== RESET & TOKENS ========== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --midnight: #0a1628;
            --deep: #111d33;
            --ocean: #1a3a5c;
            --surf: #2d7d9a;
            --copper: #c17817;
            --copper-light: #d4952e;
            --sand: #f5f0e8;
            --warm-white: #faf8f4;
            --stone: #e8e2d6;
            --text-primary: #1a1a1a;
            --text-secondary: #4a4a4a;
            --text-light: #f5f0e8;

            --font-display: 'DM Serif Display', Georgia, serif;
            --font-body: 'Space Grotesk', system-ui, sans-serif;

            --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
        }

        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: var(--font-body);
            color: var(--text-primary);
            background: var(--warm-white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        img { max-width: 100%; display: block; }
        a { color: inherit; text-decoration: none; }
        button { font-family: inherit; cursor: pointer; border: none; background: none; }
        ul { list-style: none; }

        /* ========== HEADER ========== */
        .header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 1.25rem 2.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.4s var(--ease-smooth);
        }
        .header.scrolled {
            background: rgba(10, 22, 40, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 0.8rem 2.5rem;
            box-shadow: 0 2px 40px rgba(0,0,0,0.15);
        }
        .logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: #fff;
            letter-spacing: -0.02em;
        }
        .logo span { color: var(--copper); }
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .nav-links a {
            color: rgba(255,255,255,0.8);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            transition: color 0.3s;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px; left: 0;
            width: 0; height: 2px;
            background: var(--copper);
            transition: width 0.3s var(--ease-out);
        }
        .nav-links a:hover { color: #fff; }
        .nav-links a:hover::after { width: 100%; }

        .nav-cta {
            background: var(--copper) !important;
            color: #fff !important;
            padding: 0.6rem 1.4rem;
            border-radius: 4px;
            font-weight: 600;
            transition: background 0.3s, transform 0.3s !important;
        }
        .nav-cta:hover { background: var(--copper-light) !important; transform: translateY(-1px); }
        .nav-cta::after { display: none !important; }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }
        .hamburger span {
            width: 26px; height: 2px;
            background: #fff;
            transition: all 0.3s;
            border-radius: 2px;
        }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: var(--midnight);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2.5rem;
            opacity: 0;
            transition: opacity 0.4s;
        }
        .mobile-menu.active { display: flex; opacity: 1; }
        .mobile-menu a {
            color: var(--text-light);
            font-family: var(--font-display);
            font-size: 2rem;
            font-style: italic;
            transition: color 0.3s;
        }
        .mobile-menu a:hover { color: var(--copper); }

        /* ========== HERO ========== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--midnight);
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
        }
        .hero-bg-img {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }
        .hero-bg-img.active {
            opacity: 1;
        }
        .hero-bg-img:nth-child(1) { background-image: url('/img/hero-1.jpg'); background-image: image-set(url('/img/hero-1.webp') type('image/webp'), url('/img/hero-1.jpg') type('image/jpeg')); }
        .hero-bg-img:nth-child(2) { background-image: url('/img/hero-2.jpg'); background-image: image-set(url('/img/hero-2.webp') type('image/webp'), url('/img/hero-2.jpg') type('image/jpeg')); }
        .hero-bg-img:nth-child(3) { background-image: url('/img/hero-3.jpg'); background-image: image-set(url('/img/hero-3.webp') type('image/webp'), url('/img/hero-3.jpg') type('image/jpeg')); }
        .hero-bg-img:nth-child(4) { background-image: url('/img/hero-4.jpg'); background-image: image-set(url('/img/hero-4.webp') type('image/webp'), url('/img/hero-4.jpg') type('image/jpeg')); }
        .hero-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(10, 22, 40, 0.7) 0%, rgba(10, 22, 40, 0.6) 40%, rgba(10, 22, 40, 0.8) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: left;
            max-width: 1200px;
            width: 100%;
            padding: clamp(9rem, 20vh, 14rem) 2.5rem 4rem;
            margin-top: 0;
        }
        .hero-tag { display: none; }
        .hero-sub {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.85);
            max-width: 440px;
            line-height: 1.7;
            font-weight: 400;
            letter-spacing: 0.01em;
            margin-bottom: 1.5rem;
        }
        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(3.2rem, 7.5vw, 6rem);
            color: #fff;
            line-height: 1.05;
            margin-bottom: 2.5rem;
            letter-spacing: -0.02em;
        }
        .hero h1 em {
            font-style: italic;
            color: var(--copper-light);
        }
        .hero-actions {
            display: flex;
            gap: 1rem;
            justify-content: flex-start;
            flex-wrap: wrap;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--copper);
            color: #fff;
            padding: 0.9rem 2rem;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s var(--ease-smooth);
            letter-spacing: 0.02em;
        }
        .btn-primary:hover { background: var(--copper-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(193, 120, 23, 0.3); }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 1px solid rgba(255,255,255,0.3);
            color: #fff;
            padding: 0.9rem 2rem;
            font-size: 0.95rem;
            font-weight: 500;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

        .hero-stats {
            display: flex;
            justify-content: flex-start;
            gap: 3rem;
            margin-top: 3.5rem;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .hero-stat {
            text-align: center;
        }
        .hero-stat strong {
            display: block;
            font-family: var(--font-display);
            font-size: 2rem;
            color: #fff;
        }
        .hero-stat span {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255,255,255,0.4);
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }
        .scroll-line {
            width: 1px;
            height: 40px;
            background: rgba(255,255,255,0.15);
            position: relative;
            overflow: hidden;
        }
        .scroll-line::after {
            content: '';
            position: absolute;
            top: -100%;
            width: 100%;
            height: 100%;
            background: var(--copper);
            animation: scrollTrack 2s ease-in-out infinite;
        }
        @keyframes scrollTrack { 0% { top: -100%; } 100% { top: 100%; } }

        /* ========== CLIENT TICKER ========== */
        .ticker {
            background: var(--midnight);
            padding: 1.2rem 0;
            overflow: hidden;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .ticker-track {
            display: flex;
            animation: ticker 30s linear infinite;
            width: max-content;
        }
        .ticker-track:hover { animation-play-state: paused; }
        .ticker-item {
            white-space: nowrap;
            padding: 0 2.5rem;
            font-size: 0.8rem;
            font-weight: 500;
            color: rgba(255,255,255,0.35);
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }
        .ticker-item .sep {
            color: var(--copper);
            margin-left: 2.5rem;
        }
        @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* ========== SECTIONS COMMON ========== */
        .section { padding: 7rem 2.5rem; }
        .section-dark { background: var(--midnight); color: var(--text-light); }
        .section-sand { background: var(--sand); }
        .section-stone { background: var(--stone); }
        .container { max-width: 1200px; margin: 0 auto; }

        .section-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--copper);
            margin-bottom: 1rem;
        }
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1.15;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }
        .section-subtitle {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.7;
            font-weight: 300;
        }
        .section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

        /* ========== ABOUT ========== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        .about-image-wrap {
            position: relative;
            aspect-ratio: 4/5;
            background: var(--stone);
            border-radius: 6px;
            overflow: hidden;
        }
        .about-image-wrap .placeholder-img {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--ocean), var(--surf));
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.3);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        .about-badge {
            position: absolute;
            bottom: 1.5rem;
            left: 1.5rem;
            background: var(--copper);
            color: #fff;
            padding: 1rem 1.4rem;
            border-radius: 4px;
        }
        .about-badge strong {
            display: block;
            font-family: var(--font-display);
            font-size: 1.8rem;
            line-height: 1;
        }
        .about-badge span {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.85;
        }
        .about-text h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }
        .about-text h2 em { font-style: italic; color: var(--copper); }
        .about-text p {
            color: var(--text-secondary);
            margin-bottom: 1.2rem;
            line-height: 1.8;
            font-weight: 300;
        }
        .about-signature {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--stone);
        }
        .about-signature strong {
            display: block;
            font-size: 1rem;
        }
        .about-signature span {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        .about-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 0.75rem;
        }
        .about-links a {
            font-size: 0.8rem;
            color: var(--copper);
            font-weight: 500;
            transition: color 0.3s;
        }
        .about-links a:hover { color: var(--copper-light); }

        /* ========== SERVICES ========== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .service-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 6px;
            padding: 2.5rem;
            transition: all 0.4s var(--ease-smooth);
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 3px;
            height: 0;
            background: var(--copper);
            transition: height 0.4s var(--ease-out);
        }
        .service-card:hover {
            background: rgba(255,255,255,0.07);
            border-color: rgba(193, 120, 23, 0.3);
            transform: translateY(-4px);
        }
        .service-card:hover::before { height: 100%; }
        .service-card h3 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            margin-bottom: 0.75rem;
            color: #fff;
        }
        .service-card p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.55);
            line-height: 1.7;
            margin-bottom: 1.25rem;
            font-weight: 300;
        }
        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .service-tag {
            font-size: 0.7rem;
            padding: 0.3rem 0.7rem;
            background: rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.5);
            border-radius: 2px;
            font-weight: 500;
            letter-spacing: 0.03em;
        }

        /* ========== WHY AUSTRALIA ========== */
        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }
        .incentives-table {
            background: var(--midnight);
            border-radius: 6px;
            padding: 2.5rem;
            color: var(--text-light);
        }
        .incentives-table h3 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
        }
        .incentive-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .incentive-row:last-child { border-bottom: none; }
        .incentive-name {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }
        .incentive-value {
            font-family: var(--font-display);
            font-size: 1.6rem;
            color: var(--copper-light);
        }
        .why-reasons {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .why-card {
            padding: 1.5rem;
            background: var(--warm-white);
            border-radius: 6px;
            border-left: 3px solid var(--copper);
            transition: transform 0.3s;
        }
        .why-card:hover { transform: translateX(6px); }
        .why-card h4 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            margin-bottom: 0.4rem;
        }
        .why-card p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.6;
            font-weight: 300;
        }

        /* ========== WORK / PORTFOLIO ========== */
        .work-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        .work-card {
            background: var(--warm-white);
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid var(--stone);
            transition: all 0.4s var(--ease-smooth);
        }
        .work-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.08);
            border-color: var(--copper);
        }
        .work-card-media {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            background: var(--midnight);
            overflow: hidden;
        }
        .work-card-media iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        .work-card-link-overlay {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            cursor: pointer;
        }
        .work-card-link-overlay .overlay-bg {
            position: absolute;
            inset: 0;
            transition: transform 0.6s var(--ease-out);
        }
        .work-card-link-overlay:hover .overlay-bg {
            transform: scale(1.05);
        }
        .work-card-link-overlay .overlay-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
        }
        .overlay-content .play-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(193, 120, 23, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.75rem;
            transition: transform 0.3s, background 0.3s;
        }
        .work-card-link-overlay:hover .play-icon {
            transform: scale(1.1);
            background: var(--copper-light);
        }
        .play-icon svg {
            width: 20px;
            height: 20px;
            fill: #fff;
            margin-left: 2px;
        }
        .overlay-content .overlay-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-weight: 500;
            opacity: 0.8;
        }
        .work-card-info {
            padding: 1.5rem;
        }
        .work-card-info h3 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            margin-bottom: 0.35rem;
        }
        .work-card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            align-items: center;
            margin-bottom: 0.6rem;
        }
        .work-card-meta span {
            font-size: 0.78rem;
            color: var(--text-secondary);
        }
        .work-card-meta .divider {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--copper);
            flex-shrink: 0;
        }
        .work-card-info p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
            font-weight: 300;
        }
        .work-card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            margin-top: 0.75rem;
        }
        .work-card-tag {
            font-size: 0.68rem;
            padding: 0.25rem 0.6rem;
            background: var(--stone);
            color: var(--text-secondary);
            border-radius: 2px;
            font-weight: 500;
        }
        .work-featured {
            grid-column: 1 / -1;
        }
        .work-featured .work-card-media,
        .work-featured .work-card-link-overlay {
            aspect-ratio: 21/9;
        }
        @media (max-width: 768px) {
            .work-grid { grid-template-columns: 1fr; }
            .work-featured .work-card-media,
            .work-featured .work-card-link-overlay { aspect-ratio: 16/9; }
        }

        /* ========== LOCATIONS SHOWCASE ========== */
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .location-card {
            position: relative;
            aspect-ratio: 3/4;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            background: var(--midnight);
        }
        .location-card video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
            filter: saturate(1.5) contrast(1.15) brightness(0.95);
        }
        .location-card:hover video {
            transform: scale(1.06);
            filter: saturate(1.7) contrast(1.2) brightness(1.0);
        }
        .location-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, transparent 50%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.5rem;
            z-index: 1;
        }
        .location-overlay h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 0.25rem;
        }
        .location-overlay span {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.6);
            font-weight: 300;
        }

        /* ========== PROCESS ========== */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        .process-step {
            text-align: center;
            position: relative;
        }
        .process-step::after {
            content: '';
            position: absolute;
            top: 2rem;
            right: -1rem;
            width: calc(100% - 2rem);
            height: 1px;
            background: rgba(255,255,255,0.1);
            transform: translateX(50%);
        }
        .process-step:last-child::after { display: none; }
        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            background: rgba(193, 120, 23, 0.12);
            border: 1px solid rgba(193, 120, 23, 0.3);
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--copper-light);
            margin-bottom: 1.25rem;
        }
        .process-step h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            color: #fff;
            margin-bottom: 0.5rem;
        }
        .process-step p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.6;
            font-weight: 300;
        }

        /* ========== FILMING GUIDE ========== */
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .guide-card {
            background: var(--warm-white);
            border-radius: 6px;
            padding: 2rem;
            border: 1px solid var(--stone);
            transition: all 0.3s;
        }
        .guide-card:hover { border-color: var(--copper); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
        .guide-card h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            margin-bottom: 0.75rem;
        }
        .guide-card p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.7;
            font-weight: 300;
        }
        .guide-callout {
            margin-top: 1rem;
            padding: 0.75rem 1rem;
            background: rgba(193, 120, 23, 0.08);
            border-left: 2px solid var(--copper);
            border-radius: 0 4px 4px 0;
            font-size: 0.82rem;
            color: var(--copper);
            font-weight: 500;
        }

        /* ========== FAQ ========== */
        .faq-layout {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }
        .faq-nav {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .faq-nav-item {
            display: block;
            padding: 0.75rem 0;
            font-size: 0.88rem;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--stone);
            cursor: pointer;
            transition: color 0.3s;
        }
        .faq-nav-item:hover, .faq-nav-item.active { color: var(--copper); }
        .faq-list { display: flex; flex-direction: column; gap: 0; }
        .faq-item {
            border-bottom: 1px solid var(--stone);
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: color 0.3s;
            text-align: left;
            width: 100%;
        }
        .faq-question:hover { color: var(--copper); }
        .faq-toggle {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            position: relative;
        }
        .faq-toggle::before,
        .faq-toggle::after {
            content: '';
            position: absolute;
            background: var(--copper);
            transition: transform 0.3s;
        }
        .faq-toggle::before {
            width: 14px; height: 2px;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
        }
        .faq-toggle::after {
            width: 2px; height: 14px;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
        }
        .faq-item.active .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s var(--ease-smooth), padding 0.4s;
        }
        .faq-answer-inner {
            padding-bottom: 1.5rem;
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.8;
            font-weight: 300;
        }

        /* ========== TESTIMONIALS ========== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .testimonial-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 6px;
            padding: 2rem;
            transition: all 0.3s;
        }
        .testimonial-card:hover { transform: translateY(-4px); border-color: rgba(193, 120, 23, 0.2); }
        .stars {
            color: var(--copper);
            font-size: 0.85rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }
        .testimonial-card blockquote {
            font-family: var(--font-display);
            font-style: italic;
            font-size: 1.05rem;
            color: rgba(255,255,255,0.85);
            line-height: 1.6;
            margin-bottom: 1.25rem;
        }
        .testimonial-author strong {
            display: block;
            font-size: 0.85rem;
            color: #fff;
        }
        .testimonial-author span {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.45);
        }

        /* ========== CONTACT ========== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
        }
        .contact-info h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            margin-bottom: 1.5rem;
            line-height: 1.15;
        }
        .contact-info h2 em { font-style: italic; color: var(--copper); }
        .contact-info > p {
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            line-height: 1.7;
            font-weight: 300;
        }
        .contact-detail {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        .contact-detail .icon {
            width: 36px;
            height: 36px;
            background: rgba(193, 120, 23, 0.1);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--copper);
            font-size: 0.9rem;
            flex-shrink: 0;
        }
        .contact-detail strong {
            display: block;
            font-size: 0.95rem;
            margin-bottom: 0.1rem;
        }
        .contact-detail span {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        .timezone-note {
            margin-top: 2rem;
            padding: 1rem;
            background: var(--sand);
            border-radius: 6px;
            font-size: 0.82rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
        .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
        .form-group label {
            font-size: 0.78rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-secondary);
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            font-family: var(--font-body);
            padding: 0.85rem 1rem;
            border: 1px solid var(--stone);
            border-radius: 4px;
            font-size: 0.92rem;
            background: var(--warm-white);
            color: var(--text-primary);
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--copper);
        }
        .form-group textarea { resize: vertical; min-height: 120px; }

        .form-checkboxes {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .form-checkbox {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        .form-checkbox input[type="checkbox"] {
            width: 16px;
            height: 16px;
            accent-color: var(--copper);
        }
        .btn-submit {
            background: var(--copper);
            color: #fff;
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            align-self: flex-start;
        }
        .btn-submit:hover { background: var(--copper-light); transform: translateY(-2px); }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--midnight);
            padding: 4rem 2.5rem 2rem;
            color: var(--text-light);
        }
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            margin-bottom: 2rem;
        }
        .footer-brand {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-style: italic;
            line-height: 1.2;
        }
        .footer-brand span { color: var(--copper); }
        .footer-nav {
            display: flex;
            gap: 3rem;
        }
        .footer-nav-group h4 {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: rgba(255,255,255,0.4);
            margin-bottom: 1rem;
        }
        .footer-nav-group a {
            display: block;
            font-size: 0.88rem;
            color: rgba(255,255,255,0.6);
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }
        .footer-nav-group a:hover { color: var(--copper); }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.78rem;
            color: rgba(255,255,255,0.35);
        }
        .sister-sites a {
            color: rgba(255,255,255,0.5);
            transition: color 0.3s;
            margin-left: 1.5rem;
        }
        .sister-sites a:hover { color: var(--copper); }

        /* ========== FLOATING MESSAGING BUTTON ========== */
        #float-msg-btn { position: fixed; bottom: 2rem; right: 2rem; z-index: 900; --float-color: #3a6647; }
        .wa-float {
            display: flex; align-items: center; gap: 0; overflow: hidden;
            background: var(--float-color, #3a6647); border-radius: 50px;
            box-shadow: 0 6px 24px rgba(0,0,0,0.3);
            transition: all 0.3s ease; cursor: pointer;
            border: none; padding: 0; text-decoration: none; position: relative;
        }
        .wa-float:hover {
            border-radius: 50px; box-shadow: 0 10px 32px rgba(0,0,0,0.4);
            transform: translateY(-3px);
        }
        .wa-float .wa-icon {
            width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
        }
        .wa-float .wa-icon svg { width: 26px; height: 26px; fill: white; }
        .wa-float .wa-text {
            max-width: 0; overflow: hidden; white-space: nowrap;
            color: white; font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem;
            font-weight: 700; transition: max-width 0.3s ease, padding 0.3s ease;
            padding-right: 0;
        }
        .wa-float:hover .wa-text { max-width: 160px; padding-right: 1.25rem; }
        .wa-float::before {
            content: ''; position: absolute; inset: 0; border-radius: 50px;
            border: 2px solid var(--float-color, #3a6647);
            opacity: 0.5;
            animation: waPulse 2.5s ease-out infinite;
        }
        @keyframes waPulse {
            0%   { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        /* ========== SMART MESSAGING ========== */
        #hero-msg-btn { display: contents; }
        button.hero-wa, button.msg-btn {
            display: inline-flex; align-items: center; gap: 0.6rem;
            border: none; cursor: pointer;
            padding: 0.9rem 1.6rem; border-radius: 2px;
            font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 700;
            letter-spacing: 0.04em; transition: all 0.22s;
        }
        button.hero-wa:hover, button.msg-btn:hover { filter: brightness(1.12); transform: translateY(-2px); }
        .msg-btn svg { width: 18px; height: 18px; fill: currentColor; }
        .msg-disclaimer {
            display: block; width: 100%;
            font-size: 0.72rem; color: rgba(255,255,255,0.55);
            margin-top: 0.55rem; font-style: italic; letter-spacing: 0.01em;
        }
        .msg-flag-row {
            display: flex; align-items: center; gap: 0.4rem;
            margin-top: 0.75rem; width: 100%;
        }
        .msg-flag-label {
            font-family: 'Space Grotesk', sans-serif; font-size: 0.68rem; font-weight: 600;
            color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase;
            margin-right: 0.2rem;
        }
        .msg-flag {
            background: none; border: 1px solid rgba(255,255,255,0.18);
            border-radius: 4px; padding: 0.2rem 0.45rem; cursor: pointer;
            font-size: 1rem; line-height: 1; transition: border-color 0.18s, transform 0.18s;
        }
        .msg-flag:hover { border-color: rgba(255,255,255,0.55); transform: scale(1.15); }

        /* ========== WECHAT MODAL ========== */
        #wechat-modal {
            display: none; position: fixed; inset: 0; z-index: 9000;
            background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
            align-items: center; justify-content: center;
        }
        #wechat-modal.open { display: flex; }
        .wc-box {
            background: var(--sand, #f5f0e8); border-radius: 4px; padding: 2.5rem 2rem;
            text-align: center; max-width: 340px; width: 90%; position: relative;
            box-shadow: 0 24px 64px rgba(0,0,0,0.4);
        }
        .wc-close {
            position: absolute; top: 0.8rem; right: 0.8rem;
            background: none; border: none; cursor: pointer;
            color: #999; font-size: 1.3rem; line-height: 1;
            transition: color 0.18s;
        }
        .wc-close:hover { color: #333; }
        .wc-icon { color: #07C160; margin-bottom: 1rem; }
        .wc-icon svg { width: 40px; height: 40px; fill: currentColor; display: block; margin: 0 auto; }
        .wc-box h3 { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--midnight, #1a1a2e); }
        .wc-box .wc-qr {
            width: 180px; height: 180px; margin: 1rem auto;
            border: 3px solid #ddd; border-radius: 4px;
            background: #fff; display: flex; align-items: center; justify-content: center;
            color: #999; font-size: 0.75rem;
        }
        .wc-box .wc-qr img { width: 100%; height: 100%; object-fit: contain; }
        .wc-scan { font-size: 0.85rem; color: #777; margin-bottom: 0.4rem; }
        .wc-cn { font-size: 0.8rem; color: #777; font-style: italic; }

        /* ========== LANGUAGE SWITCHER (vertical, right edge) ========== */
        .lang-bar {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 800;
            display: flex;
            flex-direction: column;
            gap: 0;
            background: rgba(26, 26, 46, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 8px 0 0 8px;
            overflow: hidden;
            box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        }
        .lang-bar a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.65rem 0.75rem;
            text-decoration: none;
            color: rgba(255,255,255,0.5);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            transition: all 0.2s ease;
            border-left: 2px solid transparent;
            white-space: nowrap;
        }
        .lang-bar a:hover {
            color: rgba(255,255,255,0.9);
            background: rgba(255,255,255,0.08);
        }
        .lang-bar a.lang-active {
            color: var(--copper, #c87941);
            border-left-color: var(--copper, #c87941);
            background: rgba(200,121,65,0.08);
        }
        .lang-bar .lang-flag {
            font-size: 1.1rem;
            line-height: 1;
        }
        @media (max-width: 768px) {
            .lang-bar {
                top: auto;
                bottom: 5.5rem;
                transform: none;
                border-radius: 8px 0 0 8px;
            }
            .lang-bar .lang-label { display: none; }
            .lang-bar a { padding: 0.55rem 0.6rem; gap: 0; justify-content: center; }
        }

        /* ========== SCROLL REVEAL ========== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1100px) {
            .services-grid { grid-template-columns: 1fr 1fr; }
            .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
            .process-step::after { display: none; }
        }
        @media (max-width: 900px) {
            .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .about-image-wrap { aspect-ratio: 16/10; max-height: 400px; }
            .why-grid { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
            .faq-layout { grid-template-columns: 1fr; }
            .faq-nav { display: none; }
            .footer-top { flex-direction: column; gap: 2rem; }
            .testimonials-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .section { padding: 4.5rem 1.5rem; }
            .header { padding: 1rem 1.5rem; }
            .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
            .services-grid { grid-template-columns: 1fr; }
            .locations-grid { grid-template-columns: 1fr 1fr; }
            .guide-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .process-steps { grid-template-columns: 1fr; }
            .footer-nav { flex-direction: column; gap: 1.5rem; }
            .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
        }
        @media (max-width: 520px) {
            .hero h1 { font-size: 2.2rem; }
            .hero-actions { flex-direction: column; align-items: center; }
            .locations-grid { grid-template-columns: 1fr; }
        }

/* ========== SERVICE PAGE COMPONENTS ========== */
.breadcrumb-bar { background: var(--sand); border-bottom: 1px solid var(--stone); }
.breadcrumb-bar .container { padding-top: 1rem; padding-bottom: 1rem; }
.breadcrumb { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.04em; color: var(--text-secondary); text-transform: uppercase; }
.breadcrumb a { color: var(--text-secondary); text-decoration: none; transition: color 0.2s var(--ease-smooth); }
.breadcrumb a:hover { color: var(--copper); }
.breadcrumb span[aria-current] { color: var(--copper); }
.breadcrumb .sep { margin: 0 0.6rem; opacity: 0.4; }
.answer-box { max-width: 880px; margin: 0 auto 1rem; padding: 1.75rem 2rem; background: var(--warm-white); border-left: 3px solid var(--copper); border-radius: 4px; font-size: 1.15rem; line-height: 1.7; color: var(--text-primary); }
.section-dark .answer-box { background: rgba(255,255,255,0.05); color: var(--text-light); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.related-card { display: block; padding: 1.5rem; background: var(--warm-white); border: 1px solid var(--stone); border-radius: 6px; text-decoration: none; color: var(--text-primary); transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out); }
.related-card:hover { transform: translateY(-4px); border-color: var(--copper); }
.related-card strong { display: block; font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.35rem; color: var(--ocean); }
.related-card span { font-size: 0.92rem; color: var(--text-secondary); }
.cta-band { background: var(--copper); color: #fff; text-align: center; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; color: #fff; }
.cta-band p { max-width: 620px; margin: 0 auto 2rem; font-size: 1.1rem; opacity: 0.95; }
.cta-band .btn-primary { background: #fff; color: var(--copper); }
.cta-band .btn-primary:hover { background: var(--midnight); color: #fff; }
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr; } }
.service-more { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.1rem; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--copper); text-decoration: none; transition: gap 0.25s var(--ease-out); }
.service-more:hover { gap: 0.7rem; }
.section-dark .service-more { color: var(--copper-light); }
