﻿:root {
    /* Color Palette - Premium White / Light Mode */
    --surface-main: #ffffff;
    --surface-container: #f8f9fa;
    --surface-container-low: #f1f3f4;
    --on-surface: #202124;
    --on-surface-variant: #5f6368;
    --primary: #1a73e8;
    --primary-hover: #174ea6;
    --outline: #dadce0;
    
    --font-family-sans: 'Google Sans Regular', 'Google Sans', 'Google Sans Flex', system-ui, -apple-system, sans-serif;
    --font-family-mono: 'Google Sans Code', monospace;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-6xl: 144px;
    
    /* Geometry */
    --shape-corner-md: 8px;
    --shape-corner-lg: 16px;
    --shape-corner-xl: 24px;
    --shape-corner-pill: 999px;
    
    /* Layout */
    --page-margin: 24px;
    --max-width: 1280px;
    
    /* Transitions */
    --transition-standard: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
    :root {
        --page-margin: 48px;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-sans);
    background-color: var(--surface-main);
    color: var(--on-surface);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    cursor: none; /* Hide default cursor to use custom one */
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Custom Cursor */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.cursor-dot.active, .cursor-ring.active {
    opacity: 1;
}

.cursor-ring.hovering {
    width: 48px;
    height: 48px;
    background-color: rgba(26, 115, 232, 0.1);
}

/* Simple Tour Button - Black Pink Vibes (matching Auto Tour style) */
#simple-tour-btn {
    position: relative;
    overflow: hidden;
    background: #000000;
    border: 2px solid #ff69b4;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
    animation: blackPinkGlow 3s ease-in-out infinite alternate;
}

#simple-tour-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 105, 180, 0.5), transparent);
    transform: skewX(-25deg);
    animation: pinkShineSlow 8s infinite;
}

#simple-tour-btn:hover {
    background: #1a1a1a;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.6);
    transform: translateY(-3px);
}

#simple-tour-btn.active {
    background: #dc3545;
    border-color: #dc3545;
    box-shadow: 0 0 30px rgba(220, 53, 69, 0.8);
}

@keyframes blackPinkGlow {
    0% {
        box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
    }
    100% {
        box-shadow: 0 0 25px rgba(255, 105, 180, 0.7);
    }
}

@keyframes pinkShineSlow {
    0% { left: -100%; }
    50% { left: 200%; }
    100% { left: 200%; }
}

/* Simple Tour Controls */
.simple-tour-controls {
    position: fixed;
    top: 80px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 16px;
    border-radius: var(--shape-corner-pill);
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.3);
    z-index: 999;
    border: 2px solid rgba(255, 105, 180, 0.5);
}

.step-indicator {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--on-surface);
    padding: 0 8px;
    white-space: nowrap;
}

.btn-prev,
.btn-next,
.btn-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 16px;
    border-radius: var(--shape-corner-pill);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: none;
    transition: all var(--transition-standard);
    border: 1px solid var(--outline);
    background-color: #ffffff;
    color: var(--on-surface);
}

.btn-prev,
.btn-next {
    border: 1px solid #000000;
}

.btn-prev:hover,
.btn-next:hover {
    background-color: var(--primary);
    color: var(--surface-main);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-prev:disabled,
.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-prev:disabled:hover,
.btn-next:disabled:hover {
    background-color: #ffffff;
    color: var(--on-surface);
    border-color: var(--outline);
}

.btn-close {
    position: relative;
    overflow: hidden;
    background-color: #dc3545;
    border: none;
    padding: 8px;
    color: #ffffff;
}

.btn-close::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.btn-close:hover {
    background-color: #c8323f;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.7);
    transform: none;
}

.btn-close:hover::before {
    left: 200%;
}

.btn-prev .google-symbols,
.btn-next .google-symbols,
.btn-close .google-symbols {
    font-size: 18px;
}

@media (max-width: 768px) {
    .simple-tour-controls {
        top: auto;
        bottom: 24px;
        right: 50%;
        transform: translateX(50%);
        left: auto;
        width: 90%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .step-indicator {
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--transition-standard), backdrop-filter var(--transition-standard), border-bottom var(--transition-standard);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--outline);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px var(--page-margin);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--on-surface);
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #000000 !important; /* Fully black */
    -webkit-font-smoothing: auto;
    text-rendering: optimizeLegibility;
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 32px;
    }
    
    .nav-links a {
        font-weight: 500;
        font-size: 0.95rem;
        color: var(--on-surface-variant);
        transition: color var(--transition-standard);
    }
    
    .nav-links a:hover {
        color: var(--on-surface);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--shape-corner-pill);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: none; /* Let custom cursor handle this */
    transition: all var(--transition-standard);
    border: 1px solid transparent;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--on-surface);
    color: var(--surface-main);
}

.btn-primary:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: var(--surface-container);
    color: var(--on-surface);
    border-color: var(--outline);
}

.btn-secondary:hover {
    background-color: var(--surface-container-low);
    transform: translateY(-2px);
}

.btn-inverse {
    background-color: var(--surface-main);
    color: var(--on-surface);
}

