﻿:root {
            --primary: #0f4c5c;
            --primary-dark: #0a3542;
            --primary-light: #1a6b7e;
            --accent: #e8b04b;
            --accent-hover: #d49a35;
            --cream: #faf6f0;
            --cream-dark: #f0e8dc;
            --text-dark: #1a1a2e;
            --text-muted: #5a5a6e;
            --text-light: #8a8a9e;
            --white: #ffffff;
            --gradient-hero: linear-gradient(135deg, #0a3542 0%, #0f4c5c 40%, #1a6b7e 100%);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-body: 'Figtree', 'Segoe UI', sans-serif;
            --font-heading: 'Playfair Display', serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background: var(--cream);
            line-height: 1.7;
            overflow-x: hidden;
        }

        ::selection {
            background: var(--accent);
            color: var(--primary-dark);
        }

        /* ============ LOADING ANIMATION ============ */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes pulse {
            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(232, 176, 75, 0.5);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 0 0 20px rgba(232, 176, 75, 0);
            }
        }

        @keyframes float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-12px);
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        /* ============ NAVIGATION ============ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 53, 66, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
            padding: 0 2rem;
        }

        .navbar.scrolled {
            background: rgba(10, 53, 66, 0.98);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            cursor: pointer;
        }

        .brand-logo {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .brand-logo svg {
            width: 100%;
            height: 100%;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .brand-name {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--white);
            letter-spacing: -0.3px;
        }

        .brand-sub {
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 500;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            transition: var(--transition);
            position: relative;
            padding: 4px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
            border-radius: 2px;
        }

        .nav-links a:hover {
            color: var(--white);
        }
        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--accent);
            color: var(--primary-dark);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.3px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }
        .nav-cta:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(232, 176, 75, 0.35);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .lang-switch {
            display: flex;
            align-items: center;
            direction: ltr;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(180, 220, 220, 0.28);
            border-radius: 999px;
            padding: 3px;
            gap: 0;
        }

        .lang-switch a {
            color: rgba(210, 218, 218, 0.72);
            text-decoration: none;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.2px;
            padding: 6px 13px;
            border-radius: 999px;
            white-space: nowrap;
            line-height: 1.2;
            transition: var(--transition);
            font-family: 'Figtree', sans-serif;
        }

        .lang-switch a.active {
            background: var(--accent);
            color: var(--primary-dark);
        }

        .lang-switch a:not(.active):hover {
            color: rgba(255, 255, 255, 0.95);
        }

        /* Mobile nav toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none;
        }
        .nav-toggle span {
            width: 24px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: var(--transition);
        }

        /* ============ HERO SECTION ============ */
        .hero {
            min-height: 100vh;
            background: var(--gradient-hero);
            position: relative;
            display: flex;
            align-items: center;
            padding: 120px 2rem 80px;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 80%;
            height: 200%;
            background: radial-gradient(ellipse at center, rgba(232, 176, 75, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -20%;
            width: 70%;
            height: 150%;
            background: radial-gradient(ellipse at center, rgba(26, 107, 126, 0.3) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .hero-text {
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(232, 176, 75, 0.15);
            border: 1px solid rgba(232, 176, 75, 0.3);
            border-radius: 50px;
            padding: 6px 16px;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 24px;
        }
        .hero-badge .dot {
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: 3.6rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.15;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }
        .hero-title .highlight {
            color: var(--accent);
            position: relative;
            white-space: nowrap;
        }
        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            right: 0;
            height: 6px;
            background: rgba(232, 176, 75, 0.3);
            border-radius: 3px;
            z-index: -1;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.75);
            max-width: 520px;
            margin-bottom: 32px;
            font-weight: 400;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.3px;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-family: var(--font-body);
        }

        .btn-primary {
            background: var(--accent);
            color: var(--primary-dark);
        }
        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(232, 176, 75, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.25);
        }
        .btn-outline:hover {
            border-color: var(--white);
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-3px);
        }

        .hero-stats {
            display: flex;
            gap: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }
        .hero-stat .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent);
            font-family: var(--font-heading);
            line-height: 1.2;
        }
        .hero-stat .stat-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.55);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .hero-visual {
            animation: fadeInUp 0.8s ease-out 0.2s both;
            position: relative;
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-lg);
            padding: 32px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), #f5c86e, var(--accent));
            background-size: 200% 100%;
            animation: shimmer 3s infinite;
        }

        .hero-card-title {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .hero-card-items {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .hero-card-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.88rem;
            padding: 10px 14px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .hero-card-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(4px);
        }
        .hero-card-item .icon {
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* ============ TRUST BAR ============ */
        .trust-bar {
            background: var(--white);
            padding: 24px 2rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        .trust-container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.82rem;
            color: var(--text-muted);
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        .trust-item .badge-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--cream-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }

        /* ============ SECTION COMMON ============ */
        .section {
            padding: 80px 2rem;
        }
        .section-container {
            max-width: 1280px;
            margin: 0 auto;
        }
        .section-label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent);
            margin-bottom: 12px;
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--primary-dark);
            letter-spacing: -0.5px;
            margin-bottom: 16px;
            line-height: 1.25;
        }
        .section-subtitle {
            font-size: 1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin-bottom: 40px;
            line-height: 1.8;
        }
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-header .section-subtitle {
            margin: 0 auto;
        }

        /* ============ SERVICES ============ */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }
        .service-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 32px 28px;
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent);
            opacity: 0;
            transition: var(--transition);
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(232, 176, 75, 0.25);
        }
        .service-card:hover::before {
            opacity: 1;
        }
        .service-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--cream);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 18px;
        }
        .service-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
            letter-spacing: -0.2px;
        }
        .service-card p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ============ PROCESS ============ */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }
        .process-step {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 28px 24px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: var(--shadow-sm);
            position: relative;
        }
        .process-step:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            margin: 0 auto 16px;
            font-family: var(--font-heading);
        }
        .process-step h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        .process-step p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ============ WHY CHINA ============ */
        .why-section {
            background: var(--primary-dark);
            padding: 80px 2rem;
            position: relative;
            overflow: hidden;
        }
        .why-section::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -20%;
            width: 70%;
            height: 200%;
            background: radial-gradient(ellipse at center, rgba(232, 176, 75, 0.08) 0%, transparent 60%);
        }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            position: relative;
            z-index: 2;
        }
        .why-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 28px 24px;
            transition: var(--transition);
        }
        .why-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-4px);
            border-color: rgba(232, 176, 75, 0.3);
        }
        .why-item .why-icon {
            font-size: 2rem;
            margin-bottom: 14px;
        }
        .why-item h4 {
            color: var(--white);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .why-item p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.82rem;
            line-height: 1.6;
        }

        /* ============ CONTACT / FORM SECTION ============ */
        .contact-section {
            background: var(--cream);
            padding: 80px 2rem;
        }
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 48px;
            align-items: start;
        }
        .contact-info h2 {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .contact-info .desc {
            color: var(--text-muted);
            margin-bottom: 28px;
            line-height: 1.8;
            font-size: 0.95rem;
        }
        .contact-features {
            display: flex;
            flex-direction: column;
            gap: 18px;
            margin-bottom: 28px;
        }
        .contact-feature {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 18px;
            background: var(--white);
            border-radius: var(--radius-sm);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: var(--transition);
        }
        .contact-feature:hover {
            box-shadow: var(--shadow-sm);
            transform: translateX(4px);
        }
        .contact-feature .cf-icon {
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        .contact-feature h5 {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 2px;
        }
        .contact-feature p {
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* Form Styles */
        .contact-form {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(0, 0, 0, 0.04);
            position: relative;
            overflow: hidden;
        }
        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        .form-header {
            margin-bottom: 24px;
        }
        .form-header h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .form-header p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 6px;
            letter-spacing: 0.2px;
        }
        .form-group label .required {
            color: #e74c3c;
        }
        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid #e0d8cc;
            border-radius: var(--radius-sm);
            font-size: 0.88rem;
            font-family: var(--font-body);
            transition: var(--transition);
            background: var(--cream);
            color: var(--text-dark);
            outline: none;
            appearance: none;
            -webkit-appearance: none;
        }
        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            border-color: var(--primary);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(15, 76, 92, 0.08);
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-select {
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a5a6e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 36px;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .form-submit {
            width: 100%;
            padding: 14px 28px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 0.3px;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font-body);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 8px;
        }
        .form-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(15, 76, 92, 0.25);
        }
        .form-note {
            font-size: 0.72rem;
            color: var(--text-light);
            text-align: center;
            margin-top: 14px;
            line-height: 1.5;
        }

        /* ============ TESTIMONIALS ============ */
        .testimonials-section {
            background: var(--white);
            padding: 80px 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.04);
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }
        .testimonial-card {
            background: var(--cream);
            border-radius: var(--radius-md);
            padding: 28px 24px;
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .testimonial-stars {
            color: var(--accent);
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }
        .testimonial-text {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 16px;
            font-style: italic;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .testimonial-author .name {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-dark);
        }
        .testimonial-author .location {
            font-size: 0.72rem;
            color: var(--text-light);
        }

        /* ============ FAQ ============ */
        .faq-section {
            background: var(--cream);
            padding: 80px 2rem;
        }
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--white);
            border-radius: var(--radius-sm);
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: var(--transition);
        }
        .faq-item:hover {
            border-color: rgba(232, 176, 75, 0.3);
        }
        .faq-question {
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-dark);
            user-select: none;
            gap: 12px;
        }
        .faq-question .faq-toggle {
            font-size: 1.2rem;
            color: var(--accent);
            transition: var(--transition);
            flex-shrink: 0;
            font-weight: 400;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0 22px;
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 22px 18px;
        }
        .faq-item.open .faq-toggle {
            transform: rotate(45deg);
        }

        /* ============ FOOTER ============ */
        .footer {
            background: var(--primary-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 48px 2rem 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        .footer-brand p {
            font-size: 0.82rem;
            line-height: 1.7;
            margin-top: 12px;
            max-width: 300px;
        }
        .footer h5 {
            color: var(--white);
            font-size: 0.88rem;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }
        .footer ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer ul a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.82rem;
            transition: var(--transition);
        }
        .footer ul a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            max-width: 1280px;
            margin: 0 auto;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.75rem;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-title {
                font-size: 2.8rem;
            }
            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .navbar {
                padding: 0 1rem;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                background: var(--primary-dark);
                flex-direction: column;
                padding: 20px;
                gap: 16px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-toggle {
                display: flex;
            }
            .nav-cta {
                display: none;
            }
            .lang-switch a {
                font-size: 0.68rem;
                padding: 5px 10px;
            }
            .nav-actions {
                gap: 8px;
            }
            .hero {
                padding: 100px 1rem 60px;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-stats {
                gap: 16px;
                flex-wrap: wrap;
            }
            .section {
                padding: 56px 1rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .why-section {
                padding: 56px 1rem;
            }
            .testimonials-section {
                padding: 56px 1rem;
            }
            .faq-section {
                padding: 56px 1rem;
            }
            .contact-section {
                padding: 56px 1rem;
            }
            .footer {
                padding: 32px 1rem 16px;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .trust-container {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.8rem;
            }
            .hero-buttons {
                flex-direction: column;
            }
            .btn {
                justify-content: center;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .process-grid {
                grid-template-columns: 1fr;
            }
            .why-grid {
                grid-template-columns: 1fr;
            }
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
            .contact-form {
                padding: 24px 18px;
            }
        }

        html[dir="rtl"] body {
            font-family: 'Noto Naskh Arabic', 'Figtree', 'Segoe UI', sans-serif;
        }

        html[dir="rtl"] h1,
        html[dir="rtl"] h2,
        html[dir="rtl"] h3,
        html[dir="rtl"] h4,
        html[dir="rtl"] h5,
        html[dir="rtl"] .brand-name,
        html[dir="rtl"] .hero-title,
        html[dir="rtl"] .section-title {
            font-family: 'Noto Naskh Arabic', 'Playfair Display', serif;
        }

        html[dir="rtl"] .brand-sub {
            letter-spacing: 0.5px;
            text-transform: none;
        }

        html[dir="rtl"] .nav-links a::after {
            left: auto;
            right: 0;
        }
