/* ==========================================================================
   Voxtera Global - Premium CSS Stylesheet (White Corporate Theme)
   Design System: Light Corporate Style, Soft Shadows, Accent Gradients
   Colors: Voxtera Blue (#0D5CA6), Voxtera Green (#4CA824), Accent Coral (#E65C2B)
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    --color-bg-deep: #ffffff;
    --color-bg-dark: #f8fafc;
    --color-bg-card: #ffffff;
    --color-bg-glass-light: rgba(255, 255, 255, 0.85);
    --color-primary: #0D5CA6;
    --color-primary-glow: rgba(13, 92, 166, 0.08);
    --color-secondary: #4CA824;
    --color-secondary-glow: rgba(76, 168, 36, 0.08);
    --color-accent: #E65C2B;
    --color-accent-glow: rgba(230, 92, 43, 0.08);
    --color-text-white: #0f172a; /* Used for dark titles in light mode */
    --color-text-light: #334155; /* Used for standard body text */
    --color-text-muted: #64748b; /* Used for subtitles and secondary details */
    --color-text-dark: #0f172a;  /* Navigation links */
    --color-border: rgba(13, 92, 166, 0.1);
    --color-border-glow: rgba(13, 92, 166, 0.25);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.25s ease;
    --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    --glass-shadow: 0 10px 30px rgba(15, 32, 59, 0.06), 0 1px 3px rgba(15, 32, 59, 0.02);
    --card-glow-shadow: 0 12px 35px rgba(13, 92, 166, 0.12);
}

/* --- Reset & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-white);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Helper Utilities --- */
.section-padding {
    padding: 100px 0;
}

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

.text-gradient {
    background: linear-gradient(135deg, #0D5CA6 0%, #4CA824 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-blue { color: var(--color-primary); }
.text-green { color: var(--color-secondary); }
.text-orange { color: var(--color-accent); }

/* --- Top Info Bar --- */
.top-bar {
    background-color: #f1f5f9;
    border-bottom: 1px solid var(--color-border);
    font-size: 13px;
    color: var(--color-text-muted);
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span, .top-support span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-info span:last-child, .top-support span:last-child {
    margin-right: 0;
}

.top-info a:hover {
    color: var(--color-primary);
}

.noc-status {
    background: rgba(76, 168, 36, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
    color: var(--color-secondary);
    border: 1px solid rgba(76, 168, 36, 0.2);
    font-weight: 500;
}

/* --- Pulse Animations --- */
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 168, 36, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(76, 168, 36, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 168, 36, 0);
    }
}

/* --- Navigation Header --- */
.main-header {
    position: sticky;
    top: 0;
    background-color: var(--color-bg-glass-light);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: var(--transition-medium);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-area {
    display: flex;
    align-items: center;
    transition: transform var(--transition-fast);
}

.logo-area:hover {
    transform: scale(1.02);
}

.brand-logo {
    height: 52px;
    object-fit: contain;
}

/* Nav Links on Light Glass Header */
.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-dark);
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: var(--transition-fast);
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-text-dark);
    cursor: pointer;
}

/* --- Buttons System --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 28px;
    cursor: pointer;
    font-size: 15px;
    transition: var(--transition-medium);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #06407c 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(13, 92, 166, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 92, 166, 0.35);
    background: linear-gradient(135deg, #0f6cc2 0%, var(--color-primary) 100%);
}

.btn-secondary {
    background: #ffffff;
    color: var(--color-primary);
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 14px;
}

.btn-xs {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* --- Corporate Card System --- */
.glass-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.glass-card:hover {
    border-color: var(--color-border-glow);
    box-shadow: var(--card-glow-shadow);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(13, 92, 166, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 120px 0 80px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #ffffff;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.badge {
    background: rgba(13, 92, 166, 0.08);
    color: var(--color-primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(13, 92, 166, 0.2);
    margin-bottom: 24px;
    display: inline-block;
}

.hero-title {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--color-text-white);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Hero HUD graphics for Light Mode */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-globe-card {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-globe-card .glass-card {
    position: absolute;
    width: 280px;
    top: 20px;
    right: 20px;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(13, 92, 166, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: float 6s ease-in-out infinite;
}

.floating-globe-card .global-ops-card {
    top: auto;
    bottom: 20px;
    left: 20px;
    right: auto;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    animation-delay: -3s;
}

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

.hud-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.hud-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-white);
}

.hud-status {
    font-size: 11px;
    background: rgba(13, 92, 166, 0.1);
    color: var(--color-primary);
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.hud-status.live {
    background: rgba(76, 168, 36, 0.1);
    color: var(--color-secondary);
}

.hud-metrics {
    display: flex;
    justify-content: space-between;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 11px;
    color: var(--color-text-muted);
}

.metric-value {
    font-size: 16px;
    font-weight: 700;
}

/* Background gradient shapes on light bg (very subtle pastels) */
.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.05;
}

.shape-1 {
    width: 450px;
    height: 450px;
    background: var(--color-primary);
    top: -50px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--color-secondary);
    bottom: -50px;
    left: -100px;
}

/* --- Stats Bar --- */
.stats-section {
    background-color: var(--color-bg-dark);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 60px 0;
}

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

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: var(--color-border);
}