.btn-inverse:hover {
    background-color: var(--surface-container);
    transform: translateY(-2px);
}

.btn-outline-inverse {
    background-color: transparent;
    color: var(--surface-main);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-inverse:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-6xl) + 60px) var(--page-margin) var(--space-4xl);
    text-align: center;
    overflow: hidden;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 180px; /* Keep it constrained so it doesn't take over the screen */
    object-fit: contain;
}

.hero-subtitle {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
    font-family: var(--font-family-sans);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.hero-description {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--on-surface-variant);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Typing Effect */
.typed-container {
    display: inline-block;
    position: relative;
    color: var(--primary);
    white-space: nowrap;
}

.blinking-cursor {
    font-weight: 100;
    font-size: 1.2em;
    color: var(--primary);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Common Section Styles */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-6xl) var(--page-margin);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -1px;
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--on-surface-variant);
    margin-bottom: var(--space-4xl);
}

/* Product Section (Grid) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    background: var(--surface-container);
    border-radius: var(--shape-corner-xl);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform var(--transition-standard), box-shadow var(--transition-standard);
    border: 1px solid var(--outline);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.size-1-2 { grid-column: span 12; }
.size-1-3 { grid-column: span 12; }
.size-2-3 { grid-column: span 12; }

@media (min-width: 768px) {
    .size-1-2 { grid-column: span 6; }
    .size-1-3 { grid-column: span 4; }
    .size-2-3 { grid-column: span 8; }
}

.card-visual {
    aspect-ratio: 16 / 9;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.abstract-bg-1 { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.abstract-bg-2 { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.abstract-bg-3 { background: linear-gradient(135deg, #fff8e1, #ffecb3); }
.abstract-bg-4 { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }

.large-icon {
    font-size: 80px;
    color: var(--on-surface);
    opacity: 0.8;
    font-variation-settings: 'FILL' 0, 'wght' 200;
}

.card-content {
    padding: var(--space-xl);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--surface-main);
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.card-content p {
    color: var(--on-surface-variant);
    font-size: 1.1rem;
}

/* Device Support Section */
.device-support-section {
    padding: 0;
}
.product-section .section-container {
    padding-top: var(--space-4xl);
    padding-bottom: 0;
}
.device-support-section .section-container {
    padding-top: var(--space-4xl);
    padding-bottom: 0;
}

.device-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

@media (min-width: 768px) {
    .device-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .device-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.device-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--shape-corner-xl);
    padding: var(--space-2xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.device-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.7);
}

.device-visual {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: var(--space-xl);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hologram-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(26, 115, 232, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    animation: pulseGlow 3s infinite alternate;
}

.floating-icon {
    font-size: 64px !important;
    color: var(--on-surface);
    z-index: 2;
    animation: floatIcon 4s ease-in-out infinite;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.device-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    letter-spacing: -0.5px;
}

.device-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.badge {
    background: var(--surface-container);
    color: var(--on-surface);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--outline);
    transition: all 0.3s ease;
}

.device-card:hover .badge {
    background: var(--on-surface);
    color: var(--surface-main);
    border-color: var(--on-surface);
}

/* Delay animations for organic feel */
.delay-1 .floating-icon { animation-delay: 0.5s; }
.delay-2 .floating-icon { animation-delay: 1s; }
.delay-3 .floating-icon { animation-delay: 1.5s; }
.delay-1 .hologram-effect { animation-delay: 0.5s; }
.delay-2 .hologram-effect { animation-delay: 1s; }
.delay-3 .hologram-effect { animation-delay: 1.5s; }

@keyframes floatIcon {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}

/* Coverage Support Section */
.coverage-section {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    overflow: visible;
    margin-top: 0;
}
.coverage-section .section-container {
    padding-top: var(--space-4xl);
}

.map-viewport {
    margin: -20px auto 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: var(--shape-corner-xl);
}
.map-container {
    position: relative;
    width: 140%;
    max-width: 140%;
    margin-left: -40%;
    margin-top: -15%;
    margin-bottom: -15%;
    aspect-ratio: 950 / 620;
    background: transparent;
}

.real-map-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('assets/world-map.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.25;
    pointer-events: none;
    filter: grayscale(100%) invert(0.2);
}

