/* Public Site Styles - Ultra Premium Theme */
@import 'variables.css';
@import 'base.css';

:root {
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);

    /* Mesh Gradients */
    --hero-gradient: radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%);

    --mesh-light:
        radial-gradient(at 0% 0%, rgba(16, 185, 129, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(56, 189, 248, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 255, 255, 0.8) 0px, transparent 50%);

    --accent-glow: 0 4px 12px rgba(16, 185, 129, 0.2);

    --accent-glow: 0 0 60px -20px var(--accent);
}

body {
    background: #f8fafc;
    color: #1e293b;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Header - Premium Enhanced */
.site-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated gradient accent line */
.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--accent) 15%,
            #112437 50%,
            var(--accent) 85%,
            transparent 100%);
    background-size: 200% 100%;
    animation: headerGradientFlow 6s ease infinite;
    opacity: 0.7;
}

@keyframes headerGradientFlow {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: -100% 50%;
    }
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 12px 0;
}

.site-header.scrolled::after {
    opacity: 1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo - Premium Styling */
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 10;
    position: relative;
}

.navbar-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-wrapper i {
    font-size: 30px;
    color: var(--accent);
    filter: drop-shadow(0 4px 8px var(--accent-bg));
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-logo:hover .navbar-logo {
    transform: scale(1.08) rotate(-3deg);
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.2));
}

.site-logo:hover .logo-wrapper i {
    transform: scale(1.15) rotate(-10deg);
    filter: drop-shadow(0 6px 12px rgba(16, 185, 129, 0.35));
}

/* Navigation - Premium Enhanced */
.site-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    text-decoration: none;
    color: #475569;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 100px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Animated underline effect */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #6366f1);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: calc(100% - 36px);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--accent);
    background: rgba(16, 185, 129, 0.08);
}

.nav-link.active {
    color: var(--accent);
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
}

.nav-item-dropdown {
    position: static;
    padding: 0;
}

/* Mega Menu */
.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu {
    position: absolute;
    top: 100%;
    /* Center in header container */
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 20px 40px -4px rgba(0, 0, 0, 0.1);
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.2, 0, 0.2, 1);
    z-index: 1100;
    margin-top: 12px;
    pointer-events: none;
}

/* Mega Menu Arrow - Removed as it's hard to position correctly with full width */
/* Invisible bridge to prevent hover loss */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    display: block;
    background: transparent;
    z-index: 1;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.mega-title {
    font-size: 13px;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    margin: -10px -10px 4px;
    border-radius: 12px;
    transition: all 0.15s ease;
}

.icon-box {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.2s ease;
}

.mega-link:hover {
    background: #f8fafc;
    color: #0f172a;
}

.mega-link:hover .icon-box {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.25);
}

/* CTA Button - Premium Enhanced */
.header-actions {
    margin-left: 24px;
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent) 0%, #059669 50%, var(--accent) 100%);
    background-size: 200% 200%;
    color: #fff;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0, 0.2, 1);
    font-size: 14px;
    box-shadow:
        0 4px 15px -3px rgba(16, 185, 129, 0.4),
        0 0 0 0 rgba(16, 185, 129, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: ctaGlow 3s ease-in-out infinite, ctaGradient 4s ease infinite;
}

@keyframes ctaGlow {

    0%,
    100% {
        box-shadow:
            0 4px 15px -3px rgba(16, 185, 129, 0.4),
            0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        box-shadow:
            0 6px 20px -3px rgba(16, 185, 129, 0.5),
            0 0 20px -5px rgba(16, 185, 129, 0.3);
    }
}

@keyframes ctaGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Shimmer effect */
.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 28px -6px rgba(16, 185, 129, 0.5),
        0 0 30px -8px rgba(16, 185, 129, 0.4);
    color: #fff;
    animation: none;
}

.btn-cta:active {
    transform: translateY(-1px) scale(1);
}

