/* ==========================================================================
   STALLER DISPATCH - PARENT ENTERPRISE DESIGN SYSTEM (PURE LIGHT DESIGN)
   ========================================================================== */

/* 1. RESET & CSS THEME VARIABLES */
:root, html[data-theme="light"] {
    --bg-primary: #F8FAFC;         /* Soft off-white canvas */
    --bg-secondary: #FFFFFF;       /* Crisp pure white section surface */
    --bg-card: #FFFFFF;            /* Pure white card surface */
    --bg-card-alt: #F1F5F9;        /* Light slate accent card */
    --bg-card-hover: #F8FAFC;
    
    --accent-cyan: #0284C7;        /* Sky Blue */
    --accent-blue: #2563EB;        /* Royal Blue */
    --accent-purple: #4F46E5;      /* Indigo */
    --accent-gold: #D97706;        /* Warm Amber Gold */
    
    --text-primary: #0F172A;       /* High-contrast dark navy text */
    --text-secondary: #475569;     /* Medium slate subtitle text */
    --text-muted: #64748B;         /* Cool gray text */
    
    --border-color: #E2E8F0;       /* Light border */
    --border-highlight: rgba(37, 99, 235, 0.25);
    --border-gold: rgba(217, 119, 6, 0.35);

    --header-bg: rgba(255, 255, 255, 0.92);
    --header-scrolled: rgba(255, 255, 255, 0.98);
    --mobile-nav-bg: #FFFFFF;

    --footer-bg: #FFFFFF;          /* Pure white light footer */
    --footer-text: #0F172A;
    --footer-muted: #64748B;

    --shadow-card: 0 10px 30px -5px rgba(15, 23, 42, 0.05), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
    --shadow-glow: 0 12px 35px rgba(37, 99, 235, 0.12);
    --shadow-gold: 0 12px 35px rgba(217, 119, 6, 0.15);
}

/* DARK THEME OVERRIDES (AVAILABLE VIA TOGGLE SWITCH) */
html[data-theme="dark"] {
    --bg-primary: #070B19 !important;         /* Midnight deep navy */
    --bg-secondary: #0F172A !important;       /* Dark slate background */
    --bg-card: #121A2D !important;            /* Frosted dark card */
    --bg-card-alt: #1E293B !important;
    --bg-card-hover: #1E293B !important;
    
    --accent-cyan: #00F2FE !important;        /* Electric Cyan */
    --accent-blue: #4FACFE !important;        /* Electric Blue */
    --accent-purple: #7000FF !important;      /* Neon Purple */
    --accent-gold: #F59E0B !important;        /* Bright Gold */
    
    --text-primary: #F8FAFC !important;       /* White text */
    --text-secondary: #94A3B8 !important;     /* Light slate text */
    --text-muted: #64748B !important;         /* Muted gray */
    
    --border-color: rgba(255, 255, 255, 0.1) !important;
    --border-highlight: rgba(0, 242, 254, 0.3) !important;
    --border-gold: rgba(245, 158, 11, 0.4) !important;

    --header-bg: rgba(7, 11, 25, 0.88) !important;
    --header-scrolled: rgba(7, 11, 25, 0.96) !important;
    --mobile-nav-bg: #070B19 !important;

    --footer-bg: #040711 !important;
    --footer-text: #F8FAFC !important;
    --footer-muted: #64748B !important;

    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
    --shadow-glow: 0 0 30px rgba(0, 242, 254, 0.18) !important;
    --shadow-gold: 0 0 30px rgba(245, 158, 11, 0.2) !important;
}

:root {
    --font-heading: 'Outfit', 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --glass-blur: blur(16px);
    
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* 2. TYPOGRAPHY & REUSABLE UTILITIES */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-blue);
}

.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 50%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B45309 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.section-lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 40px auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    white-space: nowrap;
}