/* ===== Region Color Highlight SVG Overlay ===== */
.region-highlight-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.region-highlight {
    filter: url(#region-glow);
    transition: opacity 0.3s ease;
}

/* Jordan — Warm Amber/Gold */
.malaysia-region { fill: #3b82f6; fill-opacity: 0.8; }
.thailand-region { fill: #a855f7; fill-opacity: 0.8; }
.vietnam-region { fill: #f97316; fill-opacity: 0.8; }
.hongkong-region { fill: #ec4899; fill-opacity: 0.9; }
.taiwan-region { fill: #84cc16; fill-opacity: 0.8; }
.singapore-region { fill: #ef4444; fill-opacity: 0.8; }

.jordan-region {
    fill: #f59e0b;
    fill-opacity: 0.72;
    stroke: #fbbf24;
    stroke-width: 0.8;
    stroke-opacity: 0.9;
}

/* Singapore — Vivid Coral/Red (distinctive dot) */
.singapore-region {
    fill: #ef4444;
    fill-opacity: 0.9;
    stroke: #fca5a5;
    stroke-width: 1.5;
    stroke-opacity: 1;
    filter: url(#region-glow);
}

/* Indonesia — Emerald Green */
.indonesia-region {
    fill: #10b981;
    fill-opacity: 0.68;
    stroke: #34d399;
    stroke-width: 0.6;
    stroke-opacity: 0.85;
}

/* Australia — Sky Blue / Cyan */
.australia-region {
    fill: #06b6d4;
    fill-opacity: 0.6;
    stroke: #67e8f9;
    stroke-width: 0.8;
    stroke-opacity: 0.85;
}

/* New Zealand — Purple/Violet */
.newzealand-region {
    fill: #8b5cf6;
    fill-opacity: 0.72;
    stroke: #c4b5fd;
    stroke-width: 0.8;
    stroke-opacity: 0.9;
}

/* Connection Lines */
.connection-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.connection-line {
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0.4;
    animation: dashLoop 4s linear infinite;
}

@keyframes dashLoop {
    to {
        stroke-dashoffset: 0;
    }
}

/* POI Markers */
.poi-marker {
    position: absolute;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
}

.poi-flag {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: auto;
    border-radius: 4px;
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    box-shadow: 0 0 0 1px rgba(255,255,255,0.8);
}

.radar-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary);
    transition: all 0.3s ease;
}

.radar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: radarPulse 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.poi-marker.active .radar-dot,
.poi-marker:hover .radar-dot {
    background-color: #fff;
    box-shadow: 0 0 20px #fff;
    transform: translate(-50%, -50%) scale(1.3);
}

@keyframes radarPulse {
    0% { transform: translate(-50%, -50%) scale(0.1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Tooltips */
.poi-tooltip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: var(--space-lg);
    border-radius: var(--shape-corner-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: max-content;
    max-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 20;
    pointer-events: none;
}

.poi-marker.active .poi-tooltip,
.poi-marker:hover .poi-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.poi-tooltip h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.poi-country {
    font-size: 0.9rem;
    color: var(--on-surface-variant);
    margin-bottom: 12px;
    font-weight: 500;
}

.poi-clients {
    list-style: none;
    padding: 0;
    margin: 0;
}

.poi-clients li {
    font-size: 0.85rem;
    padding-left: 14px;
    position: relative;
    margin-bottom: 6px;
    color: var(--on-surface);
}

.poi-clients li::before {
    content: "â€¢";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Our Value Customer Marquee */
.value-customer-section {
    padding-top: 0;
    padding-bottom: var(--space-4xl);
    margin-top: 0;
}

.value-customer-section .section-container {
    padding-top: 0;
}

.customer-marquee {
    overflow: hidden;
    padding: var(--space-md) 0 var(--space-xl) 0;
    background: var(--surface-main);
    display: flex;
    white-space: nowrap;
    position: relative;
    /* Very subtle white fade on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
    flex-shrink: 0;
}

.marquee-track img {
    height: 55px;
    max-width: 200px;
    object-fit: contain;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


.customer-title-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: var(--space-md);
}

.customer-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    text-align: center;
    
    /* Soft White Shining Text Effect */
    background: linear-gradient(
        110deg,
        var(--on-surface) 0%,
        var(--on-surface) 45%,
        #a8a8a8 50%,
        var(--on-surface) 55%,
        var(--on-surface) 100%
    );
    background-size: 250% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    /* Very slow animation */
    animation: textShineCustomer 8s linear infinite;
}

@keyframes textShineCustomer {
    0% { background-position: 250% center; }
    100% { background-position: -50% center; }
}

/* Footer */
.footer {
    background-color: var(--surface-container);
    border-top: 1px solid var(--outline);
    padding: var(--space-4xl) 0 var(--space-lg);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-4xl);
    margin-bottom: var(--space-4xl);
}

@media (min-width: 768px) {
    .footer-main {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    color: var(--on-surface-variant);
}

.footer-links {
    display: flex;
    gap: var(--space-4xl);
    flex-wrap: wrap;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.link-column h4 {
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.link-column a {
    color: var(--on-surface-variant);
    transition: color var(--transition-standard);
}

.link-column a:hover {
    color: var(--on-surface);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    border-top: 1px solid var(--outline);
    padding-top: var(--space-xl);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-google a, .footer-legal a {
    color: var(--on-surface-variant);
    font-size: 0.9rem;
    margin-right: var(--space-xl);
    transition: color var(--transition-standard);
}

.footer-google a:hover, .footer-legal a:hover {
    color: var(--on-surface);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Floating Icon Bubble Arch (Antigravity Style) */
.icon-list-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    padding: 100px 0 40px 0;
    margin-top: var(--space-lg);
    margin-bottom: -180px; /* Pull the next section even closer */
    z-index: 2;
}

.icon-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: max-content;
    margin: 0 auto;
}

.icon-bubble {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(var(--curve-offset, 0px));
    animation: floatBubble 3s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    color: var(--on-surface);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-bubble:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.icon-bubble .google-symbols {
    font-size: 36px;
    font-weight: 300;
}

@keyframes floatBubble {
    0%, 100% {
        transform: translateY(var(--curve-offset, 0px));
    }
    50% {
        transform: translateY(calc(var(--curve-offset, 0px) - 12px));
    }
}

/* Dynamic Map Info Panel */
.map-info-panel {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(120%);
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--shape-corner-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: var(--space-xl);
    z-index: 10;
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    pointer-events: none;
}

.map-info-panel.active {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: relative;
}

.panel-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: var(--shape-corner-sm);
    background: #fff;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.close-panel {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: -10px;
    top: -10px;
    color: var(--on-surface-variant);
    transition: color 0.2s ease, transform 0.2s ease;
}

.close-panel:hover {
    color: var(--on-surface);
    transform: scale(1.1);
}

.info-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-label {
    font-size: 0.75rem;
    color: var(--on-surface-variant);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.info-value {
    font-weight: 500;
    font-size: 1rem;
    color: var(--on-surface);
}

/* Clickable Client in Tooltip */
.client-clickable {
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.client-clickable:hover {
    color: var(--primary);
    padding-left: 4px;
}
.poi-marker.active .poi-tooltip,
.poi-marker:hover .poi-tooltip {
    pointer-events: auto;
}

/* Floating Certification Badges */
.certification-container {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.certification-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.5px;
}

.certification-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-4xl);
    flex-wrap: wrap;
}

.badge-item {
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-badge {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    animation: floatIcon 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.badge-item.delay-1 .floating-badge {
    animation-delay: 0.5s;
}

.badge-item.delay-2 .floating-badge {
    animation-delay: 1s;
}

/* Interactive Card Styles */
.interactive-card {
    cursor: pointer;
    position: relative;
}

.interactive-card::after {
    content: "chevron_right";
    font-family: 'Google Symbols';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.interactive-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Modal Overlay & Container */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: rgba(255, 255, 255, 0.95);
    width: 90%;
    max-width: 600px;
    border-radius: var(--shape-corner-xl);
    padding: var(--space-4xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--surface-container);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--on-surface-variant);
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--on-surface);
    color: var(--surface-main);
    transform: rotate(90deg);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: var(--space-xl);
}

.modal-icon-container {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--surface-container);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 32px;
}

.modal-icon-container .google-symbols {
    font-size: 36px;
}

#modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--on-surface);
    margin: 0;
    line-height: 1.2;
}

.modal-body p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--on-surface-variant);
    margin: 0;
}

/* Horizontal Tabs Layout */
.vertical-tabs-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-4xl);
}

.tabs-sidebar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

/* ===== Samsung OneUI Pill Button Style ===== */
.tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f0f0f5;
    border: 1.5px solid transparent;
    padding: 16px 32px;
    text-align: center;
    font-family: 'Google Sans Flex', 'Google Sans', 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #3c3c3c;
    border-radius: 50px; /* OneUI full pill */
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    white-space: nowrap;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    -webkit-tap-highlight-color: transparent;
}

.tab-btn .google-symbols {
    font-size: 20px;
    transition: all 0.22s ease;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.tab-btn:hover {
    background: #e4e4ec;
    border-color: #d0d0dc;
    color: #111133;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.11);
}

.tab-btn:active {
    transform: scale(0.97) translateY(0);
    box-shadow: none;
}

.tab-btn.active .google-symbols {
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 24;
    transform: scale(1.1);
}

/* â”€â”€ Our Services â†’ Samsung Blue â”€â”€ */
.tab-btn[data-target="pane-services"].active {
    background: linear-gradient(135deg, #1428A0 0%, #1c3fd4 100%);
    border-color: #1428A0;
    color: #ffffff;
    box-shadow: 0 5px 18px rgba(20, 40, 160, 0.38);
    transform: translateY(-2px);
}

.tab-btn[data-target="pane-services"]:not(.active):hover {
    background: rgba(20, 40, 160, 0.08);
    border-color: rgba(20, 40, 160, 0.2);
    color: #1428A0;
}

/* â”€â”€ Team Line Up â†’ Emerald Green â”€â”€ */
.tab-btn[data-target="pane-lineup"].active {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-color: #059669;
    color: #ffffff;
    box-shadow: 0 5px 18px rgba(5, 150, 105, 0.38);
    transform: translateY(-2px);
}

.tab-btn[data-target="pane-lineup"]:not(.active):hover {
    background: rgba(5, 150, 105, 0.08);
    border-color: rgba(5, 150, 105, 0.2);
    color: #059669;
}

/* â”€â”€ Achievements â†’ Amber Gold â”€â”€ */
.tab-btn[data-target="pane-achievements"].active {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    border-color: #d97706;
    color: #ffffff;
    box-shadow: 0 5px 18px rgba(217, 119, 6, 0.38);
    transform: translateY(-2px);
}

.tab-btn[data-target="pane-achievements"]:not(.active):hover {
    background: rgba(217, 119, 6, 0.08);
    border-color: rgba(217, 119, 6, 0.2);
    color: #d97706;
}

.tabs-content-area {
    flex: 1;
    position: relative;
    min-height: 500px;
}

.tabs-content-area .device-grid {
    margin-top: 0;
}

.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-pane.active {
    display: block;
    /* Use a slight delay for display:block to transition smoothly if needed, but standard CSS works best with opacity/transform in JS */
}

.tab-pane.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments for Horizontal Tabs */
@media (max-width: 700px) {
    .tabs-sidebar {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: 100%;
        overflow-x: auto;
        padding-bottom: var(--space-md);
        white-space: nowrap;
    }
}

/* High-End Bespoke Corporate Architecture (Org Chart) */
.corporate-org-frame {
    background: #ffffff;
    overflow-x: hidden;
    width: 100%;
    
}


.org-topology-header {
    margin-bottom: 32px;
    text-align: center;
}

.topology-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 4px;
}

.topology-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.org-tree-structure {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1384px;
    margin: 0 auto;
}

/* Tree Nodes */
.org-tree-node {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 28px;
    border-radius: 14px;
    transition: all 0.25s ease;
    z-index: 2;
    position: relative;
}

/* Member Count Badge Pill */
.node-member-pill {
    position: absolute;
    top: 14px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    background: rgba(26, 115, 232, 0.08);
    color: var(--primary);
    border: 1px solid rgba(26, 115, 232, 0.25);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.node-executive .node-member-pill {
    background: rgba(56, 189, 248, 0.12);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.node-member-pill .google-symbols {
    font-size: 14px;
}

/* Executive Node (Head of B2B) */
.node-top-executive {
    background: linear-gradient(135deg, #ff7a00 0%, #ff5200 100%);
    color: #ffffff;
    min-width: 340px;
    box-shadow: 0 12px 28px -6px rgba(255, 94, 0, 0.35);
    border: 1px solid #ff8a3d;
}

.node-top-executive:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px -6px rgba(255, 94, 0, 0.45);
}

.node-top-executive .node-member-pill {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.node-top-executive .node-label,
.node-top-executive .node-desc {
    color: rgba(255, 255, 255, 0.9);
}

.node-top-executive .node-name {
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.node-top-executive .crown-badge {
    width: max-content;
    height: auto;
    padding: 6px 16px;
    background: #ffffff;
    color: #ff5200;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 16px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.node-top-executive .crown-badge .google-symbols {
    font-size: 20px;
}

.node-executive {
    background: #0f172a;
    color: #ffffff;
    min-width: 320px;
    box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.25);
    border: 1px solid #1e293b;
}

.node-executive:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px -6px rgba(15, 23, 42, 0.35);
}

.node-executive .node-badge-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    flex-shrink: 0;
}

.node-executive .node-badge-icon .google-symbols {
    font-size: 24px;
}

.node-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.node-executive .node-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #94a3b8;
    text-transform: uppercase;
}

.node-executive .node-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Leader Node (APAC Leader) */
.node-leader {
    background: #ffffff;
    border: 1.5px solid var(--primary);
    min-width: 360px;
    box-shadow: 0 8px 20px -4px rgba(26, 115, 232, 0.12);
}

.node-leader:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -4px rgba(26, 115, 232, 0.2);
}

.node-leader .node-badge-icon {
    width: 44px;
    height: 44px;
    background: rgba(26, 115, 232, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.node-leader .node-badge-icon.star-badge-pill {
    width: auto;
    height: auto;
    padding: 6px 14px;
    background: #fffbeb;
    color: #b45309;
    border: 1.5px solid #fde68a;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.node-leader .node-badge-icon .google-symbols {
    font-size: 24px;
}

.node-leader .node-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary);
    text-transform: uppercase;
}

.node-leader .node-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

/* Centered Node Layout & Descriptions */
.org-tree-node.centered {
    flex-direction: column;
    text-align: center;
    max-width: 440px;
    padding: 22px 28px;
}

.text-center {
    text-align: center !important;
    align-items: center !important;
}

.node-desc {
    font-size: 0.78rem;
    line-height: 1.45;
    margin-top: 6px;
    margin-bottom: 0;
}

.node-executive .node-desc {
    color: #94a3b8;
}

.node-leader .node-desc {
    color: #64748b;
    white-space: nowrap;
    font-size: 0.72rem;
}

.dept-desc {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.45;
}

/* Exact Map-Style Vector Connection Lines (Identical to POI Map Lines) */
.tree-connector-v {
    width: 2px;
    height: 48px;
    position: relative;
}

.tree-connector-fork {
    width: 100%;
    max-width: 464px;
    height: 64px;
    margin: 0 auto;
    position: relative;
}

.fork-svg-canvas {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.fork-svg-canvas .connection-line {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    opacity: 0.85;
    filter: drop-shadow(0 0 6px rgba(26, 115, 232, 0.5));
    animation: verticalStrokeLoop 3.0s linear infinite;
}

.fork-svg-canvas .connection-line-static {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.75;
    filter: drop-shadow(0 0 4px rgba(26, 115, 232, 0.4));
    animation: none !important;
}

.org-svg-line {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.org-svg-line .connection-line {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    opacity: 0.85;
    filter: drop-shadow(0 0 6px rgba(26, 115, 232, 0.5));
    animation: verticalStrokeLoop 5.5s linear infinite;
}

.org-svg-line .connection-line-static {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2.5;
    stroke-linecap: round;
    opacity: 0.7;
    filter: drop-shadow(0 0 4px rgba(26, 115, 232, 0.4));
    animation: none !important;
}

@keyframes verticalStrokeLoop {
    0% {
        stroke-dashoffset: 200;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* Departmental Roster Grid */
.tree-department-grid {
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 904px;
    margin: 0 auto;
    justify-content: center;
}

.dept-card {
    flex: 1 1 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.dept-card:hover {
    border-color: #cbd5e1;
}

/* Top Fork: Bayu â†’ Agustina / Rizaldi.
   Width is fixed to exactly match the natural (unwrapped) width of the branch
   row below it â€” Agustina's card (440) + gap (40) + Rizaldi's two cards
   side-by-side (440 + 24 + 440 = 904) = 1384px â€” so the crossbar endpoints
   always land exactly on each column's center, with no pixel guesswork. */
.org-top-fork {
    width: 100%;
    max-width: 1384px;
    height: 50px;
    margin: 0 auto;
    position: relative;
}

/* Branch Row: Agustina's column and Rizaldi's column sit side-by-side, each
   sized to its own content (not forced into equal-width tracks), so a leader
   node is always directly above its own department card(s). */
.org-branch-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}

.org-branch-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
}

/* Rizaldi's Support Account Manager + Mobility Expert Engineer, kept side-by-side at full card size */
.org-rizaldi-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 2.654%;
    width: 100%;
    justify-content: center;
}

/* Small fork inside Rizaldi's column: splits into Support Account Manager (left) and Mobility Expert Engineer (right).
   Same fixed-width technique as .org-top-fork, matched to the 904px natural width of .org-rizaldi-cards. */
.org-sub-fork {
    width: 100%;
    height: 50px;
    margin: 0 auto;
    position: relative;
}

@media (max-width: 900px) {
    .org-top-fork,
    .org-sub-fork {
        display: none;
    }

    .org-rizaldi-cards {
        flex-wrap: wrap;
    }

    .org-leaders-line,
    .org-dept-cards-row {
        flex-wrap: wrap;
        gap: 24px;
    }

    .org-leaders-line .org-tree-node,
    .org-dept-cards-row > .org-dept-column:nth-child(1),
    .org-dept-cards-row > .org-dept-column:nth-child(2) {
        flex: 1 1 100%;
        width: 100%;
    }
}

.dept-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.dept-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sam-bg {
    background: #eff6ff;
    color: #2563eb;
}

.eng-bg {
    background: #ecfdf5;
    color: #059669;
}

.dept-title-meta h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.dept-count {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
}

.dept-roster {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.roster-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 6px;
    padding: 10px 14px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.roster-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transform: translateX(2px);
}

/* Animated Node Icons */
.anim-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.anim-icon.float {
    animation: iconFloat 3s ease-in-out infinite;
}

.anim-icon.pulse {
    animation: iconPulse 2.5s ease-in-out infinite;
}

.anim-icon.bounce {
    animation: iconBounce 3.5s ease-in-out infinite;
}

.anim-icon.spin {
    animation: iconSpin 10s linear infinite;
}

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

@keyframes iconPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(26,115,232,0)); }
    50% { transform: scale(1.12); filter: drop-shadow(0 0 8px rgba(26,115,232,0.5)); }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px) scale(1.05); }
}

@keyframes iconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Animated Live Status Dots for Roster Names */
.roster-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981; /* Live green dot */
    box-shadow: 0 0 8px #10b981;
    position: relative;
    flex-shrink: 0;
    display: inline-block;
}

.roster-bullet::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 1.5px solid #10b981;
    border-radius: 50%;
    opacity: 0;
    animation: liveBeaconPulse 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.roster-bullet.eng {
    background: #2563eb; /* Live electric blue dot for engineers */
    box-shadow: 0 0 8px #2563eb;
}

.roster-bullet.eng::after {
    border-color: #2563eb;
}

@keyframes liveBeaconPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

.roster-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    flex: 1;
    min-width: 0;
    margin-left: 10px;
}

