
        :root {
            --navy: #0F172A;
            --sky: #38BDF8;
            --yellow: #FACC15;
            --text: #0F172A;
            --text-light: #475569;
            --text-muted: #94A3B8;
            --border: #E2E8F0;
            --surface: #F8FAFC;
            --white: #FFFFFF;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Outfit', sans-serif;
            background: var(--white);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--text); }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        .navbar {
            width: 100%; padding: 1.5rem 5%;
            display: flex; justify-content: space-between; align-items: center;
            position: relative; z-index: 100;
        }
        .logo { display: flex; align-items: center; gap: 0.75rem; }
        .logo-icon {
            width: 48px; height: 48px;
            background: linear-gradient(135deg, var(--sky), #0ea5e9);
            border-radius: 14px; display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; color: var(--white);
            transition: transform 0.3s ease;
            box-shadow: 0 4px 20px rgba(56,189,248,0.3);
        }
        .logo:hover .logo-icon { transform: rotate(-10deg) scale(1.08); }
        .logo-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; }
        .logo-text span { color: var(--sky); }

        .nav-menu { display: flex; align-items: center; gap: 0.25rem; }
        .nav-menu a {
            color: var(--text-light); font-size: 0.9rem; font-weight: 500;
            padding: 0.55rem 1rem; border-radius: 10px;
        }
        .nav-menu a:hover { color: var(--text); background: var(--surface); }
        .nav-menu .cta-nav {
            background: var(--navy); color: var(--white) !important;
            font-weight: 600; margin-left: 0.6rem;
            padding: 0.65rem 1.6rem; border-radius: 50px;
        }
        .nav-menu .cta-nav:hover { background: #1a2744; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(15,23,42,0.2); }

        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
        .hamburger span { width: 26px; height: 2.5px; background: var(--text); border-radius: 10px; transition: 0.3s; }
        .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); }

        /* ========== HERO ========== */
        .hero {
            min-height: 100vh; display: flex; align-items: center;
            position: relative; overflow: hidden; padding: 7rem 5% 4rem;
            background-color: #d2d4d6;
        }
        .hero-grid {
            position: relative; z-index: 2;
            display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
            max-width: 1400px; margin: 0 auto; width: 100%;
        }
        .hero-left { animation: heroSlide 1s ease both; }
        @keyframes heroSlide { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }

        .hero-badge {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: var(--surface); border: 1px solid var(--border);
            padding: 0.5rem 1.2rem; border-radius: 50px;
            font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--sky); margin-bottom: 1.5rem;
        }
        .hero-badge i { color: var(--yellow); font-size: 0.7rem; }

        .hero h1 {
            font-size: clamp(2.8rem, 5vw, 4.2rem); line-height: 1.08;
            letter-spacing: -0.03em; margin-bottom: 1.5rem; color: var(--text);
        }
        .hero h1 .sky-text { color: var(--sky); }
        .hero h1 .yellow-text { color: var(--yellow); font-style: italic; }

        .hero-desc { font-size: 1.1rem; color: var(--text-light); line-height: 1.8; max-width: 520px; margin-bottom: 2.5rem; }
        .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

        .btn {
            display: inline-flex; align-items: center; gap: 0.6rem;
            padding: 1rem 2rem; border-radius: 60px; font-size: 0.95rem;
            font-weight: 600; cursor: pointer; border: none; font-family: inherit; transition: 0.35s;
        }
        .btn-sky { background: linear-gradient(135deg, var(--sky), #0ea5e9); color: var(--white); }
        .btn-sky:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(56,189,248,0.4); }
        .btn-navy { background: var(--navy); color: var(--white); }
        .btn-navy:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(15,23,42,0.3); }
        .btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
        .btn-outline:hover { border-color: var(--sky); color: var(--sky); background: rgba(56,189,248,0.04); }
        .btn-yellow { background: linear-gradient(135deg, var(--yellow), #e5b800); color: var(--navy); }
        .btn-yellow:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(250,204,21,0.4); }

        .hero-right { animation: heroImg 1s ease 0.3s both; position: relative; }
        @keyframes heroImg { from { opacity: 0; transform: translateX(40px) scale(0.95); } to { opacity: 1; transform: translateX(0) scale(1); } }

        .hero-image-card {
            position: relative; border-radius: 24px; overflow: hidden;
            box-shadow: 0 40px 80px rgba(0,0,0,0.08);
        }
        .hero-image-card img { width: 100%; height: 520px; object-fit: cover; }

        .floating-stat {
            position: absolute; background: var(--white);
            border: 1px solid var(--border); border-radius: 16px; padding: 1rem 1.3rem; z-index: 3;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        }
        .floating-stat-1 { bottom: 25px; left: -20px; animation: float1 5s ease-in-out infinite; }
        .floating-stat-2 { top: 25px; right: -20px; animation: float2 5s ease-in-out infinite 1.5s; }
        @keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
        @keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(12px)} }
        .floating-stat .fs-value { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--text); }
        .floating-stat .fs-label { font-size: 0.72rem; color: var(--text-muted); }

        .hero-stats-bar {
            position: absolute; bottom: 3rem; left: 5%; right: 5%;
            display: flex; justify-content: center; gap: 2.5rem; z-index: 3; flex-wrap: wrap;
        }
        .stat-chip {
            display: flex; align-items: center; gap: 0.7rem;
            background: var(--white); border: 1px solid var(--border); padding: 0.65rem 1.4rem; border-radius: 60px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        }
        .stat-chip i { font-size: 1rem; }
        .stat-chip .chip-num { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; }
        .stat-chip .chip-label { font-size: 0.75rem; color: var(--text-muted); }

        /* ========== COMMON ========== */
        section { padding: 6rem 5%; }
        .container { max-width: 1300px; margin: 0 auto; }
        .section-label {
            display: inline-flex; align-items: center; gap: 0.5rem;
            font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem;
        }
        .section-label.sky { color: var(--sky); }
        .section-label.sky::before { content: ''; width: 30px; height: 2px; background: var(--sky); }
        .section-label.yellow { color: var(--yellow); }
        .section-label.yellow::before { content: ''; width: 30px; height: 2px; background: var(--yellow); }
        .section-label.navy { color: var(--navy); }
        .section-label.navy::before { content: ''; width: 30px; height: 2px; background: var(--navy); }

        .section-title { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 1rem; color: var(--text); }
        .section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 600px; line-height: 1.7; }

        /* ========== ABOUT ========== */
        .about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
        .about-image-wrap { position: relative; }
        .about-image-wrap img { width: 100%; height: 550px; object-fit: cover; border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
        .about-image-wrap::before {
            content: ''; position: absolute; top: 20px; left: 20px; right: -15px; bottom: -15px;
            border: 2px solid var(--sky); border-radius: 24px; z-index: -1; opacity: 0.25;
        }
        .about-year-badge {
            position: absolute; bottom: -15px; right: -15px;
            background: var(--sky); color: var(--white);
            padding: 0.8rem 1.5rem; border-radius: 14px; font-weight: 800; font-size: 0.85rem;
            box-shadow: 0 10px 30px rgba(56,189,248,0.3);
        }
        .about-content .section-subtitle { margin-bottom: 1.5rem; }
        .about-text { color: var(--text-light); line-height: 1.85; margin-bottom: 0.8rem; text-align: justify; font-size: 0.95rem; }
        .about-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 2rem 0; }
        .about-check { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; font-weight: 500; color: var(--text); }
        .about-check i { color: var(--sky); font-size: 0.8rem; }

        /* ========== COUNTER ========== */
        .counter-section { padding: 5rem 5%; background-color:#E2E8F0;}
        .counter-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
        .counter-block { text-align: center; padding: 2rem; border-left: 1px solid var(--border); }
        .counter-block:first-child { border-left: none; }
        .counter-block .cb-icon {
            width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1.2rem; font-size: 1.4rem;
        }
        .counter-block:nth-child(1) .cb-icon, .counter-block:nth-child(3) .cb-icon { background: rgba(56,189,248,0.1); color: var(--sky); }
        .counter-block:nth-child(2) .cb-icon, .counter-block:nth-child(4) .cb-icon { background: rgba(250,204,21,0.15); color: #b8860b; }
        .counter-block h3 { font-size: 3rem; margin-bottom: 0.3rem; color: var(--text); }
        .counter-block p { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }

        /* ========== VISION & MISSION ========== */
        .vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
        .vm-card {
            border: 1px solid var(--border); border-radius: 24px; padding: 3rem;
            position: relative; overflow: hidden; transition: 0.4s;
        }
        .vm-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
        .vm-card:nth-child(1):hover { border-color: var(--sky); }
        .vm-card:nth-child(2):hover { border-color: var(--yellow); }
        .vm-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; }
        .vm-card:nth-child(1)::before { background: linear-gradient(90deg, var(--sky), transparent); }
        .vm-card:nth-child(2)::before { background: linear-gradient(90deg, var(--yellow), transparent); }
        .vm-icon {
            width: 70px; height: 70px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
            font-size: 1.6rem; margin-bottom: 1.5rem;
        }
        .vm-card:nth-child(1) .vm-icon { background: rgba(56,189,248,0.1); color: var(--sky); }
        .vm-card:nth-child(2) .vm-icon { background: rgba(250,204,21,0.15); color: #b8860b; }
        .vm-card h3 { font-size: 1.8rem; margin-bottom: 1rem; }
        .vm-card p { color: var(--text-light); line-height: 1.8; }

        /* ========== WHY CHOOSE US ========== */
        .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;  }
        .why-card {
            border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem 2rem;
            transition: 0.4s; position: relative; overflow: hidden; 
        }
        .why-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
        .why-card:nth-child(1):hover, .why-card:nth-child(4):hover { border-color: var(--sky); }
        .why-card:nth-child(2):hover, .why-card:nth-child(5):hover { border-color: var(--yellow); }
        .why-card:nth-child(3):hover, .why-card:nth-child(6):hover { border-color: var(--sky); }
        .why-icon {
            width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; margin-bottom: 1.5rem; transition: 0.4s;
        }
        .why-card:nth-child(odd) .why-icon { background: rgba(56,189,248,0.1); color: var(--sky); }
        .why-card:nth-child(even) .why-icon { background: rgba(250,204,21,0.15); color: #b8860b; }
        .why-card:hover .why-icon { transform: scale(1.1); }
        .why-card h4 { font-size: 1.15rem; margin-bottom: 0.7rem; }
        .why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

        /* ========== WORK PROCESS ========== */
        .process-section { position: relative; overflow: hidden; }
        .process-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
        .process-track::before {
            content: ''; position: absolute; top: 55px; left: 12.5%; width: 75%; height: 2px;
            background: var(--border);
        }
        .process-step { text-align: center; position: relative; }
        .step-circle {
            width: 110px; height: 110px; border-radius: 50%; background: var(--white);
            border: 2px solid var(--border); display: flex; flex-direction: column; align-items: center; justify-content: center;
            margin: 0 auto 1.5rem; position: relative; z-index: 1; transition: 0.4s;
        }
        .process-step:hover .step-circle { transform: scale(1.08); }
        .process-step:nth-child(odd):hover .step-circle { border-color: var(--sky); }
        .process-step:nth-child(even):hover .step-circle { border-color: var(--yellow); }
        .step-circle i { font-size: 1.8rem; transition: 0.4s; }
        .process-step:nth-child(odd) .step-circle i { color: var(--sky); }
        .process-step:nth-child(even) .step-circle i { color: var(--yellow); }
        .step-num {
            position: absolute; top: -8px; right: -8px; width: 30px; height: 30px; border-radius: 50%;
            font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; color: var(--white);
        }
        .process-step:nth-child(odd) .step-num { background: var(--sky); }
        .process-step:nth-child(even) .step-num { background: var(--yellow); color: var(--navy); }
        .process-step h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }
        .process-step p { font-size: 0.85rem; color: var(--text-muted); max-width: 200px; margin: 0 auto; }

        /* ========== SERVICE PLANS ========== */
        .plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
        .plan-card {
            border: 1px solid var(--border); border-radius: 24px; padding: 2.5rem 2rem;
            text-align: center; transition: 0.4s; position: relative;
        }
        .plan-card.popular { border-color: var(--yellow); border-width: 2px; transform: scale(1.04); }
        .plan-card.popular::before {
            content: '★ Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
            background: var(--yellow); color: var(--navy);
            padding: 0.3rem 1.2rem; border-radius: 30px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
        }
        .plan-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
        .plan-card.popular:hover { transform: scale(1.04) translateY(-10px); }
        .plan-card:nth-child(1):hover, .plan-card:nth-child(3):hover { border-color: var(--sky); }
        .plan-emoji { font-size: 2.5rem; margin-bottom: 1rem; }
        .plan-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
        .plan-price { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; margin: 1rem 0; }
        .plan-card:nth-child(1) .plan-price, .plan-card:nth-child(3) .plan-price { color: var(--sky); }
        .plan-card:nth-child(2) .plan-price { color: var(--yellow); }
        .plan-price small { font-size: 1rem; color: var(--text-muted); font-weight: 400; font-family: 'Outfit', sans-serif; }
        .plan-list { list-style: none; margin: 1.5rem 0 2rem; text-align: left; }
        .plan-list li { padding: 0.5rem 0; font-size: 0.88rem; color: var(--text-light); display: flex; align-items: center; gap: 0.6rem; }
        .plan-list li i { font-size: 0.75rem; }
        .plan-card:nth-child(1) .plan-list li i, .plan-card:nth-child(3) .plan-list li i { color: var(--sky); }
        .plan-card:nth-child(2) .plan-list li i { color: var(--yellow); }
        .plan-card .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
        .btn-outline-sky { background: transparent; border: 1.5px solid var(--sky); color: var(--sky); }
        .btn-outline-sky:hover { background: rgba(56,189,248,0.06); transform: translateY(-3px); }
        .btn-outline-yellow { background: transparent; border: 1.5px solid var(--yellow); color: #b8860b; }
        .btn-outline-yellow:hover { background: rgba(250,204,21,0.08); transform: translateY(-3px); }

        /* ========== SERVICES ========== */
        .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
        .service-card {
            border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem;
            display: flex; gap: 1.5rem; transition: 0.4s; height: 100%;
        }
        .service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
        .service-card:nth-child(odd):hover { border-color: var(--sky); }
        .service-card:nth-child(even):hover { border-color: var(--yellow); }
        .service-icon-box {
            width: 62px; height: 62px; min-width: 62px; border-radius: 16px;
            display: flex; align-items: center; justify-content: center; font-size: 1.4rem; transition: 0.4s;
        }
        .service-card:nth-child(odd) .service-icon-box { background: rgba(56,189,248,0.1); color: var(--sky); }
        .service-card:nth-child(even) .service-icon-box { background: rgba(250,204,21,0.15); color: #b8860b; }
        .service-card:hover .service-icon-box { transform: scale(1.1); }
        .service-content h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.8rem; }
        .service-content p { font-size: 0.92rem; color: var(--text-light); line-height: 1.85; margin-bottom: 1rem; }
        .link-arrow { font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.3s; }
        .service-card:nth-child(odd) .link-arrow { color: var(--sky); }
        .service-card:nth-child(even) .link-arrow { color: var(--yellow); }
        .link-arrow:hover { gap: 0.8rem; }

        /* ========== BOOKING FORM ========== */
        .booking-section { position: relative; }
        .booking-wrapper {
            max-width: 900px; margin: 0 auto;
            border: 1px solid var(--border); border-radius: 24px; padding: 3rem;
            position: relative; overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.04);
        }
        .booking-wrapper::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
            background: linear-gradient(90deg, var(--sky), var(--yellow), var(--sky));
        }
        .booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
        .b-field { display: flex; flex-direction: column; gap: 0.4rem; }
        .b-field.full { grid-column: 1 / -1; }
        .b-field label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
        .b-field input, .b-field select, .b-field textarea {
            background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 0.9rem 1.2rem;
            color: var(--text); font-family: inherit; font-size: 0.95rem; transition: 0.3s;
        }
        .b-field input:focus, .b-field select:focus, .b-field textarea:focus { outline: none; border-color: var(--sky); background: var(--white); }
        .b-field textarea { resize: vertical; min-height: 100px; }
        .b-field select option { background: var(--white); }
        .booking-submit { grid-column: 1 / -1; margin-top: 0.5rem; }

        /* ========== REVIEWS ========== */
        .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
        .review-card {
            border: 1px solid var(--border); border-radius: 18px; padding: 2rem; transition: 0.4s;
        }
        .review-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.06); }
        .review-card:nth-child(odd):hover { border-color: var(--sky); }
        .review-card:nth-child(even):hover { border-color: var(--yellow); }
        .review-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
        .review-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
        .review-card:nth-child(odd) .review-avatar { border: 2px solid var(--sky); }
        .review-card:nth-child(even) .review-avatar { border: 2px solid var(--yellow); }
        .review-name h4 { font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 700; }
        .review-stars { font-size: 0.72rem; }
        .review-card:nth-child(odd) .review-stars { color: var(--sky); }
        .review-card:nth-child(even) .review-stars { color: var(--yellow); }
        .review-quote { font-size: 2rem; opacity: 0.15; line-height: 1; margin-bottom: 0.5rem; font-family: serif; color: var(--text); }
        .review-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; font-style: italic; }

        /* ========== FAQ ========== */
        .faq-list { max-width: 850px; margin: 0 auto; }
        .faq-item { border-bottom: 1px solid var(--border); }
        .faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; cursor: pointer; transition: 0.3s; }
        .faq-q:hover { color: var(--sky); }
        .faq-q h4 { font-family: 'Outfit', sans-serif; font-size: 1.02rem; font-weight: 600; }
        .faq-toggle {
            width: 36px; height: 36px; min-width: 36px; border-radius: 50%; background: var(--surface);
            border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
            color: var(--sky); transition: 0.3s;
        }
        .faq-item.active .faq-toggle { background: var(--sky); color: var(--white); border-color: var(--sky); transform: rotate(45deg); }
        .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
        .faq-item.active .faq-a { max-height: 300px; padding-bottom: 1.5rem; }
        .faq-a p { color: var(--text-light); line-height: 1.8; font-size: 0.93rem; }

        /* ========== CTA ========== */
        .cta-section { padding: 5rem 5%; }
        .cta-inner { text-align: center; max-width: 700px; margin: 0 auto; }
        .cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
        .cta-section p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 2rem; }

        /* ========== CONTACT ========== */
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
        .contact-info-cards { display: grid; gap: 1rem; margin-top: 2rem; }
        .c-card {
            border: 1px solid var(--border); border-radius: 14px; padding: 1.4rem;
            display: flex; align-items: center; gap: 1rem; transition: 0.3s;
        }
        .c-card:hover { transform: translateX(5px); }
        .c-card:nth-child(1):hover, .c-card:nth-child(3):hover { border-color: var(--sky); }
        .c-card:nth-child(2):hover, .c-card:nth-child(4):hover { border-color: var(--yellow); }
        .c-card-icon {
            width: 48px; height: 48px; min-width: 48px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
        }
        .c-card:nth-child(1) .c-card-icon, .c-card:nth-child(3) .c-card-icon { background: rgba(56,189,248,0.1); color: var(--sky); }
        .c-card:nth-child(2) .c-card-icon, .c-card:nth-child(4) .c-card-icon { background: rgba(250,204,21,0.15); color: #b8860b; }
        .c-card h4 { font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 700; margin-bottom: 0.15rem; }
        .c-card p, .c-card a { font-size: 0.88rem; color: var(--text-light); text-decoration: none; transition: 0.3s; }
        .c-card a:hover { color: var(--sky); }
        .contact-form-box {
            border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        }
        .contact-form-box h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
        .cf-field { margin-bottom: 1rem; }
        .cf-field input, .cf-field textarea {
            width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
            padding: 0.9rem 1.2rem; color: var(--text); font-family: inherit; font-size: 0.95rem; transition: 0.3s;
        }
        .cf-field input:focus, .cf-field textarea:focus { outline: none; border-color: var(--sky); }
        .cf-field textarea { min-height: 110px; resize: vertical; }

        /* ========== FOOTER ========== */
        footer { border-top: 1px solid var(--border); padding: 4rem 5% 2rem; }
        .footer-grid {
            display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem;
            max-width: 1300px; margin: 0 auto; padding-bottom: 3rem; border-bottom: 1px solid var(--border);
        }
        .footer-col h4 {
            font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.5rem; color: var(--text);
        }
        .footer-col:nth-child(1) h4 { color: var(--sky); }
        .footer-col:nth-child(2) h4 { color: var(--yellow); }
        .footer-col:nth-child(3) h4 { color: var(--sky); }
        .footer-col:nth-child(4) h4 { color: var(--yellow); }
        .footer-col p { color: var(--text-light); line-height: 1.8; font-size: 0.88rem; }
        .footer-col a { color: var(--text-light); transition: 0.3s; font-size: 0.88rem; }
        .footer-col a:hover { color: var(--sky); padding-left: 5px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.5rem; }
        .newsletter-box { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
        .newsletter-box input {
            flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
            padding: 0.8rem 1rem; color: var(--text); font-family: inherit; font-size: 0.88rem;
        }
        .newsletter-box input::placeholder { color: var(--text-muted); }
        .newsletter-box input:focus { outline: none; border-color: var(--sky); }
        .newsletter-box button {
            background: var(--sky); color: var(--white); border: none;
            padding: 0.8rem 1.4rem; border-radius: 12px; font-weight: 700; font-family: inherit;
            cursor: pointer; transition: 0.3s; white-space: nowrap;
        }
        .newsletter-box button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(56,189,248,0.3); }
        .footer-bottom {
            max-width: 1300px; margin: 0 auto; padding-top: 2rem;
            display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
        }
        .footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }
        .footer-bottom-links { display: flex; gap: 2rem; }
        .footer-bottom-links a { color: var(--text-muted); font-size: 0.82rem; transition: 0.3s; }
        .footer-bottom-links a:hover { color: var(--sky); }

        /* ========== SCROLL REVEAL ========== */
        .reveal { opacity: 0; transform: translateY(40px); transition: 0.8s cubic-bezier(0.4,0,0.2,1); }
        .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; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-right { display: none; }
            .hero-desc { margin: 0 auto 2rem; }
            .hero-actions { justify-content: center; }
            .hero-stats-bar { display: none; }
            .about-grid { grid-template-columns: 1fr; gap: 3rem; }
            .vm-grid { grid-template-columns: 1fr; }
            .why-grid { grid-template-columns: repeat(2, 1fr); }
            .process-track { grid-template-columns: repeat(2, 1fr); }
            .process-track::before { display: none; }
            .plans-grid { grid-template-columns: 1fr; max-width: 400px; }
            .plan-card.popular { transform: scale(1); }
            .plan-card.popular:hover { transform: translateY(-10px); }
            .services-grid { grid-template-columns: 1fr; }
            .reviews-grid { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .counter-grid { grid-template-columns: repeat(2, 1fr); }
            .counter-block { border-left: none; }
        }
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed; top: 0; right: -100%; width: 80%; max-width: 350px; height: 100vh;
                background: var(--white); border-left: 1px solid var(--border); flex-direction: column;
                padding: 5rem 2rem 2rem; transition: right 0.4s ease; gap: 0; align-items: stretch;
                box-shadow: -10px 0 40px rgba(0,0,0,0.05);
            }
            .nav-menu.open { right: 0; }
            .nav-menu a { padding: 1rem; border-bottom: 1px solid var(--border); border-radius: 0; }
            .nav-menu .cta-nav { margin-left: 0; text-align: center; border-radius: 50px; margin-top: 1rem; border: none; }
            .hamburger { display: flex; }
            .why-grid { grid-template-columns: 1fr; }
            .process-track { grid-template-columns: 1fr; }
            .booking-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .counter-grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.3rem; }
            .about-checks { grid-template-columns: 1fr; }
            .service-card { flex-direction: column; }
        }