.btn-sm {
    padding: 9px 22px;
    font-size: 0.86rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

html[data-theme="dark"] .btn-primary {
    color: #070B19;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.35);
    color: #FFFFFF;
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.btn-secondary:hover {
    background: var(--bg-card-alt);
    transform: translateY(-2px);
}

/* VISUAL THEME TOGGLE SWITCH STYLES */
.theme-switch-wrapper {
    display: inline-flex;
    align-items: center;
}

.theme-toggle-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 4px 10px 4px 5px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
    outline: none;
    box-shadow: var(--shadow-card);
}

.theme-toggle-switch:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-1px);
}

.switch-track {
    position: relative;
    width: 38px;
    height: 20px;
    background: #CBD5E1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    transition: var(--transition-fast);
}

html[data-theme="dark"] .switch-track {
    background: #1E293B;
}

.switch-icon {
    font-size: 0.65rem;
    z-index: 1;
}

.icon-sun {
    color: #F59E0B;
}

.icon-moon {
    color: #94A3B8;
}

html[data-theme="dark"] .icon-moon {
    color: #00F2FE;
}

.switch-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

html[data-theme="dark"] .switch-thumb {
    transform: translateX(18px);
    background: #00F2FE;
}

.theme-label-text {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    user-select: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
}

.btn-outline:hover {
    background: rgba(2, 132, 199, 0.08);
    color: var(--accent-blue);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #D97706 100%);
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

html[data-theme="dark"] .btn-gold {
    color: #0F172A;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.btn-block {
    width: 100%;
}

.badge-child {
    background: rgba(217, 119, 6, 0.12);
    color: var(--accent-gold);
    border: 1px solid var(--border-gold);
    font-size: 0.72rem;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    font-weight: 700;
}

/* 3. SITE HEADER (PROFESSIONAL & SPACIOUS) */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: var(--header-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.site-header.scrolled {
    padding: 12px 0;
    background: var(--header-scrolled);
    box-shadow: var(--shadow-card);
}

.header-container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow);
}

html[data-theme="dark"] .logo-icon {
    color: #070B19;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-main .highlight {
    color: var(--accent-cyan);
}

.logo-subtitle {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 6px 0;
    position: relative;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px;
}

/* 4. HERO SECTION */
.hero-section {
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    background: radial-gradient(circle at 50% 20%, rgba(2, 132, 199, 0.06) 0%, var(--bg-primary) 70%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.parent-entity-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    color: var(--text-primary);
    font-size: 0.85rem;
    margin-bottom: 24px;
    box-shadow: var(--shadow-card);
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}

.hero-title {
    font-size: 3.4rem;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.trust-item i {
    color: var(--accent-cyan);
}

/* Hero Visual & Floating Cards */
.hero-visual {
    position: relative;
}

.hero-card-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.12), rgba(79, 70, 229, 0.12));
    filter: blur(40px);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    background: var(--bg-card);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    animation: float 4s ease-in-out infinite alternate;
}

.badge-top-left {
    top: 24px;
    left: -20px;
}

.badge-bottom-right {
    bottom: 24px;
    right: -20px;
    border-color: var(--border-gold);
    animation-delay: -2s;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(2, 132, 199, 0.12);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.child-badge-icon {
    background: rgba(217, 119, 6, 0.12);
    color: var(--accent-gold);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text .val {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.1;
}

.badge-text .lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
}

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

/* Stats Strip */
.stats-strip {
    margin-top: 60px;
    padding: 30px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: var(--shadow-card);
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent-cyan);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* 5. ABOUT SECTION & CORPORATE ARCHITECTURE */
.about-section {
    background: var(--bg-secondary);
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.architecture-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 860px;
    margin: 40px auto 0 auto;
}

.arch-card {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
    position: relative;
}

.arch-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.parent-card {
    border-left: 5px solid var(--accent-cyan);
}

.child-card {
    border-left: 5px solid var(--accent-gold);
}

.arch-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.arch-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 1.5px;
}

.child-tag {
    color: var(--accent-gold);
}

.arch-name {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.arch-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
}

.arch-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.arch-features li {
    font-size: 0.9rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.arch-features li i {
    color: var(--accent-cyan);
}

.child-card .arch-features li i {
    color: var(--accent-gold);
}

.arch-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.connector-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-gold));
}