.roster-role-chip {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #475569;
}

.roster-flags-group {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    background: #f8fafc;
    padding: 3px 6px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.roster-flag-icon {
    width: 32px;
    height: 22px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.roster-flag-icon:hover {
    transform: scale(1.25);
    z-index: 2;
}

.roster-leader-chip {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    background: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    letter-spacing: 0.3px;
}

.yellow-star {
    font-size: 14px !important;
    color: #f59e0b;
    filter: drop-shadow(0 0 2px rgba(245, 158, 11, 0.6));
}

.roster-role-chip.eng {
    background: #f0fdf4;
    color: #166534;
}

/* Responsive Adjustments */
@media (max-width: 850px) {
    .dept-card {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
    }
}

/* Rizaldi Profile Clickable Node & Floating Card (PNM Style - No Backdrop Blur) */
.clickable-profile {
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.clickable-profile:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 36px -4px rgba(26, 115, 232, 0.25);
    border-color: #2563eb;
}

.profile-hover-hint {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #1e293b;
    color: #38bdf8;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 12px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transition: all 0.25s ease;
    pointer-events: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.3);
    z-index: 10;
}

.clickable-profile:hover .profile-hover-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.profile-hover-hint .google-symbols {
    font-size: 13px;
}

/* Floating Card Panel - Side-by-Side Horizontal Layout (Left: Full Uncropped Photo, Right: Info) */
.pnm-floating-card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    width: 96%;
    max-width: 1140px;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 35px 90px -15px rgba(15, 23, 42, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border: 2px solid #3b82f6;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    text-align: left;
}

.pnm-floating-card.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.pnm-card-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 20;
}

