
        :root {
            --navy: #0A1F44;
            --navy-rgb: 10, 31, 68;
            --navy-light: #132D5E;
            --navy-dark: #06142C;
            --white: #FFFFFF;
            --red: #E63946;
            --red-rgb: 230, 57, 70;
            --red-light: #FF4D5A;
            --red-dark: #C62B36;
            --grey-900: #111827;
            --grey-800: #1F2937;
            --grey-700: #374151;
            --grey-600: #4B5563;
            --grey-500: #6B7280;
            --grey-400: #9CA3AF;
            --grey-300: #D1D5DB;
            --grey-200: #E5E7EB;
            --grey-100: #F3F4F6;
            --grey-50: #F9FAFB;
            --gradient-navy: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            --gradient-red: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 8px 24px rgba(var(--navy-rgb), 0.15);
            --shadow-lg: 0 20px 50px rgba(var(--navy-rgb), 0.2);
            --shadow-xl: 0 30px 70px rgba(var(--navy-rgb), 0.25);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 18px;
            --radius-xl: 26px;
            --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.65;
            color: var(--grey-800);
            overflow-x: hidden;
            background-color: var(--white);
            -webkit-font-smoothing: antialiased;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        
        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 34px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 0.01em;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            position: relative;
            overflow: hidden;
            border: none;
            outline: none;
        }
        
        .btn-primary {
            background: var(--gradient-red);
            color: var(--white);
            box-shadow: 0 6px 24px rgba(var(--red-rgb), 0.35);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 38px rgba(var(--red-rgb), 0.45);
        }
        
        .btn-primary:active { transform: translateY(-1px); }
        
        .btn-outline-white {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.5);
        }
        
        .btn-outline-white:hover {
            background: var(--white);
            color: var(--navy);
            transform: translateY(-3px);
        }
        
        .btn-outline-navy {
            background: transparent;
            color: var(--navy);
            border: 2px solid var(--navy);
        }
        
        .btn-outline-navy:hover {
            background: var(--navy);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        
        /* Navbar */
        .navbar {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 26px 0;
            transition: var(--transition);
        }
        
        .navbar.scrolled {
            position: fixed;
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(20px);
            padding: 16px 0;
            box-shadow: 0 4px 30px rgba(0,0,0,0.08);
        }
        
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 13px;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }
        
        .logo:hover { opacity: 0.92; }
        
        .logo-icon {
            width: 52px;
            height: 52px;
            background: var(--gradient-navy);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 23px;
            color: white;
            box-shadow: 0 8px 25px rgba(var(--navy-rgb), 0.35);
            position: relative;
            overflow: hidden;
        }
        
        .logo-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.18), transparent);
            animation: logoShine 4s infinite;
        }
        
        @keyframes logoShine {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }
        
        .logo-text {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 22px;
            font-weight: 800;
            color: var(--white);
            letter-spacing: -0.03em;
        }
        
        .navbar.scrolled .logo-text { color: var(--navy); }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 34px;
            align-items: center;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            font-size: 15px;
            position: relative;
            padding: 6px 0;
            transition: color 0.3s ease;
        }
        
        .navbar.scrolled .nav-menu a { color: var(--grey-700); }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2.5px;
            background: var(--red);
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover { color: var(--red); }
        .nav-menu a:hover::after { width: 100%; }
        
        .nav-cta {
            background: var(--gradient-red) !important;
            color: var(--white) !important;
            padding: 13px 26px !important;
            border-radius: var(--radius-md) !important;
            box-shadow: 0 4px 18px rgba(var(--red-rgb), 0.35) !important;
        }
        
        .nav-cta::after { display: none !important; }
        .nav-cta:hover { transform: translateY(-2px) !important; }
        
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
            width: 32px;
            height: 24px;
            justify-content: center;
        }
        
        .mobile-toggle span {
            width: 100%;
            height: 3px;
            background: var(--white);
            border-radius: 3px;
            transition: var(--transition);
        }
        
        .navbar.scrolled .mobile-toggle span { background: var(--grey-800); }
        
        /* Hero */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--navy);
        }
        
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 1;
        }
        
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.18;
        }
        
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(10, 31, 68, 0.97) 0%,
                rgba(19, 45, 94, 0.93) 50%,
                rgba(10, 31, 68, 0.95) 100%
            );
            z-index: 2;
        }
        
        .hero-patterns {
            position: absolute;
            inset: 0;
            z-index: 3;
            pointer-events: none;
            overflow: hidden;
        }
        
        .hero-patterns::before {
            content: '';
            position: absolute;
            top: -25%;
            right: -12%;
            width: 55%;
            height: 150%;
            background: radial-gradient(circle, rgba(230, 57, 70, 0.07) 0%, transparent 60%);
            animation: floatPattern 12s ease-in-out infinite;
        }
        
        @keyframes floatPattern {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-25px, 18px) scale(1.05); }
        }
        
        .hero-grid {
            position: relative;
            z-index: 4;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }
        
        .hero-content { max-width: 600px; }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(230, 57, 70, 0.15);
            border: 1px solid rgba(230, 57, 70, 0.3);
            padding: 11px 22px;
            border-radius: 50px;
            color: var(--red-light);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 28px;
            backdrop-filter: blur(10px);
            animation: fadeInUp 0.8s ease forwards;
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero-badge i { font-size: 14px; }
        
        .hero-title {
            font-size: clamp(40px, 5.5vw, 66px);
            color: var(--white);
            margin-bottom: 24px;
            line-height: 1.08;
            animation: fadeInUp 0.8s ease 0.15s both;
        }
        
        .hero-title span {
            color: var(--red-light);
            position: relative;
        }
        
        .hero-desc {
            font-size: 17px;
            color: rgba(255,255,255,0.82);
            margin-bottom: 38px;
            line-height: 1.75;
            animation: fadeInUp 0.8s ease 0.3s both;
        }
        
        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 54px;
            animation: fadeInUp 0.8s ease 0.45s both;
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            padding-top: 34px;
            border-top: 1px solid rgba(255,255,255,0.12);
            animation: fadeInUp 0.8s ease 0.6s both;
        }
        
        .stat-num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 40px;
            font-weight: 800;
            color: var(--red-light);
            line-height: 1;
            margin-bottom: 6px;
        }
        
        .stat-label {
            font-size: 13px;
            color: rgba(255,255,255,0.6);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        /* Hero Visual Card */
        .hero-visual {
            animation: fadeInRight 1s ease 0.3s both;
        }
        
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .hero-card {
            background: rgba(255,255,255,0.07);
            backdrop-filter: blur(24px);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-xl);
            padding: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-red);
        }
        
        .hero-card-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }
        
        .mini-stat {
            background: rgba(255,255,255,0.07);
            border-radius: var(--radius-md);
            padding: 24px 18px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        
        .mini-stat:hover {
            background: rgba(255,255,255,0.12);
            border-color: rgba(255,255,255,0.15);
            transform: translateY(-4px);
        }
        
        .mini-stat-icon { font-size: 32px; margin-bottom: 12px; }
        .mini-stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
        .mini-stat-text { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 500; }
        
        /* Sections */
        section { padding: 110px 0; position: relative; }
        
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(10, 31, 68, 0.06);
            color: var(--navy);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 16px;
            border: 1px solid rgba(10, 31, 68, 0.1);
        }
        
        .section-header {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 64px;
        }
        
        .section-header h2 {
            font-size: clamp(30px, 4vw, 46px);
            color: var(--grey-900);
            margin-bottom: 18px;
        }
        
        .section-header p {
            font-size: 17px;
            color: var(--grey-500);
            line-height: 1.75;
        }
        
        /* About */
        .about-section { background: var(--white); }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 66px;
            align-items: center;
        }
        
        .about-img-main {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            position: relative;
            z-index: 2;
        }
        
        .about-img-main img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .about-img-main:hover img { transform: scale(1.04); }
        
        .about-exp-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--gradient-navy);
            color: white;
            padding: 26px 34px;
            border-radius: var(--radius-lg);
            text-align: center;
            z-index: 3;
            box-shadow: var(--shadow-lg);
        }
        
        .about-exp-badge .num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 44px;
            font-weight: 900;
            line-height: 1;
        }
        
        .about-exp-badge .text { font-size: 13px; opacity: 0.92; margin-top: 4px; }
        
        .about-content .section-label { margin-bottom: 16px; }
        .about-content h2 { font-size: 38px; color: var(--grey-900); margin-bottom: 22px; }
        .about-content h2 span { color: var(--navy); }
        .about-content > p { color: var(--grey-600); font-size: 16px; margin-bottom: 15px; line-height: 1.85; }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin: 26px 0 28px;
        }
        
        .about-feature {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .about-feature i {
            width: 38px;
            height: 38px;
            background: rgba(10, 31, 68, 0.08);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            font-size: 14px;
            flex-shrink: 0;
        }
        
        .about-feature span { font-weight: 600; font-size: 14px; color: var(--grey-800); }
        
        /* Counter */
        .counter-section {
            background: var(--grey-50);
            position: relative;
            overflow: hidden;
        }
        
        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-navy);
        }
        
        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }
        
        .counter-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 42px 28px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--grey-200);
            transition: var(--transition);
        }
        
        .counter-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-red);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .counter-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .counter-card:hover::before { transform: scaleX(1); }
        
        .counter-icon {
            width: 72px;
            height: 72px;
            background: rgba(10, 31, 68, 0.06);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            color: var(--navy);
            transition: var(--transition);
        }
        
        .counter-card:hover .counter-icon {
            background: var(--gradient-navy);
            color: white;
        }
        
        .counter-num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 46px;
            font-weight: 900;
            color: var(--grey-900);
            margin-bottom: 8px;
        }
        
        .counter-label { font-size: 14px; color: var(--grey-500); font-weight: 600; }
        
        /* Vision Mission */
        .vm-section { background: var(--white); }
        
        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        
        .vm-card {
            background: var(--grey-50);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        
        .vm-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
        .vm-card.vision { border-color: rgba(10, 31, 68, 0.15); }
        .vm-card.mission { border-color: var(--grey-200); }
        
        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
        }
        
        .vm-card.vision::before { background: var(--gradient-navy); }
        .vm-card.mission::before { background: linear-gradient(90deg, var(--grey-700), var(--grey-500)); }
        
        .vm-icon {
            width: 76px;
            height: 76px;
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            margin-bottom: 24px;
        }
        
        .vm-card.vision .vm-icon { background: rgba(10, 31, 68, 0.1); color: var(--navy); }
        .vm-card.mission .vm-icon { background: rgba(0,0,0,0.06); color: var(--grey-700); }
        
        .vm-card h3 { font-size: 26px; color: var(--grey-900); margin-bottom: 18px; }
        .vm-card p { color: var(--grey-600); font-size: 15px; line-height: 1.85; }
        
        /* Why Choose Us */
        .features-section { background: var(--grey-50); }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        
        .feature-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 38px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--grey-200);
            transition: var(--transition);
        }
        
        .feature-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 0;
            background: var(--gradient-navy);
            transition: height 0.4s ease;
            z-index: 0;
        }
        
        .feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
        .feature-card:hover::after { height: 100%; }
        .feature-card > * { position: relative; z-index: 1; }
        
        .feature-emoji {
            font-size: 52px;
            margin-bottom: 20px;
            display: block;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
            transition: var(--transition);
        }
        
        .feature-card:hover .feature-emoji { filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2)); transform: scale(1.1); }
        
        .feature-card h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 19px;
            font-weight: 700;
            color: var(--grey-900);
            margin-bottom: 14px;
            transition: color 0.3s ease;
        }
        
        .feature-card p { color: var(--grey-600); font-size: 14px; line-height: 1.75; transition: color 0.3s ease; }
        .feature-card:hover h4, .feature-card:hover p { color: var(--white); }
        
        /* Process */
        .process-section { background: var(--white); position: relative; overflow: hidden; }
        
        .process-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 0%, rgba(10, 31, 68, 0.04) 0%, transparent 70%);
        }
        
        .process-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            padding: 50px 0;
        }
        
        .process-line {
            position: absolute;
            top: 50%;
            left: 5%;
            right: 5%;
            height: 3px;
            background: linear-gradient(90deg, var(--navy) 0%, var(--grey-300) 100%);
            transform: translateY(-50%);
            border-radius: 2px;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
            z-index: 2;
        }
        
        .process-step { text-align: center; }
        
        .step-circle {
            width: 94px;
            height: 94px;
            background: var(--white);
            border: 3px solid var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 22px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 30px;
            font-weight: 800;
            color: var(--navy);
            position: relative;
            transition: var(--transition);
            animation: pulseGlow 2.5s infinite;
        }
        
        @keyframes pulseGlow {
            0%, 100% { box-shadow: 0 0 0 0 rgba(10, 31, 68, 0.25); }
            50% { box-shadow: 0 0 0 16px rgba(10, 31, 68, 0); }
        }
        
        .step-icon-badge {
            position: absolute;
            top: -10px;
            right: -8px;
            width: 42px;
            height: 42px;
            background: var(--gradient-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            color: white;
            box-shadow: 0 4px 15px rgba(var(--red-rgb), 0.35);
        }
        
        .process-step h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: var(--grey-900);
            margin-bottom: 10px;
        }
        
        .process-step p { color: var(--grey-500); font-size: 13px; line-height: 1.7; }
        
        /* Services */
        .services-section { background: var(--grey-50); }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }
        
        .service-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: 1px solid var(--grey-200);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(10, 31, 68, 0.2);
        }
        
        .service-icon-area {
            padding: 44px 40px 28px;
            text-align: center;
            background: linear-gradient(180deg, var(--grey-50) 0%, var(--white) 100%);
        }
        
        .service-emoji {
            width: 100px;
            height: 100px;
            background: rgba(10, 31, 68, 0.06);
            border-radius: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 52px;
            margin-bottom: 22px;
            transition: var(--transition);
        }
        
        .service-card:hover .service-emoji {
            background: var(--gradient-navy);
            transform: scale(1.08) rotate(-3deg);
        }
        
        .service-body {
            padding: 0 40px 40px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            text-align: center;
        }
        
        .service-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(10, 31, 68, 0.06);
            color: var(--navy);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
            align-self: flex-start;
        }
        
        .service-body h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--grey-900);
            margin-bottom: 14px;
        }
        
        .service-body p {
            color: var(--grey-600);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 24px;
            flex-grow: 1;
        }
        
        .service-link {
            align-items: center;
            gap: 10px;
            color: var(--navy);
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            transition: var(--transition);
        }
        
        .service-link:hover { gap: 16px; color: var(--red); }
        .service-link i { font-size: 12px; transition: transform 0.3s ease; }
        .service-link:hover i { transform: translateX(4px); }
        
        /* Booking */
        .booking-section { background: var(--white); }
        
        .booking-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .booking-info .section-label { margin-bottom: 16px; }
        .booking-info h2 { font-size: 40px; color: var(--grey-900); margin-bottom: 22px; }
        .booking-info h2 span { color: var(--navy); }
        .booking-info > p { color: var(--grey-600); font-size: 16px; margin-bottom: 32px; line-height: 1.8; }
        
        .booking-list { list-style: none; }
        .booking-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 16px;
            color: var(--grey-600);
            font-size: 14px;
        }
        
        .booking-list li i {
            width: 24px;
            height: 24px;
            background: var(--gradient-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 10px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .booking-form-box {
            background: var(--grey-50);
            border-radius: var(--radius-xl);
            padding: 46px 40px;
            border: 1px solid var(--grey-200);
            box-shadow: var(--shadow-md);
        }
        
        .booking-form-box h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--grey-900);
            margin-bottom: 8px;
        }
        
        .booking-form-box > p { color: var(--grey-500); font-size: 14px; margin-bottom: 26px; }
        
        .form-group { margin-bottom: 18px; }
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 13px;
            color: var(--grey-800);
            margin-bottom: 8px;
        }
        
        .form-control {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--grey-200);
            border-radius: var(--radius-md);
            font-family: inherit;
            font-size: 14px;
            color: var(--grey-800);
            background: var(--white);
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--navy);
            box-shadow: 0 0 0 4px rgba(10, 31, 68, 0.1);
        }
        
        .form-control::placeholder { color: var(--grey-400); }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        
        /* Pricing */
        .pricing-section {
            background: var(--gradient-navy);
            position: relative;
            overflow: hidden;
        }
        
        .pricing-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM0 0c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 15.523 0 10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }
        
        .pricing-section .section-label {
            background: rgba(255,255,255,0.1);
            color: var(--white);
            border-color: rgba(255,255,255,0.2);
        }
        
        .pricing-section .section-header h2,
        .pricing-section .section-header p { color: var(--white); }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            position: relative;
            z-index: 2;
        }
        
        .price-card {
            background: rgba(255,255,255,0.97);
            border-radius: var(--radius-xl);
            padding: 42px 34px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .price-card.featured {
            background: var(--white);
            transform: scale(1.05);
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
        }
        
        .price-card:hover { transform: translateY(-12px); }
        .price-card.featured:hover { transform: scale(1.05) translateY(-12px); }
        
        .popular-tag {
            position: absolute;
            top: 18px;
            right: -32px;
            background: var(--gradient-red);
            color: white;
            padding: 7px 48px;
            font-size: 11px;
            font-weight: 700;
            transform: rotate(45deg);
            letter-spacing: 0.05em;
        }
        
        .plan-name {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--grey-900);
            margin-bottom: 18px;
        }
        
        .plan-price {
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 2px solid var(--grey-200);
        }
        
        .plan-price .currency { font-size: 24px; color: var(--navy); font-weight: 700; vertical-align: super; }
        .plan-price .amount { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 54px; font-weight: 900; color: var(--grey-900); letter-spacing: -0.03em; }
        .plan-price .period { font-size: 15px; color: var(--grey-500); }
        .plan-desc { color: var(--grey-500); font-size: 13px; margin-bottom: 24px; }
        
        .plan-features { list-style: none; text-align: left; margin-bottom: 30px; }
        .plan-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            color: var(--grey-700);
            font-size: 14px;
            border-bottom: 1px solid var(--grey-100);
        }
        .plan-features li:last-child { border-bottom: none; }
        .plan-features li i { color: var(--red); font-size: 13px; width: 18px; }
        .price-card .btn { width: 100%; }
        
        /* Reviews */
        .reviews-section { background: var(--grey-50); }
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        
        .review-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 34px 28px;
            position: relative;
            border: 1px solid var(--grey-200);
            transition: var(--transition);
        }
        
        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(10, 31, 68, 0.2);
        }
        
        .review-quote-icon {
            font-size: 48px;
            color: var(--navy);
            opacity: 0.12;
            position: absolute;
            top: 20px;
            left: 26px;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .review-stars { display: flex; gap: 4px; margin-bottom: 18px; }
        .review-stars i { color: var(--red); font-size: 16px; }
        
        .review-text { color: var(--grey-600); font-size: 14px; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
        
        .review-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        
        .review-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--navy);
        }
        
        .review-avatar img { width: 100%; height: 100%; object-fit: cover; }
        
        .review-author-info h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: var(--grey-900);
            margin-bottom: 3px;
        }
        
        .review-author-info span { font-size: 12px; color: var(--grey-400); }
        
        /* FAQ */
        .faq-section { background: var(--white); }
        
        .faq-container { max-width: 840px; margin: 0 auto; }
        
        .faq-item {
            background: var(--grey-50);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            overflow: hidden;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        
        .faq-item.active {
            border-color: var(--navy);
            box-shadow: 0 8px 30px rgba(10, 31, 68, 0.12);
        }
        
        .faq-question {
            padding: 22px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .faq-question h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--grey-900);
        }
        
        .faq-question i { color: var(--navy); font-size: 16px; transition: transform 0.3s ease; }
        .faq-item.active .faq-question i { 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(--grey-600); font-size: 14px; line-height: 1.8; }
        
        /* CTA */
        .cta-section {
            background: var(--gradient-navy);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 70% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 55%);
        }
        
        .cta-pattern {
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10zM0 0c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }
        
        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
            max-width: 680px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: clamp(32px, 4vw, 46px);
            color: var(--white);
            margin-bottom: 18px;
        }
        
        .cta-content p {
            font-size: 17px;
            color: rgba(255,255,255,0.88);
            margin-bottom: 36px;
            line-height: 1.75;
        }
        
        .cta-content .btn {
            background: var(--white);
            color: var(--navy);
            font-weight: 700;
            padding: 18px 42px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }
        
        .cta-content .btn:hover {
            background: var(--red);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        /* Contact */
        .contact-section { background: var(--grey-50); }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 48px;
        }
        
        .contact-cards { display: flex; flex-direction: column; gap: 18px; }
        
        .contact-card {
            background: var(--white);
            padding: 26px 28px;
            border-radius: var(--radius-lg);
            display: flex;
            align-items: flex-start;
            gap: 18px;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        
        .contact-card:hover {
            border-color: var(--navy);
            transform: translateX(8px);
            box-shadow: var(--shadow-md);
        }
        
        .contact-card-icon {
            width: 54px;
            height: 54px;
            background: var(--gradient-navy);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: white;
            flex-shrink: 0;
        }
        
        .contact-card h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--grey-900);
            margin-bottom: 5px;
        }
        
        .contact-card p,
        .contact-card a {
            color: var(--grey-600);
            font-size: 14px;
            text-decoration: none;
            line-height: 1.6;
            transition: color 0.3s ease;
            display: block;
        }
        
        .contact-card a:hover { color: var(--red); }
        
        .contact-form-box {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 42px 38px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--grey-200);
        }
        
        .contact-form-box h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 26px;
            font-weight: 700;
            color: var(--grey-900);
            margin-bottom: 6px;
        }
        
        .contact-form-box > p { color: var(--grey-500); font-size: 14px; margin-bottom: 26px; }
        
        /* Footer */
        .footer {
            background: var(--navy-dark);
            padding: 80px 0 0;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-red);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
            gap: 48px;
            margin-bottom: 56px;
        }
        
        .footer-col h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 22px;
            position: relative;
            padding-bottom: 14px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-red);
            border-radius: 2px;
        }
        
        .footer-about p {
            color: rgba(255,255,255,0.65);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 22px;
        }
        
        .footer-social {
            display: flex;
            gap: 10px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.08);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 16px;
            transition: var(--transition);
        }
        
        .footer-social a:hover {
            background: var(--gradient-red);
            transform: translateY(-4px);
        }
        
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 11px; }
        .footer-links a {
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover { color: var(--red-light); padding-left: 4px; }
        .footer-links a i { font-size: 9px; color: var(--red); }
        
        .newsletter-form { display: flex; flex-direction: column; gap: 12px; }
        
        .newsletter-input {
            padding: 15px 18px;
            border: 2px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-md);
            background: rgba(255,255,255,0.05);
            color: var(--white);
            font-family: inherit;
            font-size: 14px;
            transition: var(--transition);
        }
        
        .newsletter-input::placeholder { color: rgba(255,255,255,0.45); }
        .newsletter-input:focus {
            outline: none;
            border-color: var(--red);
            background: rgba(255,255,255,0.08);
        }
        
        .newsletter-btn {
            padding: 15px 26px;
            background: var(--gradient-red);
            border: none;
            border-radius: var(--radius-md);
            color: white;
            font-family: inherit;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 0.02em;
        }
        
        .newsletter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(var(--red-rgb), 0.4);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        
        .footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13px; }
        
        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }
        
        .footer-bottom-links a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s ease;
        }
        
        .footer-bottom-links a:hover { color: var(--red-light); }
        
        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 52px;
            height: 52px;
            background: var(--gradient-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 19px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            border: none;
            box-shadow: 0 8px 28px rgba(var(--red-rgb), 0.4);
        }
        
        .back-to-top.visible { opacity: 1; visibility: visible; }
        .back-to-top:hover { transform: translateY(-5px); }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .price-card.featured { transform: scale(1); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 100px 36px 36px;
                gap: 22px;
                transition: right 0.4s ease;
                box-shadow: -10px 40px 60px rgba(0,0,0,0.2);
                z-index: 999;
            }
            
            .nav-menu.active { right: 0; }
            .nav-menu a { color: var(--grey-800) !important; }
            .mobile-toggle { display: flex; }
            
            .hero-grid { grid-template-columns: 1fr; gap: 50px; }
            .hero-visual { display: none; }
            
            .about-grid, .vm-grid, .booking-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
            .about-image { order: -1; }
            
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .services-grid { grid-template-columns: 1fr; }
            .process-steps { grid-template-columns: repeat(2, 1fr); }
            .process-line { display: none; }
            .counter-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
            .reviews-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
        }
        
        @media (max-width: 768px) {
            section { padding: 80px 0; }
            .hero-title { font-size: 40px; }
            .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 20px; }
            .features-grid { grid-template-columns: 1fr; }
            .process-steps { grid-template-columns: 1fr; }
            .counter-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 36px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .about-features { grid-template-columns: 1fr; }
        }
        
        @media (max-width: 480px) {
            .hero-actions { flex-direction: column; }
            .btn, .btn-outline-white { width: 100%; }
        }