.stat-icon {
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.stat-number-wrapper {
    font-size: 38px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-text-white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-suffix {
    color: var(--color-secondary);
    margin-left: 2px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* --- Section Headers --- */
.section-header {
    max-width: 650px;
    margin: 0 auto 60px auto;
}

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

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: var(--color-text-white);
}

.header-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    margin: 0 auto 20px auto;
    border-radius: 20px;
}

.section-desc {
    font-size: 16px;
    color: var(--color-text-muted);
}

/* --- Core Services Section --- */
.services-section {
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    padding: 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 32, 59, 0.03);
    transition: transform var(--transition-medium), border-color var(--transition-fast), box-shadow var(--transition-medium);
}

.service-glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(13, 92, 166, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 92, 166, 0.25);
    box-shadow: 0 15px 35px rgba(15, 32, 59, 0.08);
}

.service-icon {
    font-size: 40px;
    color: var(--color-primary);
    margin-bottom: 24px;
    display: inline-block;
    transition: transform var(--transition-medium);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--color-secondary);
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--color-text-white);
}

.service-description {
    color: var(--color-text-muted);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.65;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.service-features li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-light);
}

/* --- Global Network Map Section --- */
.network-section {
    background-color: var(--color-bg-dark);
}

.map-container {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
    overflow: hidden;
}

.svg-map {
    width: 100%;
    height: auto;
    display: block;
}

.map-land {
    fill: rgba(13, 92, 166, 0.04);
    stroke: rgba(13, 92, 166, 0.12);
    stroke-width: 1.5;
    transition: fill var(--transition-fast);
}

.svg-map:hover .map-land {
    fill: rgba(13, 92, 166, 0.06);
}

.map-node {
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.node-regular {
    fill: var(--color-primary);
}

.node-hq {
    fill: var(--color-accent);
}

.map-node-pulse {
    fill: none;
    stroke-width: 1.5;
    transform-origin: center;
    animation: nodePulse 2s infinite ease-out;
}

.pulse-hq {
    stroke: var(--color-accent);
}

@keyframes nodePulse {
    0% {
        r: 5px;
        opacity: 0.8;
    }
    100% {
        r: 25px;
        opacity: 0;
    }
}

.connection-line {
    fill: none;
    stroke: rgba(13, 92, 166, 0.2);
    stroke-width: 1.5;
    stroke-dasharray: 6, 6;
    animation: flowLines 30s infinite linear;
}

@keyframes flowLines {
    to {
        stroke-dashoffset: -100;
    }
}

.map-label {
    fill: var(--color-text-muted);
    font-size: 10px;
    font-family: var(--font-heading);
    font-weight: 500;
    pointer-events: none;
}

.label-hq {
    fill: var(--color-accent);
    font-weight: 700;
    font-size: 12px;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
    flex-wrap: wrap;
}

.legend-item {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-light);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot-hq { background-color: var(--color-accent); }
.dot-pop { background-color: var(--color-primary); }

/* --- Operations Singapore HQ Details --- */
.hubs-section {
    background-color: #ffffff;
}

.hubs-grid-single {
    width: 100%;
}

.hub-card-single {
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 32, 59, 0.02);
}

.hub-image-placeholder {
    height: 250px;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Beautiful modern tech hub backgrounds for light theme */
.hq-bg {
    background: linear-gradient(135deg, rgba(13, 92, 166, 0.05) 0%, rgba(248, 250, 252, 0.95) 100%),
                radial-gradient(circle, #e2e8f0 0%, #f8fafc 100%);
}

/* Dot patterns for background placeholders */
.hub-image-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(13, 92, 166, 0.12) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.8;
}

.hub-overlay {
    position: absolute;
    bottom: 20px;
    left: 24px;
}

.hub-tag {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.hub-details {
    padding: 40px;
}

.hub-columns {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.hub-title {
    font-size: 26px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-white);
}

.hub-text {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.7;
}

.hub-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.hub-info-list li {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.5;
}

.hub-info-list i {
    width: 20px;
    color: var(--color-primary);
}

.hub-info-list a {
    color: var(--color-primary);
}

.hub-info-list a:hover {
    color: #06407c;
}

/* --- Live Traffic Console Section --- */
.dashboard-section {
    background-color: var(--color-bg-dark);
}

.dashboard-box {
    border: 1px solid var(--color-border);
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(15, 32, 59, 0.04);
    padding: 0 !important;
}

.dashboard-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--color-border);
    background: #f8fafc;
}