.pnm-card-close:hover {
    background: #0f172a;
    color: #ffffff;
    transform: rotate(90deg);
}

/* LEFT COLUMN: 100% Edge-to-Edge Full Photo (No Navy Blue Background, Edge-to-Edge Precision) */
.pnm-card-left-photo {
    flex: 0 0 500px;
    background: transparent;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.pnm-full-uncropped-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 0;
    display: block;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.pnm-card-left-photo:hover .pnm-full-uncropped-photo {
    transform: scale(1.05);
}

.pnm-card-left-photo .pnm-photo-badge {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #fffbeb;
    color: #b45309;
    border: 1.5px solid #fde68a;
    padding: 8px 22px;
    border-radius: 18px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    white-space: nowrap;
    z-index: 10;
}

/* RIGHT COLUMN: Info & Clean List (Larger, Highly Readable Text & Elements) */
.pnm-card-right-info {
    flex: 1;
    padding: 32px 36px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pnm-card-header {
    border-bottom: 1.5px solid #f1f5f9;
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.pnm-card-tag {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
}

.pnm-card-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.15;
}

.pnm-card-role {
    font-size: 1.05rem;
    font-weight: 600;
    color: #475569;
    display: block;
    margin-top: 6px;
}

.pnm-card-body {
    padding: 0;
}

.pnm-body-title {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #0f172a;
    text-transform: uppercase;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pnm-body-title .google-symbols {
    color: var(--primary);
    font-size: 22px;
}

.pnm-clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pnm-clean-list li {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 14px 18px;
    border-radius: 14px;
    line-height: 1.35;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.pnm-clean-list .gold-icon {
    color: #d97706;
    font-size: 24px;
    flex-shrink: 0;
}

.pnm-clean-list .blue-icon {
    color: #2563eb;
    font-size: 24px;
    flex-shrink: 0;
}

.pnm-clean-list .cyan-icon {
    color: #0891b2;
    font-size: 24px;
    flex-shrink: 0;
}

/* Mobile Responsiveness for Floating Card */
@media (max-width: 640px) {
    .pnm-floating-card.horizontal-layout {
        flex-direction: column;
        max-width: 94%;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .pnm-card-left-photo {
        flex: none;
        height: 240px;
    }
}

/* Global Team Award Lightbox Modal Styling */
.award-gallery-modal {
    flex-direction: column !important;
    padding: 32px !important;
    max-width: 1060px !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    background: #ffffff !important;
}

.award-modal-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1.5px solid #f1f5f9;
}

.award-modal-badge {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #b45309;
    background: #fffbeb;
    border: 1px solid #fde68a;
    padding: 4px 14px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.award-modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.award-modal-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    margin: 6px 0 0 0;
}

.award-modal-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}

.award-image-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.award-image-card:hover {
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    border-color: #3b82f6;
    transform: translateY(-4px);
}

.award-image-label {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.award-full-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    max-height: 520px;
    object-fit: contain;
    border-radius: 14px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    display: block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .award-modal-gallery {
        grid-template-columns: 1fr;
    }
}

/* Featured Award Card Photo Styling (For Global Team Award Card) */
.award-visual-photo {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #0f172a;
    margin-bottom: 14px;
    border: 1px solid #e2e8f0;
}

.device-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.device-card:hover .device-card-photo {
    transform: scale(1.08);
}

.award-photo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.4);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.68rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}





/* ===== Leaders Line: Agustina and Rizaldi side-by-side in same row ===== */
.org-leaders-line {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 2.89%;
    width: 100%;
    max-width: 1384px;
    margin: 0 auto;
    position: relative;
    padding-top: 0;
    margin-top: -10px;
}

.org-leaders-line .org-tree-node {
    flex: 0 0 28.90%;
    width: 28.90%;
    min-width: 0;
    position: relative;
    margin-top: 0;
}

/* Department Cards Row Below Leaders */
.org-dept-cards-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2.89%;
    width: 100%;
    max-width: 1384px;
    margin: 0 auto;
    padding-top: 0px;
}

