/* ==========================================
   TRUEPOINT INVESTIGATION BUREAU - STYLESHEET
   Truth Verified. Trust Secured.
   ========================================== */

/* DESIGN TOKENS */
:root {
    --color-primary: #071A2E;         /* Deep Navy */
    --color-bg-dark: #070F1E;         /* Rich Dark Navy */
    --color-bg-card: rgba(13, 27, 42, 0.7); /* Glass Navy Blue */
    --color-gold: #D4AF37;            /* Gold Accent */
    --color-gold-light: #F3E5AB;      /* Light Gold Accent */
    --color-silver: #C0C0C0;          /* Silver Accent */
    --color-white: #FFFFFF;
    --color-soft-gray: #F5F7FA;
    --color-text-dark: #1E293B;       /* Dark slate for light backgrounds */
    --color-text-light: #E2E8F0;      /* Slate light for dark backgrounds */
    --color-text-muted: #94A3B8;      /* Muted text color */
    --color-red: #EF4444;             /* For prohibitions */
    --color-green: #10B981;           /* For permissions */
    
    --font-heading: 'Cinzel', 'Playfair Display', serif;
    --font-body: 'Inter', 'Poppins', 'Manrope', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glow-gold: 0 0 15px rgba(212, 175, 55, 0.3);
    --glow-gold-strong: 0 0 25px rgba(212, 175, 55, 0.6);
    --glow-silver: 0 0 15px rgba(192, 192, 192, 0.2);
}

/* RESET & BASE STYLES */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.gold-text { color: var(--color-gold) !important; }
.silver-text { color: var(--color-silver) !important; }
.red-text { color: var(--color-red) !important; }
.green-text { color: var(--color-green) !important; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.underline { text-decoration: underline; }
.shadow-gold { box-shadow: var(--glow-gold); }

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* SECTION BADGE & HEADER */
.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.gold-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.silver-badge {
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid var(--color-silver);
    color: var(--color-silver);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    position: relative;
}

.section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* TOP RIBBON */
.top-ribbon {
    background: #020b14;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 0.8rem;
    padding: 0.5rem 0;
    color: var(--color-text-muted);
}

.ribbon-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 4rem;
}

.ribbon-left, .ribbon-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ribbon-left span, .ribbon-right a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ribbon-right a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.ribbon-right a:hover {
    color: var(--color-gold);
}

