
        :root {
            --primary: #6366F1;
            --primary-dark: #4F46E5;
            --secondary: #0EA5E9;
            --accent: #F59E0B;
            --success: #10B981;
            --dark: #0F172A;
            --dark-secondary: #1E293B;
            --light: #F8FAFC;
            --white: #FFFFFF;
            --gray: #64748B;
            --gray-light: #94A3B8;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
            --shadow-sm: 0 4px 20px rgba(99, 102, 241, 0.08);
            --shadow-md: 0 12px 40px rgba(99, 102, 241, 0.12);
            --shadow-lg: 0 25px 60px rgba(99, 102, 241, 0.15);
            --shadow-xl: 0 30px 80px rgba(99, 102, 241, 0.18);
            --radius-sm: 12px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-body);
            color: var(--dark);
            background: var(--white);
            overflow-x: hidden;
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        p {
            font-size: 1rem;
            color: var(--gray);
            line-height: 1.75;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 50px;
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.45);
        }

        .btn-outline {
            background: transparent;
            color: var(--dark);
            border: 2px solid var(--dark);
        }

        .btn-outline:hover {
            background: var(--dark);
            color: white;
        }

        .btn-white {
            background: white;
            color: var(--dark);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .btn-gradient {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            color: white;
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.35);
        }

        .btn-gradient:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(14, 165, 233, 0.45);
        }

        /* ===== SECTIONS ===== */
        section {
            padding: 100px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(14, 165, 233, 0.1));
            padding: 10px 22px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            color: var(--dark);
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            padding: 25px 0;
            transition: all 0.4s ease;
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
            padding: 15px 0;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            transition: color 0.3s ease;
        }

        .navbar.scrolled .logo {
            color: var(--dark);
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            animation: iconPulse 2s infinite;
        }

        @keyframes iconPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 36px;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding: 8px 0;
            transition: color 0.3s;
        }

        .navbar.scrolled .nav-menu a {
            color: var(--dark);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }

        .nav-menu a:hover { color: var(--secondary); }
        .nav-menu a:hover::after { width: 100%; }

        .nav-cta {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%) !important;
            color: white !important;
            padding: 13px 28px !important;
            border-radius: 50px !important;
            font-weight: 600 !important;
            box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3) !important;
        }

        .nav-cta::after { display: none !important; }
        .nav-cta:hover {
            transform: translateY(-2px) !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--white);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .hamburger span {
            background: var(--dark);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 50%, #334155 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: url('https://images.pexels.com/photos/5900186/pexels-photo-5900186.jpeg') center/cover no-repeat;
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 120px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(99, 102, 241, 0.15);
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--secondary);
            border: 1px solid rgba(14, 165, 233, 0.3);
            margin-bottom: 28px;
            animation: fadeInUp 0.8s forwards;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--white);
            animation: fadeInUp 0.8s 0.2s forwards;
            opacity: 0;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 480px;
            margin-bottom: 36px;
            animation: fadeInUp 0.8s 0.4s forwards;
            opacity: 0;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s 0.6s forwards;
            opacity: 0;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            animation: fadeInUp 0.8s 0.8s forwards;
            opacity: 0;
        }

        .stat-item h3 {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 6px;
        }

        .stat-item p {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.5);
            margin: 0;
        }

        /* ===== ABOUT SECTION ===== */
        .about-section {
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 45% 1fr;
            gap: 70px;
            align-items: start;
            margin-top: 70px;
        }

        .about-img-container {
            position: relative;
        }

        .about-img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            transition: transform 0.5s ease;
        }

        .about-img:hover { transform: scale(1.03); }

        .years-badge {
            position: absolute;
            bottom: -25px;
            right: -25px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 28px 34px;
            border-radius: var(--radius-md);
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

        .years-badge h3 {
            font-size: 2.4rem;
            margin-bottom: 6px;
        }

        .years-badge p {
            font-size: 0.88rem;
            opacity: 0.9;
            margin: 0;
        }

        .about-text-col {
            padding-top: 15px;
        }

        .about-text-col .section-label { margin-bottom: 16px; }
        .about-text-col h2 { color: var(--dark); margin-bottom: 20px; }

        .about-text-col p {
            font-size: 1rem;
            line-height: 1.85;
            margin-bottom: 18px;
            text-align: justify;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin: 24px 0 28px;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: var(--dark);
            font-size: 0.95rem;
        }

        .highlight-item i {
            color: var(--accent);
            font-size: 1.1rem;
        }

        /* ===== COUNTERS ===== */
        .counters-section {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
            position: relative;
            overflow: hidden;
        }

        .counters-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cfill='none' stroke='%236366F1' stroke-width='2' d='M0 160L720 320L1440 0'/%3E%3C/svg%3E");
            opacity: 0.05;
        }

        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .counter-box {
            text-align: center;
            padding: 35px 20px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-md);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .counter-box:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .counter-icon-circle {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 1.6rem;
            color: white;
        }

        .counter-number {
            font-family: var(--font-heading);
            font-size: 2.6rem;
            color: white;
            margin-bottom: 8px;
        }

        .counter-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }

        /* ===== VISION MISSION ===== */
        .vm-section {
            background: var(--light);
        }

        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 35px;
            margin-top: 60px;
        }

        .vm-card {
            background: white;
            padding: 45px 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .vm-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .vm-icon {
            font-size: 2.5rem;
            margin-bottom: 18px;
            display: block;
        }

        .vm-card h3 {
            color: var(--dark);
            margin-bottom: 16px;
        }

        .vm-card p {
            color: var(--gray);
            line-height: 1.8;
            font-size: 0.98rem;
        }

        /* ===== WHY CHOOSE US ===== */
        .features-section {
            background: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 60px;
        }

        .feature-card {
            background: var(--light);
            padding: 35px 28px;
            border-radius: var(--radius-lg);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid transparent;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .feature-card > * { position: relative; z-index: 1; }

        .feature-card:hover::after { opacity: 1; }
        .feature-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .feature-card:hover .feat-icon,
        .feature-card:hover h3,
        .feature-card:hover p { color: white; }

        .feat-icon {
            font-size: 2.8rem;
            margin-bottom: 16px;
            display: block;
            transition: color 0.4s ease;
        }

        .feature-card h3 {
            font-size: 1.15rem;
            color: var(--dark);
            margin-bottom: 12px;
            transition: color 0.4s ease;
        }

        .feature-card p {
            font-size: 0.93rem;
            color: var(--gray);
            line-height: 1.7;
            transition: color 0.4s ease;
        }

        /* ===== WORK PROCESS ===== */
        .process-section {
            background: var(--light);
        }

        .process-timeline {
            position: relative;
            max-width: 900px;
            margin: 60px auto 0;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 50px;
            position: relative;
        }

        .step-num {
            width: 85px;
            height: 85px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            position: relative;
            z-index: 2;
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
            flex-shrink: 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .process-step:hover .step-num {
            transform: scale(1.15) rotate(360deg);
        }

        .step-content {
            flex: 1;
            padding: 28px 32px;
            background: white;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            margin-left: 30px;
            transition: all 0.3s ease;
        }

        .step-content:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-md);
        }

        .step-content h3 {
            color: var(--dark);
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .step-content p {
            font-size: 0.92rem;
            color: var(--gray);
            margin: 0;
            line-height: 1.7;
        }

        /* ===== SERVICE PLANS ===== */
        .plans-section {
            background: var(--white);
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
            align-items: stretch;
        }

        .plan-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            border: 2px solid transparent;
        }

        .plan-card.featured {
            border-color: var(--primary);
            transform: scale(1.04);
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .plan-card.featured:hover { 
            transform: scale(1.04) translateY(-10px); 
        }

        .popular-tag {
            position: absolute;
            top: 18px;
            right: 18px;
            background: var(--dark);
            color: white;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 600;
            z-index: 2;
        }

        .plan-header {
            padding: 40px 30px;
            text-align: center;
            background: linear-gradient(135deg, var(--light), #E2E8F0);
            border-bottom: 1px solid rgba(99, 102, 241, 0.1);
        }

        .plan-card.featured .plan-header {
            background: linear-gradient(135deg, var(--dark), var(--dark-secondary));
            border-bottom: none;
        }

        .plan-icon { font-size: 2.5rem; margin-bottom: 12px; }
        .plan-name { font-size: 1.3rem; color: var(--dark); margin-bottom: 10px; }
        .plan-card.featured .plan-name { color: white; }

        .plan-price {
            font-family: var(--font-heading);
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--primary);
        }

        .plan-card.featured .plan-price { color: var(--accent); }
        .plan-price span { font-size: 1rem; font-weight: 400; opacity: 0.8; }

        .plan-body { padding: 30px 26px; }

        .plan-list {
            list-style: none;
            margin-bottom: 26px;
        }

        .plan-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px 0;
            font-size: 0.93rem;
            color: var(--gray);
            border-bottom: 1px solid rgba(99, 102, 241, 0.08);
        }

        .plan-list li:last-child { border-bottom: none; }
        .plan-list i { color: var(--success); font-size: 1rem; }
        .plan-card.featured .plan-list i { color: var(--accent); }
        .plan-card.featured .plan-list li { color: rgba(255,255,255,0.85); }

        .plan-btn-full { width: 100%; justify-content: center; }

        /* ===== SERVICES ===== */
        .services-section {
            background: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            margin-top: 60px;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .svc-icon-area {
            height: 180px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .svc-icon-area i {
            font-size: 4rem;
            color: white;
            opacity: 0.95;
            transition: all 0.4s ease;
        }

        .service-card:hover .svc-icon-area i {
            transform: scale(1.15) rotate(5deg);
        }

        .svc-body {
            padding: 28px;
        }

        .svc-tag {
            display: inline-block;
            background: var(--light);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            margin-bottom: 14px;
        }

        .svc-body h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 14px;
        }

        .svc-body p {
            font-size: 0.94rem;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 7;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            font-size: 0.94rem;
            transition: all 0.3s ease;
        }

        .read-more-link:hover { gap: 14px; }

        /* ===== BOOKING FORM ===== */
        .booking-section {
            background: linear-gradient(160deg, #F1F5F9 0%, var(--light) 50%, #F1F5F9 100%);
        }

        .booking-layout {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 60px;
            margin-top: 60px;
            align-items: start;
        }

        .booking-info h2 {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            color: var(--dark);
            margin-bottom: 20px;
        }

        .booking-info > p {
            font-size: 1.05rem;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .booking-perks {
            list-style: none;
        }

        .booking-perks li {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 0;
            font-weight: 500;
            color: var(--dark);
        }

        .perk-icon {
            width: 42px;
            height: 42px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1rem;
            flex-shrink: 0;
            box-shadow: var(--shadow-sm);
        }

        .booking-form-container {
            background: white;
            padding: 44px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #E2E8F0;
            border-radius: var(--radius-sm);
            font-family: var(--font-body);
            font-size: 0.96rem;
            outline: none;
            transition: all 0.3s ease;
            background: var(--light);
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
        }

        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236366F1' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 18px;
        }

        .form-textarea {
            resize: vertical;
            min-height: 110px;
        }

        .submit-btn {
            width: 100%;
            justify-content: center;
            padding: 17px;
            font-size: 1rem;
        }

        .success-msg {
            display: none;
            background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
            color: var(--dark);
            padding: 28px;
            border-radius: var(--radius-md);
            text-align: center;
            margin-top: 18px;
            animation: slideIn 0.5s ease;
        }

        .success-msg.visible { display: block; }

        @keyframes slideIn {
            from { opacity: 0; transform: translateY(-12px) scale(0.96); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        .success-msg i { font-size: 2.4rem; margin-bottom: 10px; display: block; color: var(--success); }
        .success-msg h3 { color: var(--dark); margin-bottom: 6px; }

        /* ===== REVIEWS ===== */
        .reviews-section {
            background: var(--white);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
            margin-top: 60px;
        }

        .review-card {
            background: var(--light);
            padding: 32px 28px;
            border-radius: var(--radius-lg);
            position: relative;
            transition: all 0.4s ease;
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }

        .rev-quote {
            font-size: 3rem;
            color: var(--primary);
            opacity: 0.15;
            font-family: Georgia, serif;
            position: absolute;
            top: 16px;
            right: 24px;
            line-height: 1;
        }

        .rev-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 18px;
        }

        .rev-stars i { color: #FBBF24; font-size: 0.98rem; }

        .rev-text {
            font-style: italic;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 22px;
            font-size: 0.95rem;
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .author-avatar {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .author-details h4 {
            font-size: 1rem;
            color: var(--dark);
            margin-bottom: 4px;
        }

        .author-details span {
            font-size: 0.84rem;
            color: var(--gray);
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--light);
        }

        .faq-container {
            max-width: 850px;
            margin: 60px auto 0;
        }

        .faq-item {
            background: white;
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .faq-item.open {
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            width: 100%;
            padding: 24px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            cursor: pointer;
            font-family: var(--font-body);
        }

        .faq-question h3 {
            font-size: 1.02rem;
            font-weight: 600;
            color: var(--dark);
            margin: 0;
            padding-right: 18px;
        }

        .faq-toggle {
            width: 38px;
            height: 38px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .faq-item.open .faq-toggle {
            background: var(--primary);
            color: white;
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-inner {
            padding: 0 28px 24px;
            color: var(--gray);
            line-height: 1.8;
            font-size: 0.94rem;
        }

        .faq-item.open .faq-answer { max-height: 350px; }

        /* ===== CTA ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 90% 50%, rgba(99, 102, 241, 0.15), transparent);
        }

        .cta-inner {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-inner h2 {
            color: white;
            font-size: clamp(2rem, 3.8vw, 2.8rem);
            margin-bottom: 18px;
        }

        .cta-inner p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.08rem;
            margin-bottom: 32px;
            max-width: 580px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== CONTACT ===== */
        .contact-section {
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 380px 1fr;
            gap: 45px;
            margin-top: 60px;
        }

        .contact-cards-col {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .contact-card {
            background: var(--light);
            padding: 24px 22px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-md);
        }

        .contact-icon-bx {
            width: 54px;
            height: 54px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-card h4 {
            font-size: 1rem;
            color: var(--dark);
            margin-bottom: 4px;
        }

        .contact-card p,
        .contact-card a {
            font-size: 0.9rem;
            color: var(--gray);
            margin: 0;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-card a:hover { color: var(--primary); }

        .contact-form-box {
            background: var(--light);
            padding: 44px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
        }

        .contact-form-box h3 {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 45px;
            padding-bottom: 60px;
        }

        .footer-col h4 {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 14px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 36px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.8;
            margin-bottom: 22px;
            font-size: 0.93rem;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-4px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li { margin-bottom: 12px; }

        .footer-links a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 0.91rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 6px;
        }

        .footer-links a i { font-size: 0.7rem; color: var(--accent); }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .newsletter-input {
            padding: 14px 18px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-sm);
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-family: var(--font-body);
            font-size: 0.92rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input::placeholder { color: rgba(255, 255, 255, 0.45); }

        .newsletter-input:focus {
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.1);
        }

        .newsletter-btn {
            padding: 14px 24px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: white;
            border: none;
            border-radius: var(--radius-sm);
            font-family: var(--font-body);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.35);
        }

        .footer-bar {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bar p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.86rem;
            margin: 0;
        }

        .legal-links {
            display: flex;
            gap: 24px;
        }

        .legal-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.86rem;
            transition: color 0.3s;
        }

        .legal-links a:hover { color: var(--accent); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1150px) {
            .hero { 
                grid-template-columns: 1fr; 
                text-align: center; 
                padding: 130px 40px 80px;
            }
            
            .hero::before { display: none; }
            .hero-content { padding: 120px 0 80px; }
            .hero-actions { justify-content: center; }
            .hero-stats { justify-content: center; }
            
            .plans-grid { 
                grid-template-columns: 1fr; 
                max-width: 450px; 
                margin: 60px auto 0; 
            }
            .plan-card.featured { transform: none; }
            .plan-card.featured:hover { transform: translateY(-10px); }
            
            .services-grid { grid-template-columns: 1fr; }
            .reviews-grid { 
                grid-template-columns: 1fr; 
                max-width: 500px; 
                margin: 60px auto 0; 
            }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 100px 35px;
                gap: 22px;
                box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
                transition: right 0.4s ease;
            }

            .nav-menu.active { right: 0; }
            .hamburger { display: flex; }

            .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); 
            }

            .about-grid, .vm-grid, .booking-layout, .contact-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .counters-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: 1fr; }
            .process-timeline::before { left: 45px; }

            .process-step {
                flex-direction: column;
                padding-left: 105px;
            }

            .step-num {
                position: absolute;
                left: 0;
                margin: 0;
            }

            .step-content { margin-left: 0; }
        }

        @media (max-width: 768px) {
            section { padding: 80px 0; }
            .container { padding: 0 20px; }
            .navbar { padding: 16px 20px; }
            .hero { padding: 110px 20px 60px; }

            .about-img { height: 400px; }
            .years-badge { padding: 20px 26px; }
            .years-badge h3 { font-size: 2rem; }

            .about-highlights { grid-template-columns: 1fr; }
            .counters-grid { 
                grid-template-columns: 1fr; 
                max-width: 280px; 
                margin: 0 auto; 
            }
            .features-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bar { flex-direction: column; text-align: center; }

            .booking-form-container { padding: 32px 24px; }
            .contact-form-box { padding: 32px 24px; }
            .form-row { grid-template-columns: 1fr; }
            .hero-stats { flex-direction: column; gap: 22px; align-items: center; }
        }

        html { scroll-padding-top: 90px; }