.org-dept-cards-row > .org-dept-column:nth-child(1) {
    flex: 0 0 31.79%;
    width: 31.79%;
    min-width: 0;
}

.org-dept-cards-row > .org-dept-column:nth-child(2) {
    flex: 0 0 65.31%;
    width: 65.31%;
    min-width: 0;
}
/* ============================================================================
   Idle Auto-Scroll Indicator
============================================================================ */
#idle-scroll-indicator {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 15, 30, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 10px 18px 10px 14px;
    color: #ffffff;
    font-family: 'Google Sans Flex', 'Google Sans', 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);

    /* Hidden by default */
    opacity: 0;
    transform: translateY(16px) scale(0.93);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#idle-scroll-indicator.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.idle-icon {
    font-size: 10px;
    color: #60efff;
    animation: idle-pulse 1.4s ease-in-out infinite;
}

@keyframes idle-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.idle-label {
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    font-size: 0.75rem;
}

.idle-progress-bar {
    width: 64px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
}

.idle-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #60efff, #1428A0);
    border-radius: 3px;
}















































/* Shining effect for Auto Tour Button */
#auto-tour-btn {
    position: relative;
    overflow: hidden;
    background: #000000 !important;
    border: 1px solid rgba(0, 71, 255, 0.5);
    color: #ffffff !important;
    animation: borderPulse 3.5s infinite alternate ease-in-out;
}