.btn-cta i {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-cta:hover i {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.btn-outline:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
    transform: none;
}

/* Hero Section - Compact & Informative */
.hero-section {
    padding: 100px 0 80px;
    background:
        radial-gradient(circle at 0% 0%, rgba(16, 185, 129, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(17, 36, 55, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #f0fdf4 0%, #f8fafc 30%, #f0f9ff 70%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-tagline {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    display: inline-block;
    background: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, #112437 0%, #0f172a 50%, #112437 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 17px;
    color: #64748b;
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 480px;
}

/* Quick Stats Bar in Hero */
.hero-quick-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.visual-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    box-shadow:
        0 20px 60px -15px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    animation: float 6s ease-in-out infinite;
}

.visual-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Hero Image Styles */
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
}

.floating-badge {
    position: absolute;
    background: #fff;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 4s ease-in-out infinite;
    z-index: 10;
}

.floating-badge.badge-top {
    top: 10%;
    right: -10px;
    animation-delay: -1s;
}

.floating-badge.badge-bottom {
    bottom: 15%;
    left: -20px;
    animation-delay: -2s;
}

.badge-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #112437 0%, #1e3a5f 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.badge-icon.success {
    background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
}

.badge-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 13px;
}

.badge-sub {
    font-size: 11px;
    color: #64748b;
}


/* Hero Form */
.hero-form-card {
    background: #fff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    z-index: 10;
}

.hero-form-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.2s;
}

.form-control:focus {
    background: #fff;
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 4px var(--accent-bg);
}

.hero-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* Trust Bar - Compact */
.trust-bar {
    padding: 40px 0;
    border-bottom: 1px solid #f1f5f9;
    background: #fff;
    text-align: center;
}

.trust-label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.trust-logos:hover {
    opacity: 0.8;
}