.connector-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-card);
}

/* 6. SUBSIDIARY SHOWCASE BANNER */
.subsidiary-section {
    position: relative;
    background: var(--bg-primary);
}

.subsidiary-banner {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.subsidiary-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    background: rgba(217, 119, 6, 0.12);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.banner-title {
    font-size: 2.8rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.banner-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 20px;
}

.banner-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.banner-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.highlight-box {
    display: flex;
    gap: 14px;
    background: var(--bg-card-alt);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.highlight-box i {
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-top: 2px;
}

.highlight-box h5 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.highlight-box p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.banner-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.banner-image-col {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.frame-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-gold);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.frame-badge span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.frame-badge strong {
    color: var(--accent-gold);
}

/* 7. DISPATCH SERVICES SECTION */
.services-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(2, 132, 199, 0.12);
    color: var(--accent-cyan);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.alt-icon {
    background: rgba(217, 119, 6, 0.12);
    color: var(--accent-gold);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.94rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-list {
    list-style: none;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.service-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list li i {
    color: var(--accent-cyan);
}

.highlight-service-card {
    border-color: var(--border-gold);
}

/* Operational Block */
.ops-feature-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.ops-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.ops-image img {
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.ops-content h3 {
    font-size: 1.8rem;
    margin: 10px 0 14px 0;
}

.ops-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.equipment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.eq-tag {
    background: var(--bg-card-alt);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.eq-tag i {
    color: var(--accent-cyan);
}

/* 8. CALCULATOR SECTION */
.calculator-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-glow);
}

.calc-header {
    margin-bottom: 40px;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
}

.highlight-val {
    color: var(--accent-cyan);
    font-weight: 700;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--bg-card-alt);
    outline: none;
    accent-color: var(--accent-cyan);
    cursor: pointer;
}

.calc-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-box {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.highlight-res {
    border-color: var(--border-highlight);
    background: rgba(2, 132, 199, 0.05);
}

.res-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.res-amount {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

.res-note {
    font-size: 0.78rem;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 9. CONTACT SECTION */
.contact-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-lead {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.contact-card-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.info-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(2, 132, 199, 0.1);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.child-info-card {
    border-color: var(--border-gold);
}

.child-icon-bg {
    background: rgba(217, 119, 6, 0.12);
    color: var(--accent-gold);
}

.info-card h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.info-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.contact-form h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.92rem;
    outline: none;
    transition: var(--transition-fast);
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(2, 132, 199, 0.15);
}

.contact-form label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-feedback {
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    display: none;
    font-size: 0.88rem;
}

.form-feedback.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10B981;
    color: #065F46;
}

/* 10. FOOTER (CLEAN LIGHT FOOTER WITH CRISP SLATE TEXT) */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-about {
    color: var(--footer-muted);
    font-size: 0.9rem;
    margin: 16px 0 20px 0;
}

.footer-about strong {
    color: var(--accent-gold);
}

.parent-badge-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--accent-cyan);
    border: 1px solid var(--border-highlight);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--footer-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.featured-footer-link a {
    color: var(--accent-gold);
    font-weight: 600;
}

.footer-contact-item {
    font-size: 0.88rem;
    color: var(--footer-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-item i {
    color: var(--accent-cyan);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    font-size: 0.82rem;
    color: var(--footer-muted);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--footer-muted);
}

/* 11. MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: var(--glass-blur);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 600px;
    padding: 36px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-header h3 {
    font-size: 1.8rem;
    margin: 8px 0 4px 0;
    color: var(--text-primary);
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.modal-img {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.modal-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* 12. RESPONSIVE BREAKPOINTS & CLEAN HEADER ADAPTATION */
@media (max-width: 1100px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: var(--mobile-nav-bg);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 24px;
        transition: var(--transition-normal);
        z-index: 999;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-grid, .banner-grid, .calc-grid, .contact-grid, .ops-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.7rem;
    }

    .stats-strip {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .subsidiary-banner {
        padding: 30px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-highlights {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .floating-badge {
        position: static;
        margin-top: 10px;
    }
}