#auto-tour-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: sweepShineSlow 8s infinite;
}

#auto-tour-btn:hover {
    background: #1a1a1a !important;
}

#auto-tour-btn.active {
    background: #dc3545 !important;
    border-color: #dc3545;
    box-shadow: 0 0 30px rgba(220, 53, 69, 0.8);
}

#auto-tour-btn.active:hover {
    background: #c8323f !important;
}

@keyframes sweepShineSlow {
    0% { left: -100%; }
    50% { left: 200%; }
    100% { left: 200%; }
}

@keyframes borderPulse {
    0% {
        box-shadow: 0 0 5px rgba(0, 71, 255, 0.2);
        border-color: rgba(0, 71, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 71, 255, 1), inset 0 0 10px rgba(0, 71, 255, 0.6);
        border-color: rgba(0, 71, 255, 1);
    }
}


/* Left and Right Map Panels */
.map-side-panel {
    position: absolute;
    top: 50%;
    width: 300px;
    background: rgba(255, 255, 255, 0.95); /* Bright glass theme */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--shape-corner-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: var(--space-xl);
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    color: #1a1a1a;
}

.map-left-panel {
    left: 20px;
    transform: translateY(-50%) translateX(-120%);
}

.map-right-panel {
    right: 20px;
    transform: translateY(-50%) translateX(120%);
}