.trust-logo-item {
    font-weight: 600;
    font-size: 16px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Sections - Rich Backgrounds */
.section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

/* Services section with pattern */
.section:not(.section-alt) {
    background:
        radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(17, 36, 55, 0.04) 0%, transparent 40%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.section-alt {
    background:
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 20% 80%, rgba(17, 36, 55, 0.05) 0%, transparent 35%),
        linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* Feature Cards - Compact */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: #ecfdf5;
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 10px 20px -8px rgba(16, 185, 129, 0.4);
}

/* Value Card Styling (About Page) */
.value-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.value-card::before {
    content: attr(data-number);
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 140px;
    font-weight: 900;
    color: #f1f5f9;
    opacity: 0.5;
    z-index: -1;
    transition: all 0.4s ease;
    line-height: 1;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.value-card:hover::before {
    color: rgba(16, 185, 129, 0.05);
    transform: scale(1.1) rotate(-5deg);
}

.value-card.vision:hover {
    border-bottom: 4px solid #3b82f6;
}

.value-card.mission:hover {
    border-bottom: 4px solid #10b981;
}

.value-card.values:hover {
    border-bottom: 4px solid #8b5cf6;
}

.value-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.value-card.vision .value-icon-wrapper {
    background: #eff6ff;
    color: #3b82f6;
}

.value-card.mission .value-icon-wrapper {
    background: #ecfdf5;
    color: #10b981;
}

.value-card.values .value-icon-wrapper {
    background: #f5f3ff;
    color: #8b5cf6;
}

.value-card:hover .value-icon-wrapper {
    transform: scale(1.1);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.feature-desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

/* Feature Badges */
.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
}

.feature-badge.rbi {
    background: linear-gradient(135deg, #112437 0%, #1e3a5f 100%);
    color: #fff;
}

.feature-badge.sebi {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #fff;
}

.feature-badge.irdai {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    color: #fff;
}

.feature-badge.mca {
    background: linear-gradient(135deg, #0891b2 0%, #22d3ee 100%);
    color: #fff;
}

.feature-badge.rera {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: #fff;
}

/* Gradient border on hover */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent) 0%, #112437 50%, var(--accent) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

/* Subtle mesh background */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

/* Stats - Compact & Premium */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.stat-card {
    background: #fff;
    padding: 28px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(17, 36, 55, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 16px 32px -8px rgba(16, 185, 129, 0.15);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 40px;
    font-weight: 900;
    color: var(--accent);
    display: block;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--accent) 0%, #112437 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.stat-label {
    color: #64748b;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* CTA Section - Premium with Navy */
.cta-section {
    background: linear-gradient(135deg, #112437 0%, #0f172a 50%, #112437 100%);
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.cta-content h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.cta-content p {
    color: #94a3b8;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 32px;
}

/* Footer - Enhanced */
.site-footer {
    background: linear-gradient(180deg, #0a0f1a 0%, #020617 100%);
    color: #94a3b8;
    padding: 80px 0 40px;
    border-top: 1px solid #1e293b;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), #112437, var(--accent), transparent);
}

.footer-logo {
    height: 56px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 1;
    margin-bottom: 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.footer-link {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: all 0.25s ease;
    line-height: 1.5;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(6px);
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-visual {
        min-height: 400px;
        display: flex;
        justify-content: center;
    }

    .hero-image {
        max-width: 350px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }
}

/* Service Page Dynamic Content Styles */
.section-title-sm {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 48px;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.service-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
}

.info-box {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 16px;
    margin: 32px 0;
}

.info-box i {
    color: #3b82f6;
    font-size: 24px;
    margin-top: 2px;
}

.info-box p {
    margin: 0;
    font-size: 16px;
    color: #1e40af;
}

.models-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.model-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    padding: 28px;
    border-radius: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.model-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.model-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.12);
}

.model-item:hover::before {
    opacity: 1;
}

.model-item:nth-child(1) {
    --item-color: var(--accent);
}

.model-item:nth-child(2) {
    --item-color: #3b82f6;
}

.model-item:nth-child(3) {
    --item-color: #8b5cf6;
}

.model-item:nth-child(4) {
    --item-color: #f59e0b;
}

.model-item h5 {
    font-weight: 700;
    font-size: 17px;
    color: #0f172a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.model-item h5::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--item-color, var(--accent));
    border-radius: 50%;
}

.model-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.check-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.check-list li::before {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

.check-list li strong {
    color: #0f172a;
}

.docs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.doc-group {
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.doc-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.doc-group:nth-child(1) h6 {
    border-bottom-color: var(--accent);
}

.doc-group:nth-child(2) h6 {
    border-bottom-color: #3b82f6;
}

.doc-group:nth-child(3) h6 {
    border-bottom-color: #8b5cf6;
}

.doc-group h6 {
    font-weight: 700;
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 16px;
    border-bottom: 3px solid var(--accent);
    padding-bottom: 10px;
}

.doc-group ul {
    padding-left: 20px;
    margin: 0;
}

.doc-group li {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 10px;
    line-height: 1.5;
}

.doc-group li::marker {
    color: var(--accent);
}

.process-timeline {
    position: relative;
    padding-left: 40px;
    margin: 40px 0 0 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent) 0%, #3b82f6 50%, #8b5cf6 100%);
    border-radius: 3px;
}

.process-step {
    position: relative;
    margin-bottom: 36px;
    padding-left: 8px;
}

.step-num {
    position: absolute;
    left: -58px;
    top: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 0 0 4px #f8fafc, 0 4px 12px rgba(16, 185, 129, 0.25);
}

.process-step:nth-child(2) .step-num {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 0 0 4px #f8fafc, 0 4px 12px rgba(59, 130, 246, 0.25);
}

.process-step:nth-child(3) .step-num {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 0 0 4px #f8fafc, 0 4px 12px rgba(139, 92, 246, 0.25);
}

.process-step:nth-child(4) .step-num {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 0 0 4px #f8fafc, 0 4px 12px rgba(245, 158, 11, 0.25);
}

.process-step:nth-child(5) .step-num {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 0 0 4px #f8fafc, 0 4px 12px rgba(16, 185, 129, 0.25);
}

.step-content h6 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.section-title-sm {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin: 40px 0 20px;
    position: relative;
    padding-bottom: 12px;
}

.section-title-sm::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent, #10b981), transparent);
    border-radius: 3px;
}

/* Mobile Menu Styles */
@media (max-width: 900px) {

    .desktop-nav,
    .desktop-cta {
        display: none !important;
    }

    .mobile-toggle {
        display: block !important;
    }
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #1e293b;
    cursor: pointer;
    padding: 4px;
    z-index: 1002;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    background: #fff;
    z-index: 2001;
    padding: 24px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-menu-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.mobile-close {
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.mobile-menu-content {
    overflow-y: auto;
    flex: 1;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.mobile-nav-link:hover {
    color: var(--accent);
    padding-left: 8px;
}

.mobile-nav-link.has-submenu {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-nav-link.has-submenu i {
    transition: transform 0.3s;
    font-size: 12px;
}

.mobile-nav-link.has-submenu.is-open {
    color: var(--accent);
}

.mobile-nav-link.has-submenu.is-open i {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    padding-left: 16px;
    margin-top: 8px;
    margin-bottom: 16px;
    border-left: 2px solid #f1f5f9;
}

.mobile-submenu.is-open {
    display: block;
    animation: fadeIn 0.3s ease;
}

.mobile-submenu-header {
    font-size: 12px;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.mobile-sublink {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s;
}

.mobile-sublink:hover {
    color: var(--accent);
    transform: translateX(4px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}