.divider {
    color: rgba(255, 255, 255, 0.1);
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-select {
    background-color: transparent;
    color: var(--color-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    font-family: var(--font-body);
    cursor: pointer;
    outline: none;
    transition: var(--transition-smooth);
}

.lang-select:hover, .lang-select:focus {
    border-color: var(--color-gold);
    color: var(--color-white);
}

.lang-select option {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.lang-selector-mobile {
    display: none;
}

@media (max-width: 768px) {
    .lang-selector-mobile {
        display: flex;
    }
}

/* MAIN NAVBAR */
.main-header {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: var(--color-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav-container {
    height: 96px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 4rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

/* Logo background pill — gives contrast on dark AND light headers */
.logo-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    padding: 6px 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 0 0 1px rgba(212,175,55,0.18);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.logo-img-wrap:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.22), 0 0 0 1.5px rgba(212,175,55,0.4);
}

.logo-svg, .logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    display: block;
}

.logo-area:hover .logo-svg, .logo-area:hover .logo-img {
    transform: scale(1.06);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.1em;
    line-height: 1;
}

.brand-sub {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--color-gold);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold), #AA7C11);
    color: var(--color-bg-dark);
    border: 1px solid var(--color-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    box-shadow: var(--glow-gold-strong);
    transform: translateY(-2px);
}

.btn-outline-silver {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-silver:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-silver);
    color: var(--color-silver);
    box-shadow: var(--glow-silver);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* GLASSMORPHISM CARD */
.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #091F37 0%, var(--color-bg-dark) 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: all; /* Canvas intercepts clicks for network interaction */
}

.cyber-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.light-effects {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* HERO EMBLEM & PULSES */
.hero-emblem-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 2rem;
    cursor: pointer;
}

.hero-eagle-svg {
    width: 100%;
    height: 100%;
    z-index: 6;
}

.radar-ping {
    position: absolute;
    width: 140px;
    height: 140px;
    top: 20px;
    left: 20px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    animation: radar-ping-anim 4s infinite linear;
    opacity: 0;
    z-index: 5;
}

/* Animations keyframes */
@keyframes radar-ping-anim {
    0% { transform: scale(0.5); opacity: 0.6; }
    50% { opacity: 0.3; }
    100% { transform: scale(1.8); opacity: 0; }
}

.rotating-ring {
    transform-origin: 100px 100px;
    animation: rotate-ring-anim 20s infinite linear;
}

@keyframes rotate-ring-anim {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.radar-line {
    transform-origin: 100px 100px;
    animation: radar-sweep-anim 8s infinite linear;
}

@keyframes radar-sweep-anim {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-wing {
    animation: wing-shimmer 3s infinite ease-in-out alternate;
}

@keyframes wing-shimmer {
    0% { opacity: 0.8; filter: brightness(1); }
    100% { opacity: 1; filter: brightness(1.3) drop-shadow(0 0 5px rgba(212, 175, 55, 0.4)); }
}

.hero-agency-sub {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--color-silver);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background: linear-gradient(180deg, #FFFFFF 50%, #C0C0C0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
}

.hero-subtitle {
    max-width: 800px;
    color: var(--color-text-light);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.hero-bottom-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.hero-bottom-curve svg {
    display: block;
    width: 100%;
    height: 40px;
}

/* ABOUT US SECTION */
.about-section {
    background-color: var(--color-bg-dark);
    padding: 8rem 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

/* OSINT DASHBOARD WORKINGS */
.about-dashboard-wrapper {
    position: relative;
    border-radius: 12px;
    background: #020810;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), var(--glow-gold);
    overflow: hidden;
    min-height: 420px;
}

.dashboard-border-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    animation: dash-border-anim 4s infinite linear;
}

@keyframes dash-border-anim {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.dashboard-header {
    background: #041221;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-indicator {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--color-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-green);
}

.pulse-dot.active {
    animation: dot-pulse 1.5s infinite alternate;
}

@keyframes dot-pulse {
    from { opacity: 0.4; }
    to { opacity: 1; transform: scale(1.2); }
}

.header-indicator-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-white);
}

.header-controls {
    display: flex;
    gap: 5px;
}

.control-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
}

.control-dot.red { background-color: var(--color-red); }
.control-dot.yellow { background-color: var(--color-gold); }
.control-dot.green { background-color: var(--color-green); }

.dashboard-screen {
    padding: 1.25rem;
    position: relative;
}

.screen-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 15px 15px;
    z-index: 1;
    pointer-events: none;
}

.dashboard-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

.widget {
    background: rgba(2, 11, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 0.85rem;
}

.widget-title {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.threat-bar {
    width: 100%;
    height: 10px;
    background: #020a12;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.4rem;
}

.threat-fill {
    height: 100%;
    background: var(--color-gold);
    box-shadow: 0 0 5px var(--color-gold);
}

.threat-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    font-weight: 600;
}

.india-map-vector {
    height: 140px;
    border-radius: 4px;
    background: #01060b;
    position: relative;
    overflow: hidden;
}

.radar-scope {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, transparent 20%, rgba(212, 175, 55, 0.03) 60%, transparent 100%);
}

.radar-sweep {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
    transform-origin: 50% 50%;
    animation: radar-sweep-log 4s infinite linear;
}

@keyframes radar-sweep-log {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.map-ping {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    cursor: pointer;
}

.map-ping::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    top: -6px;
    left: -6px;
    animation: ping-wave 1.5s infinite ease-out;
}

@keyframes ping-wave {
    0% { transform: scale(0.2); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.map-city-label {
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-white);
}

.dashboard-logs {
    background: rgba(2, 11, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 0.85rem;
    height: 110px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.log-stream {
    font-family: monospace;
    font-size: 0.7rem;
    line-height: 1.4;
    color: var(--color-text-muted);
}

.log-line {
    margin-bottom: 0.25rem;
}

.text-green { color: var(--color-green); }
.text-gold { color: var(--color-gold); }

/* ABOUT CONTENT & COUNTERS */
.about-desc {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--color-gold);
    padding: 1.25rem;
    border-radius: 0 6px 6px 0;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(5px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-white);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

/* SERVICES OVERVIEW */
.services-section {
    background: radial-gradient(circle at center, #0b1c2e 0%, var(--color-bg-dark) 80%);
    padding: 8rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: rgba(7, 26, 46, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.card-bg-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), var(--glow-gold);
}

.service-card:hover .card-bg-glow {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.service-svg-icon {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.service-card:hover .service-svg-icon {
    transform: scale(1.05);
}

.service-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.service-card-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-points-preview {
    list-style: none;
    margin-bottom: 2rem;
}

.service-points-preview li {
    font-size: 0.85rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-points-preview li::before {
    content: '▪';
    color: var(--color-gold);
}

.btn-card-details {
    background: none;
    border: none;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    transition: var(--transition-smooth);
}

.btn-card-details i {
    transition: var(--transition-smooth);
}

.btn-card-details:hover {
    color: var(--color-gold-light);
}

.btn-card-details:hover i {
    transform: translateX(5px);
}

/* SERVICE DETAILS DRAWER OVERLAY */
.service-drawer-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.service-drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.service-drawer-container {
    width: 100%;
    max-width: 550px;
    height: 100%;
    background: #04101e;
    border-left: 2px solid var(--color-gold);
    padding: 4rem 3rem;
    overflow-y: auto;
    transform: translateX(100%);
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.8);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.service-drawer-overlay.active .service-drawer-container {
    transform: translateX(0);
}

.close-drawer-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-drawer-btn:hover {
    color: var(--color-gold);
}

.drawer-header-brand {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-silver);
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.drawer-title {
    font-size: 2.2rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.drawer-desc {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.drawer-sub-header {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 0.4rem;
}

.drawer-items-list {
    list-style: none;
    margin-bottom: 3.5rem;
}

.drawer-items-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.drawer-items-list li i {
    margin-top: 3px;
}

.drawer-items-list li strong {
    color: var(--color-white);
    display: block;
    margin-bottom: 2px;
}

.drawer-items-list li span {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* WHY CHOOSE US */
.why-choose-us-section {
    background-color: var(--color-bg-dark);
    padding: 8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.why-card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    bottom: -75px;
    right: -75px;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.why-card:hover {
    background: rgba(7, 26, 46, 0.4);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.why-card:hover .why-card-glow {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    bottom: -35px;
    right: -35px;
}

.why-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.why-card-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.why-card-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* INVESTIGATION PROCESS TIMELINE */
.process-section {
    background: #020a12;
    padding: 8rem 0;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0 auto;
    padding: 2rem 0;
}

.timeline-progress-bar {
    position: absolute;
    left: 31px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.timeline-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%; /* Dynamic fill via JS scroll */
    background: linear-gradient(180deg, var(--color-gold), var(--color-gold-light));
    box-shadow: 0 0 10px var(--color-gold);
    transition: height 0.1s linear;
}

.timeline-step {
    position: relative;
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    z-index: 2;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-silver);
    transition: var(--transition-smooth);
}

.step-content {
    padding: 2rem;
    flex-grow: 1;
    transition: var(--transition-smooth);
}

.step-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.step-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline Active / Hover States */
.timeline-step.active .step-marker {
    border-color: var(--color-gold);
    box-shadow: var(--glow-gold);
    background: var(--color-primary);
}

.timeline-step.active .step-num {
    color: var(--color-gold);
}

.timeline-step.active .step-content {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), var(--glow-gold);
    background: rgba(7, 26, 46, 0.75);
}

/* INDUSTRIES WE SERVE */
.industries-section {
    background-color: var(--color-bg-dark);
    padding: 8rem 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: default;
}

.industry-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.industry-card-inner i {
    font-size: 2.2rem;
    transition: var(--transition-smooth);
}

.industry-card-inner h4 {
    font-size: 1.05rem;
    color: var(--color-text-light);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.industry-card:hover {
    background: rgba(7, 26, 46, 0.35);
    border-color: var(--color-gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), var(--glow-gold);
    transform: scale(1.03);
}

.industry-card:hover i {
    transform: scale(1.1);
}

.industry-card:hover h4 {
    color: var(--color-white);
}

/* CONFIDENTIALITY SECURE SHIELD */
.confidentiality-section {
    background: radial-gradient(circle at center, #021124 0%, var(--color-bg-dark) 90%);
    padding: 8rem 0;
}

.confidentiality-box {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    padding: 4rem;
    align-items: center;
}

.shield-animation-container {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
}

.shield-svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
}

.shield-halo {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 1;
    animation: shield-glow-pulse 4s infinite alternate;
}

@keyframes shield-glow-pulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 1; }
}

.shield-outline {
    stroke-dasharray: 260;
    stroke-dashoffset: 0;
    animation: shield-draw 6s infinite ease-in-out;
}

@keyframes shield-draw {
    0%, 100% { stroke-dashoffset: 0; }
    50% { stroke-dashoffset: 260; }
}

.confidentiality-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.conf-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.conf-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.conf-feature-item i {
    font-size: 1.4rem;
    margin-top: 3px;
}

.conf-feature-item h5 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.conf-feature-item p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    background-color: var(--color-bg-dark);
    padding: 8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.testimonials-slider-container {
    max-width: 850px;
    margin: 4rem auto 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
    opacity: 0.3;
    transition: opacity 0.6s ease;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-card {
    padding: 3.5rem;
    text-align: center;
    position: relative;
    border-color: rgba(212, 175, 55, 0.15);
}

.quote-icon {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: 1.5rem;
    left: 2.5rem;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.testimonial-client {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.client-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gold);
}

.client-org {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slider-arrow {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-muted);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: var(--glow-gold);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 4px;
}

/* INQUIRY FORM SECTION */
.inquiry-section {
    background: radial-gradient(circle at center, #07192b 0%, var(--color-bg-dark) 90%);
    padding: 8rem 0;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.inquiry-info-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-quick-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quick-item {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.quick-item i {
    font-size: 1.8rem;
}

.quick-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quick-item span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quick-item strong {
    font-size: 1.05rem;
    color: var(--color-white);
}

.inquiry-form-wrapper {
    padding: 3rem;
    position: relative;
    border-color: rgba(212, 175, 55, 0.15);
}

.form-header-title {
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.form-header-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}

.form-group label .required {
    color: var(--color-red);
}

.form-group label .optional {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    font-weight: 400;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.85rem 1rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
    background: rgba(7, 26, 46, 0.8);
}

.form-group select option {
    background: #07192b;
    color: var(--color-white);
}

.form-row.flex-start {
    align-items: flex-start;
}

.form-group-radio {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-group-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}

.radio-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 22px;
    cursor: pointer;
    font-size: 0.85rem;
    user-select: none;
    color: var(--color-text-muted);
    font-weight: 500;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-container .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 14px;
    width: 14px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.radio-container:hover input ~ .checkmark {
    border-color: var(--color-gold);
}

.radio-container input:checked ~ .checkmark {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.radio-container input:checked ~ .checkmark::after {
    display: block;
}

.radio-container .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    top: 4px;
    left: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #0A0A0A;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-container {
    display: flex;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-container .custom-checkbox {
    position: absolute;
    top: 3px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.checkbox-container:hover input ~ .custom-checkbox {
    border-color: var(--color-gold);
}

.checkbox-container input:checked ~ .custom-checkbox {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.checkbox-container input:checked ~ .custom-checkbox::after {
    display: block;
}

.checkbox-container .custom-checkbox::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #0A0A0A;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* SUCCESS MODAL OVERLAY IN FORM */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 16, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.success-card {
    text-align: center;
    border-color: var(--color-gold);
    padding: 2.5rem;
    max-width: 400px;
    box-shadow: var(--glow-gold);
}

.success-icon-badge {
    font-size: 3.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    animation: icon-pop-scale 0.5s ease-out;
}

@keyframes icon-pop-scale {
    0% { transform: scale(0.3); opacity: 0; }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.success-ref {
    font-size: 0.9rem;
    color: var(--color-silver);
    margin: 0.5rem 0 1.25rem 0;
}

.success-message {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.summary-details-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 1rem;
    text-align: left;
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

.summary-details-box strong {
    color: var(--color-white);
    display: block;
    margin-bottom: 0.5rem;
}

.summary-details-box ul {
    list-style: none;
}

.summary-details-box li {
    margin-bottom: 0.25rem;
    color: var(--color-text-muted);
}

.summary-details-box li span {
    color: var(--color-gold);
    font-weight: 600;
}

/* LEGAL COMPLIANCE SECTION */
.compliance-section {
    background: var(--color-bg-dark);
    padding: 8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.compliance-card {
    padding: 3rem;
}

.compliance-card.do-not {
    border-color: rgba(239, 68, 68, 0.2);
}

.compliance-card.do-not:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(239, 68, 68, 0.1);
}

.compliance-card.do-provide {
    border-color: rgba(16, 185, 129, 0.2);
}

.compliance-card.do-provide:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(16, 185, 129, 0.1);
}

.compliance-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.compliance-header i {
    font-size: 2.2rem;
}

.compliance-header h3 {
    font-size: 1.6rem;
    color: var(--color-white);
}

.compliance-sub {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.compliance-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.compliance-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.compliance-list li i {
    font-size: 1.2rem;
    margin-top: 3px;
}

.compliance-list li strong {
    font-size: 0.95rem;
    color: var(--color-white);
    display: block;
    margin-bottom: 0.2rem;
}

.compliance-list li p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* CONTACT SECTION & FOOTER */
.contact-section {
    background-color: #030d17;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand-title {
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.footer-parent-org {
    font-size: 0.85rem;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--color-silver);
    margin-bottom: 2.5rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-block i {
    font-size: 1.2rem;
    margin-top: 3px;
}

.info-block strong {
    font-size: 0.85rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.2rem;
}

.info-block p, .info-block a {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.info-block a:hover {
    color: var(--color-gold);
}

.footer-title {
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1.5px;
    background-color: var(--color-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.main-footer {
    background-color: #020910;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 2.5rem 0;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.disclaimer-text {
    font-size: 0.7rem;
    max-width: 700px;
    opacity: 0.7;
}

/* ANIMATION ON SCROLL INITIATORS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN — FULL MOBILE OVERHAUL
   Breakpoints: 1280 → 1024 → 768 → 480 → 360
   ========================================== */

/* ── 1280px: Large laptops / small desktops ── */
@media (max-width: 1280px) {
    .nav-container {
        padding: 0 2.5rem;
    }

    .ribbon-content {
        padding: 0 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 2.5rem;
    }

    .confidentiality-box {
        padding: 3rem;
    }

    .hero-title {
        font-size: 3.4rem;
    }
}

/* ── 1024px: Tablets landscape / small laptops ── */
@media (max-width: 1024px) {
    html { font-size: 15px; }

    /* ─ Header ─ */
    .nav-container { padding: 0 1.75rem; }
    .ribbon-content { padding: 0 1.75rem; }
    .nav-links { gap: 1.25rem; }
    .nav-links a { font-size: 0.85rem; }

    /* ─ Hero ─ */
    .hero-title { font-size: 3rem; }
    .hero-tagline { font-size: 1.5rem; }
    .hero-emblem-container { width: 150px; height: 150px; }
    .hero-section { padding: 4rem 0; }

    /* ─ Section spacing ─ */
    .about-section,
    .services-section,
    .why-choose-us-section,
    .process-section,
    .industries-section,
    .confidentiality-section,
    .testimonials-section,
    .inquiry-section,
    .compliance-section { padding: 6rem 0; }

    /* ─ Grids → single column ─ */
    .about-grid,
    .inquiry-grid,
    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-dashboard-wrapper {
        max-width: 620px;
        margin: 0 auto;
    }

    /* ─ Confidentiality box ─ */
    .confidentiality-box {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
        text-align: center;
    }

    .conf-features { text-align: left; }

    /* ─ Stats ─ */
    .stats-grid { grid-template-columns: 1fr 1fr; }

    /* ─ Services grid ─ */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    /* ─ Testimonials ─ */
    .testimonials-slider-container { max-width: 100%; }

    /* ─ Contact grid ─ */
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .contact-grid > div:first-child {
        grid-column: 1 / -1;
    }

    /* ─ Section title ─ */
    .section-title { font-size: 2rem; }

    /* ─ Compliance ─ */
    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ── 768px: Tablets portrait / large phones ── */
@media (max-width: 768px) {
    html { font-size: 14px; }

    /* ─ Ribbon ─ */
    .top-ribbon { display: none; } /* hide ribbon on small screens for space */

    /* ─ Header / Nav ─ */
    .nav-container {
        padding: 0 1.25rem;
        height: 80px;
    }

    .logo-svg, .logo-img { height: 64px; width: auto; }
    .logo-img-wrap { padding: 5px 8px; border-radius: 12px; }
    .brand-name { font-size: 1.15rem; }
    .brand-sub { font-size: 0.55rem; }

    .mobile-menu-toggle { display: flex; }

    /* Fullscreen mobile nav drawer */
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-primary, var(--color-bg-dark));
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 999;
        border-top: 1px solid var(--border-subtle);
    }

    .nav-links.active { left: 0; }
    .nav-links a { font-size: 1.2rem; letter-spacing: 0.06em; }

    /* Hide CTA & theme toggle text in header on mobile */
    .nav-cta-container {
        gap: 0.75rem;
    }

    .btn-nav { display: none; }

    /* Keep theme toggle visible */
    .theme-toggle-btn { width: 36px; height: 36px; font-size: 1rem; }

    /* ─ Hero section ─ */
    .hero-section { padding: 4rem 0 3rem; min-height: auto; }
    .hero-container { padding: 0 1.25rem; }
    .hero-emblem-container { width: 120px; height: 120px; margin-bottom: 1.5rem; }
    .hero-title { font-size: 2.2rem; line-height: 1.15; }
    .hero-tagline { font-size: 1.2rem; letter-spacing: 0.08em; }
    .hero-agency-sub { font-size: 0.75rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; padding: 0 0.5rem; }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 1.25rem;
        gap: 1rem;
    }

    .hero-actions .btn { width: 100%; justify-content: center; }

    .hero-trust-indicators {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        display: inline-flex;
        text-align: left;
        padding: 0 1.25rem;
    }

    /* ─ Section spacing & titles ─ */
    .about-section,
    .services-section,
    .why-choose-us-section,
    .process-section,
    .industries-section,
    .confidentiality-section,
    .testimonials-section,
    .inquiry-section,
    .compliance-section,
    .contact-section { padding: 4.5rem 0; }

    .section-title { font-size: 1.75rem; }
    .section-subtitle { font-size: 1rem; }
    .section-desc { font-size: 1rem; margin-bottom: 2rem; }

    /* ─ About grid ─ */
    .about-grid { gap: 2.5rem; }
    .about-dashboard-wrapper { min-height: 320px; }
    .about-desc { font-size: 1rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat-card { padding: 1rem; }
    .stat-number { font-size: 1.75rem; }

    /* ─ Service cards ─ */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card { padding: 2rem 1.5rem; }
    .service-card-title { font-size: 1.25rem; }

    /* ─ Why cards ─ */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .why-card { padding: 1.5rem; }

    /* ─ Process / Timeline ─ */
    .timeline-container { padding: 1rem 0; }
    .timeline-progress-bar { left: 22px; }
    .timeline-step { gap: 1.25rem; margin-bottom: 2.5rem; }
    .step-marker { width: 44px; height: 44px; }
    .step-num { font-size: 1rem; }
    .step-content { padding: 1.25rem; }
    .step-title { font-size: 1.1rem; }
    .step-desc { font-size: 0.9rem; }

    /* ─ Industries ─ */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .industry-card { padding: 1.5rem 1rem; }

    /* ─ Confidentiality ─ */
    .confidentiality-box {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .shield-animation-container { width: 160px; height: 160px; }

    .conf-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        text-align: left;
    }

    /* ─ Testimonials ─ */
    .testimonial-card { padding: 2rem 1.25rem; }
    .testimonial-quote { font-size: 1.05rem; line-height: 1.6; }
    .quote-icon { font-size: 2rem; top: 1rem; left: 1rem; }
    .slider-controls { gap: 1.25rem; }

    /* ─ Inquiry / Form ─ */
    .inquiry-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .inquiry-form-wrapper { padding: 1.75rem 1.25rem; }
    .form-header-title { font-size: 1.4rem; }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group { min-width: 100%; }
    .radio-options { gap: 1rem; }

    .contact-quick-list { gap: 1.25rem; }
    .inquiry-info-text { font-size: 1rem; }

    /* ─ Compliance ─ */
    .compliance-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .compliance-card { padding: 1.75rem 1.25rem; }
    .compliance-header h3 { font-size: 1.25rem; }

    /* ─ Service Drawer ─ */
    .service-drawer-container {
        max-width: 100%;
        padding: 2.5rem 1.25rem;
    }

    .drawer-title { font-size: 1.6rem; }

    /* ─ Contact / Footer grid ─ */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand-title { font-size: 1.4rem; }
    .footer-tagline { font-size: 0.95rem; }

    /* ─ Badges ─ */
    .section-badge { font-size: 0.7rem; padding: 0.3rem 0.85rem; }

    /* ─ Buttons ─ */
    .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
    .btn-lg { padding: 0.85rem 1.75rem; font-size: 0.95rem; }

    /* ─ Glass card ─ */
    .glass-card { border-radius: 6px; }

    /* ─ Footer bottom ─ */
    .main-footer { padding: 1.75rem 0; font-size: 0.75rem; }
    .disclaimer-text { font-size: 0.65rem; padding: 0 1rem; }
}

/* ── 480px: Mobile phones ── */
@media (max-width: 480px) {
    html { font-size: 13.5px; }

    /* ─ Header ─ */
    .nav-container { padding: 0 1rem; height: 72px; }
    .logo-img, .logo-svg { height: 52px; width: auto; }
    .logo-img-wrap { padding: 4px 7px; border-radius: 10px; }
    .brand-name { font-size: 1rem; }
    .brand-sub { display: none; }

    /* Mobile nav adjusts to new header height */
    .nav-links { top: 72px; height: calc(100vh - 72px); }

    /* ─ Hero ─ */
    .hero-section { padding: 3rem 0 2.5rem; }
    .hero-emblem-container { width: 100px; height: 100px; }
    .hero-title { font-size: 1.85rem; }
    .hero-tagline { font-size: 1.05rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-actions { padding: 0 1rem; }

    /* ─ Sections ─ */
    .about-section,
    .services-section,
    .why-choose-us-section,
    .process-section,
    .industries-section,
    .confidentiality-section,
    .testimonials-section,
    .inquiry-section,
    .compliance-section,
    .contact-section { padding: 3.5rem 0; }

    .container { padding: 0 1rem; }

    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.95rem; }

    /* ─ About ─ */
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.8rem; }

    /* ─ Services ─ */
    .service-card { padding: 1.5rem 1.25rem; }
    .service-card-title { font-size: 1.15rem; }
    .service-points-preview li { font-size: 0.8rem; }

    /* ─ Why cards ─ */
    .why-card { padding: 1.25rem 1rem; }
    .why-card-title { font-size: 1.05rem; }

    /* ─ Industries ─ */
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-card { padding: 1.25rem 0.75rem; }
    .industry-card-inner i { font-size: 1.75rem; }
    .industry-card-inner h4 { font-size: 0.9rem; }

    /* ─ Timeline ─ */
    .timeline-step { gap: 1rem; }
    .step-marker { width: 38px; height: 38px; flex-shrink: 0; }
    .step-num { font-size: 0.9rem; }
    .step-content { padding: 1rem; }
    .timeline-progress-bar { left: 18px; }

    /* ─ Confidentiality ─ */
    .conf-features { grid-template-columns: 1fr; }
    .shield-animation-container { width: 130px; height: 130px; }
    .confidentiality-box { padding: 1.5rem 1rem; }

    /* ─ Testimonials ─ */
    .testimonial-card { padding: 1.75rem 1rem; }
    .testimonial-quote { font-size: 1rem; }
    .testimonials-slider-container { margin-top: 2rem; }

    /* ─ Form ─ */
    .inquiry-form-wrapper { padding: 1.5rem 1rem; }
    .form-header-title { font-size: 1.25rem; }
    .form-row { flex-direction: column; gap: 0; }
    .radio-options { flex-direction: column; gap: 0.75rem; }

    /* ─ Compliance ─ */
    .compliance-card { padding: 1.5rem 1rem; }

    /* ─ Drawer ─ */
    .service-drawer-container { padding: 2rem 1rem; }
    .drawer-title { font-size: 1.4rem; }
    .close-drawer-btn { font-size: 2rem; top: 1rem; right: 1rem; }

    /* ─ Footer ─ */
    .contact-section { padding: 3rem 0; }
    .footer-brand-title { font-size: 1.2rem; }
    .info-block i { font-size: 1rem; }
    .info-block strong { font-size: 0.8rem; }
    .info-block p, .info-block a { font-size: 0.85rem; }
    .footer-links a { font-size: 0.85rem; }

    /* ─ Buttons full-width on small phones ─ */
    .btn-block-sm { width: 100%; }

    /* ─ Success modal ─ */
    .success-card { padding: 1.75rem 1.25rem; }
    .success-icon-badge { font-size: 2.75rem; }

    /* ─ Floating widgets: avoid overlap ─ */
    .floating-chat-widget { bottom: 20px; right: 16px; }
}

/* ── 360px: Extra-small phones ── */
@media (max-width: 360px) {
    html { font-size: 13px; }

    .hero-title { font-size: 1.6rem; }
    .hero-tagline { font-size: 0.95rem; }
    .section-title { font-size: 1.35rem; }

    /* Stack industries to 1 column on tiny screens */
    .industries-grid { grid-template-columns: 1fr; }

    /* Stats full width */
    .stats-grid { grid-template-columns: 1fr; gap: 0.75rem; }

    /* Form full single-column already; reduce padding */
    .inquiry-form-wrapper { padding: 1.25rem 0.85rem; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 0.9rem; padding: 0.75rem 0.85rem; }

    /* Drawer full-screen */
    .service-drawer-container { max-width: 100%; }

    /* Nav font smaller */
    .nav-links a { font-size: 1.05rem; }

    /* Floating widgets: stay off the very edge */
    .floating-chat-widget { right: 10px; bottom: 16px; }
}


/* Floating Chat Widget Styles */
.floating-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.chat-trigger-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold, #D4AF37), #AA7C11);
    color: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-trigger-btn:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.chat-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.floating-chat-widget.active .chat-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-opt {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #FFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.chat-opt:hover {
    transform: scale(1.1);
    filter: brightness(1.15);
}

.whatsapp-opt {
    background: #25D366;
}

.email-opt {
    background: var(--color-gold, #D4AF37);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================
   SEMANTIC DESIGN SYSTEM — THEME-AWARE TOKENS
   Applies automatically in Dark Mode (default)
   ========================================== */

:root {
    /* ── Semantic Surface Tokens ── */
    --bg-primary:         #070F1E;      /* page background */
    --bg-secondary:       #071A2E;      /* section / container bg */
    --bg-card:            rgba(13, 27, 42, 0.75); /* glass card bg */
    --bg-input:           rgba(7, 25, 43, 0.7);   /* form fields */
    --bg-drawer:          #04101e;     /* drawer / modal bg */
    --bg-dropdown:        #071324;     /* nav dropdowns */
    --bg-ribbon:          #020b14;     /* top ribbon bg */
    --bg-footer:          #030d17;     /* contact section bg */
    --bg-footer-bottom:   #020910;     /* bottom footer bg */

    /* ── Semantic Text Tokens ── */
    --text-primary:       #E2E8F0;     /* main body text */
    --text-heading:       #FFFFFF;     /* h1–h4 headings */
    --text-secondary:     #94A3B8;     /* muted/secondary text */
    --text-placeholder:   #64748B;     /* input placeholders */
    --text-inverse:       #0F172A;     /* text on light backgrounds */
    --text-on-gold:       #0A0A0A;     /* text placed directly on gold */

    /* ── Semantic Accent Tokens ── */
    --accent-gold:        #D4AF37;     /* primary brand gold */
    --accent-gold-light:  #F3E5AB;     /* light gold for gradients */
    --accent-gold-dark:   #9A7000;     /* darker gold (WCAG on light bg) */
    --accent-silver:      #C0C0C0;     /* silver accent */
    --accent-red:         #EF4444;     /* danger / prohibited */
    --accent-green:       #10B981;     /* success / permitted */

    /* ── Semantic Border Tokens ── */
    --border-subtle:      rgba(255, 255, 255, 0.05);  /* hairline borders */
    --border-default:     rgba(255, 255, 255, 0.1);   /* standard borders */
    --border-gold:        rgba(212, 175, 55, 0.2);    /* gold-tinted borders */
    --border-focus:       #D4AF37;     /* focused input ring */

    /* ── Interactive State Tokens ── */
    --hover-bg:           rgba(212, 175, 55, 0.08);
    --hover-text:         #D4AF37;
    --active-bg:          rgba(212, 175, 55, 0.15);

    /* ── Elevation / Shadow Tokens ── */
    --shadow-card:        0 15px 35px rgba(0, 0, 0, 0.4);
    --shadow-elevated:    0 20px 50px rgba(0, 0, 0, 0.7);
    --shadow-dropdown:    0 10px 25px rgba(0, 0, 0, 0.5);
    --glow-gold-token:    0 0 15px rgba(212, 175, 55, 0.3);
    --glow-gold-strong-token: 0 0 25px rgba(212, 175, 55, 0.6);

    /* ── Transition ── */
    --transition-theme:   background-color 0.35s ease, color 0.35s ease,
                          border-color 0.35s ease, box-shadow 0.35s ease;
}


/* ==========================================
   LIGHT THEME SEMANTIC OVERRIDES
   All dark values are inverted/replaced here
   ========================================== */

body.light-theme {
    /* Surfaces */
    --bg-primary:         #F1F5F9;
    --bg-secondary:       #E2E8F0;
    --bg-card:            rgba(255, 255, 255, 0.92);
    --bg-input:           #FFFFFF;
    --bg-drawer:          #FFFFFF;
    --bg-dropdown:        #FFFFFF;
    --bg-ribbon:          #0F172A;
    --bg-footer:          #F8FAFC;
    --bg-footer-bottom:   #F1F5F9;

    /* Text */
    --text-primary:       #1E293B;    /* contrast ≥ 7:1 on light bg */
    --text-heading:       #0F172A;    /* near-black headings */
    --text-secondary:     #475569;    /* mid-gray, ≥ 4.5:1 */
    --text-placeholder:   #64748B;    /* visible placeholder */
    --text-inverse:       #F8FAFC;    /* text on dark-bg elements */
    --text-on-gold:       #0A0A0A;    /* unchanged */

    /* Accents — darker gold for light backgrounds */
    --accent-gold:        #9A7000;    /* 4.6:1 on white */
    --accent-gold-light:  #C09000;
    --accent-gold-dark:   #7A5800;
    --accent-silver:      #475569;
    --accent-red:         #B91C1C;    /* darker red, WCAG on white */
    --accent-green:       #047857;    /* darker green, WCAG on white */

    /* Borders */
    --border-subtle:      rgba(0, 0, 0, 0.06);
    --border-default:     rgba(0, 0, 0, 0.12);
    --border-gold:        rgba(154, 112, 0, 0.25);
    --border-focus:       #9A7000;

    /* Interactive states */
    --hover-bg:           rgba(154, 112, 0, 0.08);
    --hover-text:         #9A7000;
    --active-bg:          rgba(154, 112, 0, 0.14);

    /* Shadows (softer for light UI) */
    --shadow-card:        0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-elevated:    0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-dropdown:    0 8px 24px rgba(0, 0, 0, 0.10);
    --glow-gold-token:    0 0 10px rgba(154, 112, 0, 0.15);
    --glow-gold-strong-token: 0 0 18px rgba(154, 112, 0, 0.3);

    /* Override existing color vars so inline styles pick them up */
    --color-gold:          #9A7000;
    --color-gold-light:    #C09000;
    --color-silver:        #475569;
    --color-text-light:    #1E293B;
    --color-text-muted:    #475569;
    --color-bg-dark:       #F1F5F9;
    --color-bg-card:       rgba(255, 255, 255, 0.92);
    --color-primary:       #E2E8F0;
    --color-white:         #0F172A;   /* mapped so .text-white becomes dark */
    --color-red:           #B91C1C;
    --color-green:         #047857;
}


/* ==========================================
   GLOBAL SMOOTH TRANSITION WHEN THEME SWITCHES
   ========================================== */

*,
*::before,
*::after {
    transition: var(--transition-theme);
}

/* Exclude elements where motion would hurt UX */
.animate-on-scroll,
.hero-title,
.radar-ping,
.rotating-ring,
.radar-line,
.hero-wing,
.shield-outline,
.timeline-progress-fill,
.network-canvas,
canvas {
    transition: none !important;
}


/* ==========================================
   SEMANTIC UTILITY CLASSES (theme-aware)
   ========================================== */

.text-primary   { color: var(--text-primary) !important; }
.text-heading   { color: var(--text-heading) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-white     { color: var(--text-heading) !important; }   /* remapped */
.gold-text      { color: var(--accent-gold) !important; }
.silver-text    { color: var(--accent-silver) !important; }
.red-text       { color: var(--accent-red) !important; }
.green-text     { color: var(--accent-green) !important; }


/* ==========================================
   HTML & BODY BASE
   ========================================== */

html {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}


/* ==========================================
   TOP RIBBON
   ========================================== */

body.light-theme .top-ribbon {
    background: var(--bg-ribbon);
    border-bottom-color: rgba(255,255,255,0.08);
    color: #CBD5E1;
}

body.light-theme .ribbon-right a {
    color: #CBD5E1;
}

body.light-theme .ribbon-right a:hover {
    color: var(--accent-gold);
}

body.light-theme .divider {
    color: rgba(255,255,255,0.2);
}


/* ==========================================
   NAVIGATION / HEADER
   ========================================== */

body.light-theme .main-header {
    background: rgba(255, 255, 255, 0.94) !important;
    border-bottom: 1px solid var(--border-default) !important;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

body.light-theme .main-header.scrolled {
    background: #FFFFFF !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important;
    border-bottom: 1px solid var(--border-default) !important;
}

body.light-theme .brand-name {
    color: #0F172A !important;
}

body.light-theme .brand-sub {
    color: var(--accent-gold) !important;
}

/* Logo wrap in light mode: dark tint pill so logo pops on white header */
body.light-theme .logo-img-wrap {
    background: rgba(7, 26, 46, 0.88) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15), 0 0 0 1px rgba(212,175,55,0.22) !important;
}

body.light-theme .logo-img-wrap:hover {
    background: rgba(7, 26, 46, 0.96) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2), 0 0 0 1.5px rgba(212,175,55,0.45) !important;
}

body.light-theme .nav-links a {
    color: #334155 !important;
}

body.light-theme .nav-links a:hover,
body.light-theme .nav-links a.active {
    color: var(--accent-gold) !important;
}

body.light-theme .mobile-menu-toggle span {
    background-color: #0F172A !important;
}

/* Mobile menu drawer */
body.light-theme .nav-links {
    background-color: #F8FAFC !important;
    border-right: 1px solid var(--border-default);
}


/* ==========================================
   SECTION BACKGROUNDS
   ========================================== */

body.light-theme .hero-section,
body.light-theme .about-section,
body.light-theme .services-section,
body.light-theme .why-choose-us-section,
body.light-theme .process-section,
body.light-theme .industries-section,
body.light-theme .confidentiality-section,
body.light-theme .testimonials-section,
body.light-theme .inquiry-section,
body.light-theme .compliance-section,
body.light-theme .contact-section,
body.light-theme .about-page-section,
body.light-theme .services-section,
body.light-theme .confidentiality-banner-section,
body.light-theme .service-areas-section,
body.light-theme .join-network-section,
body.light-theme .faq-section,
body.light-theme .legal-page-section,
body.light-theme .download-page-section,
body.light-theme .map-section,
body.light-theme .blog-page-section {
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

/* Alternating section tones */
body.light-theme .process-section,
body.light-theme .inquiry-section {
    background: #E8EEF5 !important;
}

body.light-theme .confidentiality-section,
body.light-theme .compliance-section {
    background: #DDE5F0 !important;
}


/* ==========================================
   TYPOGRAPHY — HEADINGS & BODY TEXT
   ========================================== */

body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme h4,
body.light-theme h5,
body.light-theme h6 {
    color: var(--text-heading) !important;
}

body.light-theme p,
body.light-theme li,
body.light-theme span:not([class*="badge"]):not([class*="dot"]):not([class*="checkmark"]):not(.brand-sub) {
    color: var(--text-primary);
}

body.light-theme .section-title {
    color: var(--text-heading) !important;
}

body.light-theme .section-desc,
body.light-theme .section-subtitle {
    color: var(--text-secondary) !important;
}

body.light-theme .about-desc,
body.light-theme .inquiry-info-text,
body.light-theme .confidentiality-text,
body.light-theme .drawer-desc {
    color: var(--text-primary) !important;
    opacity: 1 !important;
}

body.light-theme .hero-agency-sub {
    color: var(--accent-silver) !important;
}

body.light-theme .hero-subtitle {
    color: var(--text-primary) !important;
    opacity: 1 !important;
}

body.light-theme .hero-title {
    background: linear-gradient(180deg, #0F172A 40%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-theme .hero-tagline {
    color: var(--accent-gold) !important;
}


/* ==========================================
   BADGES
   ========================================== */

body.light-theme .gold-badge {
    background: rgba(154, 112, 0, 0.10);
    border-color: var(--accent-gold);
    color: var(--accent-gold) !important;
}

body.light-theme .silver-badge {
    background: rgba(71, 85, 105, 0.10);
    border-color: var(--accent-silver);
    color: var(--accent-silver) !important;
}


/* ==========================================
   BUTTONS
   ========================================== */

body.light-theme .btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: #FFFFFF !important;
    border-color: var(--accent-gold);
}

body.light-theme .btn-gold:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    box-shadow: var(--glow-gold-strong-token);
    color: #FFFFFF !important;
}

body.light-theme .btn-outline-silver {
    color: #334155 !important;
    border-color: #94A3B8 !important;
}

body.light-theme .btn-outline-silver:hover {
    background: rgba(100, 116, 139, 0.10) !important;
    border-color: #475569 !important;
    color: #0F172A !important;
}

/* Focus ring for keyboard accessibility */
body.light-theme .btn:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 3px;
}


/* ==========================================
   GLASS CARDS & WHY-CARDS
   ========================================== */

body.light-theme .glass-card {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-default) !important;
    box-shadow: var(--shadow-card) !important;
}

body.light-theme .why-card {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid var(--border-default) !important;
}

body.light-theme .why-card:hover {
    background: #FFFFFF !important;
    border-color: var(--accent-gold) !important;
    box-shadow: var(--shadow-elevated) !important;
}

body.light-theme .why-card-title,
body.light-theme .why-card h3 {
    color: var(--text-heading) !important;
}

body.light-theme .why-card-desc,
body.light-theme .why-card p {
    color: var(--text-secondary) !important;
}

body.light-theme .why-icon {
    color: var(--accent-gold) !important;
}


/* ==========================================
   SERVICE CARDS
   ========================================== */

body.light-theme .service-card {
    background: rgba(255, 255, 255, 0.90) !important;
    border-color: var(--border-default) !important;
    box-shadow: var(--shadow-card) !important;
}

body.light-theme .service-card:hover {
    border-color: var(--accent-gold) !important;
    box-shadow: var(--shadow-elevated) !important;
}

body.light-theme .service-card-title {
    color: var(--text-heading) !important;
}

body.light-theme .service-card-desc {
    color: var(--text-secondary) !important;
}

body.light-theme .service-points-preview li {
    color: var(--text-primary) !important;
}

body.light-theme .btn-card-details {
    color: var(--accent-gold) !important;
}

body.light-theme .btn-card-details:hover {
    color: var(--accent-gold-dark) !important;
}


/* ==========================================
   STAT CARDS
   ========================================== */

body.light-theme .stat-card {
    background: rgba(255,255,255,0.80) !important;
    border-left-color: var(--accent-gold) !important;
}

body.light-theme .stat-card:hover {
    background: #FFFFFF !important;
}

body.light-theme .stat-number {
    color: var(--text-heading) !important;
}

body.light-theme .stat-label {
    color: var(--text-secondary) !important;
}


/* ==========================================
   TIMELINE / PROCESS SECTION
   ========================================== */

body.light-theme .step-marker {
    background: #E2E8F0 !important;
    border-color: var(--border-default) !important;
}

body.light-theme .step-num {
    color: var(--text-secondary) !important;
}

body.light-theme .step-content {
    background: rgba(255,255,255,0.7) !important;
    border: 1px solid var(--border-default) !important;
    border-radius: 8px;
}

body.light-theme .step-title {
    color: var(--text-heading) !important;
}

body.light-theme .step-desc {
    color: var(--text-secondary) !important;
}

body.light-theme .timeline-step.active .step-marker {
    background: #FFFFFF !important;
    border-color: var(--accent-gold) !important;
}

body.light-theme .timeline-step.active .step-num {
    color: var(--accent-gold) !important;
}

body.light-theme .timeline-step.active .step-content {
    background: #FFFFFF !important;
    border-color: var(--accent-gold) !important;
    box-shadow: var(--shadow-card) !important;
}

body.light-theme .timeline-progress-bar {
    background: var(--border-default) !important;
}


/* ==========================================
   INDUSTRY CARDS
   ========================================== */

body.light-theme .industry-card {
    background: rgba(255,255,255,0.80) !important;
    border-color: var(--border-default) !important;
}

body.light-theme .industry-card:hover {
    background: #FFFFFF !important;
    border-color: var(--accent-gold) !important;
}

body.light-theme .industry-card-inner h4 {
    color: var(--text-primary) !important;
}

body.light-theme .industry-card:hover h4 {
    color: var(--text-heading) !important;
}


/* ==========================================
   TESTIMONIALS
   ========================================== */

body.light-theme .testimonial-card {
    background: rgba(255,255,255,0.90) !important;
    border-color: var(--border-default) !important;
}

body.light-theme .testimonial-quote {
    color: var(--text-heading) !important;
}

body.light-theme .client-name {
    color: var(--accent-gold) !important;
}

body.light-theme .client-org {
    color: var(--text-secondary) !important;
}

body.light-theme .slider-arrow {
    color: var(--text-secondary) !important;
    border-color: var(--border-default) !important;
}

body.light-theme .slider-arrow:hover {
    border-color: var(--accent-gold) !important;
    color: var(--accent-gold) !important;
}

body.light-theme .dot {
    background: #CBD5E1 !important;
}

body.light-theme .dot.active {
    background: var(--accent-gold) !important;
}


/* ==========================================
   FORMS & INPUT FIELDS
   ========================================== */

body.light-theme input[type="text"],
body.light-theme input[type="tel"],
body.light-theme input[type="email"],
body.light-theme input[type="file"],
body.light-theme select,
body.light-theme textarea {
    background: #FFFFFF !important;
    color: #0F172A !important;
    border: 1px solid #CBD5E1 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
}

body.light-theme input:focus,
body.light-theme select:focus,
body.light-theme textarea:focus {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 0 3px rgba(154, 112, 0, 0.18) !important;
    outline: none !important;
}

body.light-theme ::placeholder {
    color: #64748B !important;
    opacity: 1;
}

body.light-theme select option {
    background: #FFFFFF !important;
    color: #0F172A !important;
}

body.light-theme .form-group label {
    color: #1E293B !important;
}

body.light-theme .form-group label .optional {
    color: #64748B !important;
}

body.light-theme .radio-group-label {
    color: #1E293B !important;
}

body.light-theme .radio-container {
    color: #334155 !important;
}

body.light-theme .radio-container .checkmark {
    border-color: #94A3B8 !important;
}

body.light-theme .radio-container input:checked ~ .checkmark {
    background-color: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
}

body.light-theme .checkbox-container .custom-checkbox {
    border-color: #94A3B8 !important;
}

body.light-theme .checkbox-container input:checked ~ .custom-checkbox {
    background-color: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
}

body.light-theme .checkbox-text {
    color: #334155 !important;
}

body.light-theme .form-header-title {
    color: var(--text-heading) !important;
}

body.light-theme .form-header-sub {
    color: var(--text-secondary) !important;
}

body.light-theme .inquiry-form-wrapper {
    background: rgba(255,255,255,0.92) !important;
    border-color: var(--border-default) !important;
}


/* ==========================================
   FAQ ACCORDION
   ========================================== */

body.light-theme .faq-item {
    background: rgba(255,255,255,0.85) !important;
    border-color: var(--border-default) !important;
}

body.light-theme .faq-item.open {
    background: #FFFFFF !important;
    border-color: var(--accent-gold) !important;
}

body.light-theme .faq-question {
    color: var(--text-heading) !important;
}

body.light-theme .faq-toggle-icon {
    color: var(--accent-gold) !important;
}

body.light-theme .faq-answer,
body.light-theme .faq-answer p,
body.light-theme .faq-answer li {
    color: var(--text-secondary) !important;
}


/* ==========================================
   COMPLIANCE SECTION
   ========================================== */

body.light-theme .compliance-card {
    background: rgba(255,255,255,0.90) !important;
}

body.light-theme .compliance-card.do-not {
    border-color: rgba(185, 28, 28, 0.25) !important;
}

body.light-theme .compliance-card.do-not:hover {
    border-color: rgba(185, 28, 28, 0.5) !important;
}

body.light-theme .compliance-card.do-provide {
    border-color: rgba(4, 120, 87, 0.25) !important;
}

body.light-theme .compliance-card.do-provide:hover {
    border-color: rgba(4, 120, 87, 0.5) !important;
}

body.light-theme .compliance-header h3 {
    color: var(--text-heading) !important;
}

body.light-theme .compliance-sub {
    color: var(--text-secondary) !important;
}

body.light-theme .compliance-list li strong {
    color: var(--text-heading) !important;
}

body.light-theme .compliance-list li p {
    color: var(--text-secondary) !important;
}


/* ==========================================
   CONTACT INFO BLOCKS
   ========================================== */

body.light-theme .quick-item span {
    color: var(--text-secondary) !important;
}

body.light-theme .quick-item strong {
    color: var(--text-heading) !important;
}

body.light-theme .quick-item i {
    color: var(--accent-gold) !important;
}


/* ==========================================
   SUCCESS MODAL
   ========================================== */

body.light-theme .form-success-overlay {
    background: rgba(240, 245, 252, 0.96) !important;
}

body.light-theme .success-card {
    background: #FFFFFF !important;
    border-color: var(--accent-gold) !important;
    color: var(--text-heading) !important;
}

body.light-theme .success-card h3 {
    color: var(--text-heading) !important;
}

body.light-theme .success-ref {
    color: var(--text-secondary) !important;
}

body.light-theme .success-message {
    color: var(--text-secondary) !important;
}

body.light-theme .summary-details-box {
    background: #F1F5F9 !important;
    border-color: var(--border-default) !important;
}

body.light-theme .summary-details-box strong {
    color: var(--text-heading) !important;
}

body.light-theme .summary-details-box li {
    color: var(--text-secondary) !important;
}


/* ==========================================
   SERVICE DRAWER
   ========================================== */

body.light-theme .service-drawer-container {
    background: #FFFFFF !important;
    border-left-color: var(--accent-gold) !important;
    box-shadow: -10px 0 30px rgba(0,0,0,0.12) !important;
}

body.light-theme .drawer-header-brand {
    color: var(--text-secondary) !important;
    border-bottom-color: var(--border-default) !important;
}

body.light-theme .drawer-title {
    color: var(--text-heading) !important;
}

body.light-theme .drawer-desc {
    color: var(--text-primary) !important;
    opacity: 1 !important;
}

body.light-theme .drawer-sub-header {
    color: var(--accent-gold) !important;
    border-bottom-color: var(--border-gold) !important;
}

body.light-theme .drawer-items-list li {
    border-bottom-color: var(--border-subtle) !important;
    color: var(--text-primary) !important;
}

body.light-theme .drawer-items-list li strong {
    color: var(--text-heading) !important;
}

body.light-theme .drawer-items-list li span {
    color: var(--text-secondary) !important;
}

body.light-theme .close-drawer-btn {
    color: var(--text-secondary) !important;
}

body.light-theme .close-drawer-btn:hover {
    color: var(--accent-gold) !important;
}


/* ==========================================
   FOOTER
   ========================================== */

body.light-theme .contact-section {
    background: var(--bg-footer) !important;
    border-top-color: rgba(0,0,0,0.08) !important;
    color: var(--text-secondary) !important;
}

body.light-theme .footer-brand-title {
    color: var(--text-heading) !important;
}

body.light-theme .footer-parent-org {
    color: var(--accent-gold) !important;
}

body.light-theme .footer-tagline {
    color: var(--text-secondary) !important;
}

body.light-theme .footer-title {
    color: var(--text-heading) !important;
}

body.light-theme .footer-links a {
    color: var(--text-secondary) !important;
}

body.light-theme .footer-links a:hover {
    color: var(--accent-gold) !important;
}

body.light-theme .info-block strong {
    color: var(--text-heading) !important;
}

body.light-theme .info-block p,
body.light-theme .info-block a {
    color: var(--text-secondary) !important;
}

body.light-theme .info-block a:hover {
    color: var(--accent-gold) !important;
}

body.light-theme .main-footer {
    background: var(--bg-footer-bottom) !important;
    color: var(--text-secondary) !important;
    border-top-color: rgba(0,0,0,0.04) !important;
}

body.light-theme .disclaimer-text {
    color: var(--text-secondary) !important;
    opacity: 0.85 !important;
}


/* ==========================================
   LEGAL PAGES (policy pages text)
   ========================================== */

body.light-theme .legal-page-section p,
body.light-theme .legal-page-section li,
body.light-theme .legal-page-section ul {
    color: var(--text-secondary) !important;
}

body.light-theme .legal-page-section h3.gold-text {
    color: var(--accent-gold) !important;
}

body.light-theme .legal-page-section strong {
    color: var(--text-heading) !important;
}


/* ==========================================
   SCROLLBAR
   ========================================== */

body.light-theme ::-webkit-scrollbar-track {
    background: #E2E8F0;
}

body.light-theme ::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
}


/* ==========================================
   THEME TOGGLE BUTTON
   ========================================== */

.theme-toggle-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--accent-gold, #D4AF37);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(192,192,192,0.15);
}

.theme-toggle-btn:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--accent-gold, #D4AF37);
    transform: scale(1.08) rotate(18deg);
    box-shadow: 0 0 14px rgba(212,175,55,0.35);
}

.theme-toggle-btn:focus-visible {
    outline: 3px solid var(--accent-gold, #D4AF37);
    outline-offset: 3px;
}

body.light-theme .theme-toggle-btn {
    border-color: rgba(154, 112, 0, 0.35) !important;
    color: var(--accent-gold) !important;
}


/* ==========================================
   LANGUAGE DROPDOWN SELECTOR
   ========================================== */

.header-controls {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-trigger {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--text-primary, #E2E8F0);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

body.light-theme .lang-trigger {
    color: #334155 !important;
    border-color: rgba(154, 112, 0, 0.30) !important;
}

.lang-trigger:hover {
    background: rgba(212, 175, 55, 0.10);
    border-color: var(--accent-gold, #D4AF37);
}

.lang-trigger:focus-visible {
    outline: 3px solid var(--accent-gold, #D4AF37);
    outline-offset: 2px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #071324;
    border: 1px solid rgba(212, 175, 55, 0.20);
    border-radius: 8px;
    list-style: none;
    padding: 0.5rem 0;
    min-width: 145px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1010;
    box-shadow: var(--shadow-dropdown, 0 10px 25px rgba(0,0,0,0.5));
}

body.light-theme .lang-dropdown {
    background: #FFFFFF !important;
    border: 1px solid var(--border-default) !important;
    box-shadow: var(--shadow-dropdown) !important;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher:focus-within .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li a {
    color: #E2E8F0;
    text-decoration: none;
    padding: 0.55rem 1rem;
    display: block;
    font-size: 0.85rem;
    transition: background 0.2s ease, color 0.2s ease;
}

body.light-theme .lang-dropdown li a {
    color: #334155 !important;
}

.lang-dropdown li a:hover {
    background: rgba(212, 175, 55, 0.14);
    color: var(--accent-gold, #D4AF37) !important;
}


body.light-theme .lang-dropdown li a:hover {
    background: rgba(154, 112, 0, 0.08) !important;
    color: var(--accent-gold) !important;
}


/* ==========================================
   FLOATING SOCIAL MEDIA SIDEBAR
   ========================================== */

.floating-social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9990;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 0 12px 12px 0;
    overflow: hidden;
    box-shadow: 4px 0 24px rgba(0,0,0,0.35);
}

.floating-social-sidebar a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 46px;
    height: 48px;
    padding: 0 14px;
    text-decoration: none;
    font-size: 1.15rem;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.35s ease;
}

.floating-social-sidebar a span.social-label {
    font-size: 0.78rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
    pointer-events: none;
}

.floating-social-sidebar a:hover {
    width: 140px;
    filter: brightness(1.15);
}

.floating-social-sidebar a:hover .social-label {
    opacity: 1;
    transform: translateX(0);
}

/* Facebook */
.floating-social-sidebar .social-fb {
    background: #1877F2;
}
.floating-social-sidebar .social-fb:hover {
    background: #1565d8;
}

/* Instagram */
.floating-social-sidebar .social-insta {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* YouTube */
.floating-social-sidebar .social-yt {
    background: #FF0000;
}
.floating-social-sidebar .social-yt:hover {
    background: #cc0000;
}

/* Slide-in entrance animation */
@keyframes socialSlideIn {
    from { transform: translateX(-60px); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

.floating-social-sidebar a:nth-child(1) { animation: socialSlideIn 0.5s cubic-bezier(0.16,1,0.3,1) 0.3s both; }
.floating-social-sidebar a:nth-child(2) { animation: socialSlideIn 0.5s cubic-bezier(0.16,1,0.3,1) 0.45s both; }
.floating-social-sidebar a:nth-child(3) { animation: socialSlideIn 0.5s cubic-bezier(0.16,1,0.3,1) 0.6s both; }

/* Responsive */
@media (max-width: 480px) {
    .floating-social-sidebar {
        top: auto;
        bottom: 110px;
        transform: none;
    }
    .floating-social-sidebar a {
        width: 40px;
        height: 42px;
        font-size: 1rem;
    }
}


/* ==========================================
   VISITOR COUNTER BAR
   ========================================== */

.visitor-counter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 18px;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    animation: vcFadeIn 0.8s ease 0.5s both;
}

@keyframes vcFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.vc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 20px;
}

.vc-divider {
    width: 1px;
    height: 32px;
    background: rgba(212, 175, 55, 0.25);
    flex-shrink: 0;
}

.vc-icon {
    font-size: 1.1rem;
    opacity: 0.9;
}

.vc-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.vc-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    font-family: var(--font-body);
}

.vc-number {
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--color-gold);
    letter-spacing: 0.04em;
}

/* Blinking green online dot */
.vc-online-dot {
    font-size: 0.55rem !important;
    color: #10B981;
    animation: vcPulse 1.8s ease-in-out infinite;
}

@keyframes vcPulse {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(1.4); }
}

/* Light theme override */
body.light-theme .visitor-counter-bar {
    background: rgba(212, 175, 55, 0.07);
    border-color: rgba(154, 112, 0, 0.2);
}

body.light-theme .vc-label {
    color: #64748b;
}

/* Responsive */
@media (max-width: 600px) {
    .visitor-counter-bar {
        border-radius: 16px;
        padding: 12px 16px;
        gap: 8px;
    }
    .vc-item {
        padding: 4px 10px;
    }
    .vc-divider {
        height: 24px;
    }
    .vc-number {
        font-size: 0.88rem;
    }
}