.db-title-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.db-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-secondary);
}

.db-title-area h4 {
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-text-white);
}

.db-actions {
    display: flex;
    gap: 10px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    border-bottom: 1px solid var(--color-border);
}

.db-metric-cards {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--color-border);
    background-color: #ffffff;
}

.db-metric-card {
    padding: 22px 24px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.db-metric-card:last-child {
    border-bottom: none;
}

.db-label {
    font-size: 12px;
    color: var(--color-text-muted);
}

.db-val-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.db-val {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-white);
}

.db-trend {
    font-size: 12px;
    font-weight: 600;
}

.db-chart-area {
    padding: 24px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.chart-header h5 {
    font-size: 13px;
    color: var(--color-text-white);
}

.chart-legend {
    font-size: 11px;
    color: var(--color-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.legend-line {
    width: 20px;
    height: 3px;
    background-color: var(--color-primary);
    display: inline-block;
    border-radius: 4px;
}

.canvas-wrapper {
    position: relative;
    flex-grow: 1;
    min-height: 220px;
}

.dashboard-console {
    background-color: #0b1329;
    padding: 14px 24px;
    font-family: monospace;
    font-size: 12px;
    color: #4da3ff;
    display: flex;
    gap: 10px;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}

.console-prompt {
    color: var(--color-secondary);
    user-select: none;
}

.console-text {
    color: #a8d1ff;
}

/* --- Contact Section --- */
.contact-section {
    background-color: #ffffff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.contact-info-panel {
    background-color: var(--color-bg-dark);
}

.contact-info-panel h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--color-text-white);
}

.contact-info-panel > p {
    color: var(--color-text-muted);
    font-size: 15px;
    margin-bottom: 35px;
}

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(13, 92, 166, 0.05);
    border: 1px solid rgba(13, 92, 166, 0.15);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-text h5 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--color-text-white);
}

.info-text p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.contact-link:hover {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 16px;
}

.social-links a:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Contact Form Panel */
.contact-form-panel {
    position: relative;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(13, 92, 166, 0.15);
}

.form-group select option {
    background-color: #ffffff;
    color: var(--color-text-white);
}

/* Checkbox Custom styling */
.checkbox-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    color: var(--color-text-muted);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--color-text-muted);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ span {
    color: var(--color-text-white);
}

/* Form Submission Overlay styling */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.success-content {
    text-align: center;
    max-width: 400px;
    transform: scale(0.9);
    transition: transform var(--transition-medium);
}

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

.success-icon {
    font-size: 60px;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--color-text-white);
}

.success-content p {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

/* --- Footer Area (Keep Dark Navy for Anchored Weight) --- */
.main-footer {
    background-color: #061121;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 80px 0 30px 0;
    color: #94a3b8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 52px;
    object-fit: contain;
    margin-bottom: 20px;
    background-color: #ffffff; /* Wrap footer logo in capsule or lightbg to show it */
    border-radius: 30px;
    padding: 4px 16px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #94a3b8;
}

.copyright-text {
    font-size: 12px;
    display: block;
    color: #64748b;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
    color: #ffffff;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-size: 14px;
    color: #94a3b8;
}

.footer-col ul a:hover {
    color: #38bdf8;
    padding-left: 4px;
}

.footer-compliance {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #94a3b8;
}

.footer-security-badges {
    display: flex;
    gap: 12px;
}

.badge-item {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.08);
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 24px;
    font-size: 13px;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: #38bdf8;
}

.made-by {
    font-size: 13px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #ffffff;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        height: auto;
    }
    
    .floating-globe-card {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .floating-globe-card .glass-card,
    .floating-globe-card .global-ops-card {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 50%;
        max-width: 320px;
        animation: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
    
    .hub-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .db-metric-cards {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        flex-wrap: wrap;
    }
    
    .db-metric-card {
        width: 50%;
        border-right: 1px solid var(--color-border);
    }
    
    .db-metric-card:nth-child(2n) {
        border-right: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Sliding Navigation Drawer on Mobile */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #ffffff;
        border-top: 1px solid var(--color-border);
        transition: var(--transition-medium);
        padding: 40px 24px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .nav-link {
        color: var(--color-text-dark);
        font-size: 18px;
    }
    
    .floating-globe-card {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-globe-card .glass-card,
    .floating-globe-card .global-ops-card {
        width: 100%;
        max-width: 320px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .db-metric-cards {
        flex-direction: column;
    }
    
    .db-metric-card {
        width: 100%;
        border-right: none;
    }
}

@media (max-width: 580px) {
    .top-bar {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item::after {
        display: none !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        height: 44px;
    }
}