.map-left-panel.active {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.map-right-panel.active {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.map-side-panel .panel-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #0047FF;
    font-weight: 600;
}

.map-side-panel .panel-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.map-side-panel .client-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.02); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 10px;
    border-radius: var(--shape-corner-md);
    border: 1px solid rgba(0,0,0,0.05);
}

.map-side-panel .client-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: #fff;
    border-radius: var(--shape-corner-sm);
    padding: 4px;
}

.map-side-panel .client-details h4 {
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.map-side-panel .client-details p {
    margin: 0;
    font-size: 0.8rem;
    color: #555;
    line-height: 1.4;
}

.map-side-panel .client-details strong {
    color: #111;
    font-weight: 500;
}


.value-customer-section .section-container {
    padding-top: 0;
}
.value-customer-section {
    padding-bottom: var(--space-4xl);
    padding-top: 0;
    margin-top: 0;
}

.coverage-section .section-container {
    padding-bottom: 0 !important;
}





.customer-title-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: var(--space-md);
}

.customer-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    text-align: center;
    
    /* Soft White Shining Text Effect */
    background: linear-gradient(
        110deg,
        var(--on-surface) 0%,
        var(--on-surface) 45%,
        #a8a8a8 50%,
        var(--on-surface) 55%,
        var(--on-surface) 100%
    );
    background-size: 250% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    /* Very slow animation */
    animation: textShineCustomer 8s linear infinite;
}

@keyframes textShineCustomer {
    0% { background-position: 250% center; }
    100% { background-position: -50% center; }
}

/* Flag Waving Animation */
@keyframes waveFlagMap {
    0%, 100% { transform: translateX(-50%) skewY(0deg) scaleY(1); }
    25% { transform: translateX(-50%) skewY(6deg) scaleY(1.05); }
    75% { transform: translateX(-50%) skewY(-6deg) scaleY(0.95); }
}

@keyframes waveFlagPanel {
    0%, 100% { transform: skewY(0deg) scaleY(1); }
    25% { transform: skewY(5deg) scaleY(1.05); }
    75% { transform: skewY(-5deg) scaleY(0.95); }
}

.poi-flag {
    transform-origin: bottom center;
    animation: waveFlagMap 1.8s ease-in-out infinite;
}

.panel-header img[src*="flagcdn.com"] {
    transform-origin: left center;
    animation: waveFlagPanel 1.8s ease-in-out infinite;
}

/* Shining Button Vibe - Slow to match Auto Tour */
@keyframes buttonShimmerSlow {
    0% { transform: translateX(-150%) skewX(-25deg); }
    50% { transform: translateX(250%) skewX(-25deg); }
    100% { transform: translateX(250%) skewX(-25deg); }
}

.tab-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(-150%) skewX(-25deg);
    animation: buttonShimmerSlow 8s infinite;
    pointer-events: none;
    mix-blend-mode: overlay;
    border-radius: inherit;
}






