﻿/* About.aspx page styles - extracted from inline */
        /* ── Design Tokens (scoped to .abt-page — NOT :root to avoid global leaks) ── */
        .abt-page {
            --tg-primary:       #2e8795;
            --tg-primary-dark:  #1a5f6b;
            --tg-accent:        #3aa4b8;
            --tg-orange:        #f5833d;
            --tg-orange-dark:   #d4611a;
            --tg-dark:          #1e2a38;
            --tg-text:          #374151;
            --tg-muted:         #6b7280;
            --tg-light-bg:      #f5f9fa;
            --tg-card-bg:       #ffffff;
            --tg-border:        rgba(46,135,149,0.12);
            --tg-shadow:        0 8px 32px rgba(46,135,149,0.10);
            --tg-shadow-lg:     0 20px 60px rgba(46,135,149,0.16);
            --tg-radius:        20px;
            --tg-transition:    all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
        }

        /* ── Global page wrapper ── */
        .abt-page { color: var(--tg-text); font-size: 1rem; line-height: 1.7; }

        /* ════════════════════════════════════════
           HERO
        ════════════════════════════════════════ */
        .abt-hero {
            background: linear-gradient(135deg, #0f2334 0%, #1a4a57 45%, #2e8795 100%);
            color: #fff;
            padding: 80px 0 90px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .abt-hero::before {
            content: '';
            position: absolute; inset: 0;
            background:
                radial-gradient(ellipse 60% 50% at 20% 50%, rgba(58,164,184,0.18) 0%, transparent 70%),
                radial-gradient(ellipse 40% 60% at 80% 30%, rgba(245,131,61,0.12) 0%, transparent 65%);
            pointer-events: none;
        }
        /* Subtle geometric grid pattern */
        .abt-hero::after {
            content: '';
            position: absolute; inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }
        .abt-hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 0 20px; }
        .abt-hero-tag {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(245,131,61,0.18); border: 1px solid rgba(245,131,61,0.4);
            color: #fdba74; border-radius: 50px; padding: 6px 18px;
            font-size: 0.82rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
            margin-bottom: 24px;
        }
        .abt-hero-h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 800; line-height: 1.2; margin: 0 0 20px;
            color: #fff; letter-spacing: -0.5px;
        }
        .abt-hero-h1 span { color: #fdba74; }
        .abt-hero-sub {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: rgba(255,255,255,0.82); max-width: 600px; margin: 0 auto 36px; font-weight: 400;
        }
        .abt-hero-badges {
            display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
        }
        .abt-hero-badge {
            display: flex; align-items: center; gap: 8px;
            background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.9); border-radius: 50px;
            padding: 8px 20px; font-size: 0.88rem; font-weight: 600;
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
        }
        .abt-hero-badge i { color: #fdba74; }

        /* ════════════════════════════════════════
           STATS STRIP
        ════════════════════════════════════════ */
        .abt-stats {
            background: var(--tg-card-bg);
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
            position: relative; z-index: 2;
        }
        .abt-stats-grid {
            display: grid; grid-template-columns: repeat(4, 1fr);
            max-width: 1100px; margin: 0 auto; padding: 0 20px;
        }
        .abt-stat {
            padding: 32px 20px; text-align: center;
            border-inline-end: 1px solid var(--tg-border);
            transition: var(--tg-transition);
        }
        .abt-stat:last-child { border-inline-end: none; }
        .abt-stat:hover { background: var(--tg-light-bg); }
        .abt-stat-num {
            font-size: 2.4rem; font-weight: 800; line-height: 1;
            background: linear-gradient(135deg, var(--tg-primary), var(--tg-accent));
            -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
        }
        .abt-stat-num span { color: var(--tg-orange); -webkit-text-fill-color: var(--tg-orange); }
        .abt-stat-label { font-size: 0.88rem; color: var(--tg-muted); margin-top: 6px; font-weight: 500; }
        .abt-stat-icon { font-size: 1.4rem; color: var(--tg-primary); margin-bottom: 10px; }

        /* ════════════════════════════════════════
           SECTION SHARED
        ════════════════════════════════════════ */
        .abt-section { padding: 80px 0; }
        .abt-section-alt { background: var(--tg-light-bg); }
        .abt-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
        .abt-section-label {
            display: inline-block; color: var(--tg-orange);
            font-size: 0.8rem; font-weight: 800; letter-spacing: 1.5px;
            text-transform: uppercase; margin-bottom: 12px;
        }
        .abt-section-label::before { content: '—— '; }
        .abt-h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
            color: var(--tg-dark); line-height: 1.25; margin: 0 0 16px;
        }
        .abt-h2 em { font-style: normal; color: var(--tg-primary); }
        .abt-lead {
            font-size: 1.08rem; color: var(--tg-muted);
            max-width: 620px; line-height: 1.75;
        }

        /* ════════════════════════════════════════
           STORY / TWO-COL
        ════════════════════════════════════════ */
        .abt-two-col {
            display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
        }
        .abt-story-visual {
            background: linear-gradient(135deg, var(--tg-primary) 0%, var(--tg-accent) 100%);
            border-radius: var(--tg-radius); padding: 48px 40px; color: #fff;
            position: relative; overflow: hidden;
        }
        .abt-story-visual::before {
            content: '';
            position: absolute; top: -40px; right: -40px;
            width: 180px; height: 180px;
            background: rgba(255,255,255,0.06); border-radius: 50%;
        }
        .abt-story-visual::after {
            content: '';
            position: absolute; bottom: -50px; left: -30px;
            width: 220px; height: 220px;
            background: rgba(255,255,255,0.04); border-radius: 50%;
        }
        .abt-story-icon {
            width: 64px; height: 64px; background: rgba(255,255,255,0.15);
            border-radius: 16px; display: flex; align-items: center; justify-content: center;
            font-size: 1.8rem; margin-bottom: 24px; position: relative; z-index: 1;
        }
        .abt-story-quote {
            font-size: 1.25rem; font-weight: 600; line-height: 1.6;
            margin-bottom: 24px; position: relative; z-index: 1;
        }
        .abt-story-quote::before { content: '\201C'; font-size: 3rem; color: rgba(255,255,255,0.3); line-height: 0; vertical-align: -0.5em; margin-inline-end: 4px; }
        .abt-story-author { font-size: 0.88rem; color: rgba(255,255,255,0.7); position: relative; z-index: 1; }
        .abt-story-milestones { display: flex; flex-direction: column; gap: 20px; }
        .abt-milestone {
            display: flex; gap: 16px; align-items: flex-start;
            padding: 20px; background: var(--tg-card-bg); border-radius: 14px;
            border: 1px solid var(--tg-border); transition: var(--tg-transition);
        }
        .abt-milestone:hover { box-shadow: var(--tg-shadow); transform: translateX(-4px); }
        .abt-milestone-icon {
            flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
            background: linear-gradient(135deg, var(--tg-primary), var(--tg-accent));
            color: #fff; display: flex; align-items: center; justify-content: center;
            font-size: 1rem;
        }
        .abt-milestone-text strong { display: block; font-weight: 700; color: var(--tg-dark); margin-bottom: 4px; }
        .abt-milestone-text span { font-size: 0.9rem; color: var(--tg-muted); }

        /* ════════════════════════════════════════
           MISSION / VISION CARDS
        ════════════════════════════════════════ */
        .abt-mv-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
        }
        .abt-mv-card {
            background: var(--tg-card-bg); border-radius: var(--tg-radius);
            border: 1px solid var(--tg-border); padding: 36px 28px;
            transition: var(--tg-transition); position: relative; overflow: hidden;
        }
        .abt-mv-card::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, var(--tg-primary), var(--tg-accent));
            opacity: 0; transition: opacity 0.4s;
        }
        .abt-mv-card:hover { transform: translateY(-8px); box-shadow: var(--tg-shadow-lg); }
        .abt-mv-card:hover::before { opacity: 0.04; }
        .abt-mv-icon {
            width: 56px; height: 56px; border-radius: 16px; margin-bottom: 20px;
            display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
        }
        .abt-mv-card[data-card="mission"] .abt-mv-icon { background: rgba(46,135,149,0.1); color: var(--tg-primary); }
        .abt-mv-card[data-card="vision"]  .abt-mv-icon { background: rgba(245,131,61,0.1); color: var(--tg-orange); }
        .abt-mv-card[data-card="values"]  .abt-mv-icon { background: rgba(58,164,184,0.1); color: var(--tg-accent); }
        .abt-mv-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--tg-dark); margin: 0 0 12px; }
        .abt-mv-card p { font-size: 0.97rem; color: var(--tg-muted); margin: 0; line-height: 1.75; }
        .abt-mv-card[data-card="values"] ul {
            margin: 0; padding-inline-start: 0; list-style: none;
            display: flex; flex-direction: column; gap: 8px;
        }
        .abt-mv-card[data-card="values"] li {
            display: flex; align-items: center; gap: 8px;
            font-size: 0.95rem; color: var(--tg-muted);
        }
        .abt-mv-card[data-card="values"] li i { color: var(--tg-accent); font-size: 0.8rem; }

        /* ════════════════════════════════════════
           WHY US
        ════════════════════════════════════════ */
        .abt-why-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
        }
        .abt-why-card {
            background: var(--tg-card-bg); border-radius: 16px;
            border: 1px solid var(--tg-border); padding: 28px 24px;
            transition: var(--tg-transition); display: flex; gap: 16px; align-items: flex-start;
        }
        .abt-why-card:hover { box-shadow: var(--tg-shadow); transform: translateY(-4px); border-color: var(--tg-primary); }
        .abt-why-num {
            flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
            background: linear-gradient(135deg, var(--tg-primary), var(--tg-accent));
            color: #fff; font-weight: 800; font-size: 0.9rem;
            display: flex; align-items: center; justify-content: center;
        }
        .abt-why-body h4 { font-size: 1rem; font-weight: 700; color: var(--tg-dark); margin: 0 0 6px; }
        .abt-why-body p { font-size: 0.9rem; color: var(--tg-muted); margin: 0; line-height: 1.65; }

        /* ════════════════════════════════════════
           TRUST / CREDENTIALS
        ════════════════════════════════════════ */
        .abt-trust-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
        }
        .abt-trust-card {
            background: var(--tg-card-bg); border-radius: 16px;
            border: 1px solid var(--tg-border); padding: 28px 20px; text-align: center;
            transition: var(--tg-transition);
        }
        .abt-trust-card:hover { box-shadow: var(--tg-shadow); transform: translateY(-4px); }
        .abt-trust-icon { font-size: 2rem; margin-bottom: 12px; color: var(--tg-primary); }
        .abt-trust-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--tg-dark); margin: 0 0 6px; }
        .abt-trust-card p { font-size: 0.85rem; color: var(--tg-muted); margin: 0; line-height: 1.55; }

        /* ════════════════════════════════════════
           CTA
        ════════════════════════════════════════ */
        .abt-cta {
            background: linear-gradient(135deg, var(--tg-primary-dark) 0%, var(--tg-primary) 50%, var(--tg-accent) 100%);
            color: #fff; text-align: center; padding: 80px 24px; position: relative; overflow: hidden;
        }
        .abt-cta::before {
            content: '';
            position: absolute; inset: 0;
            background: radial-gradient(ellipse 70% 80% at 50% 120%, rgba(245,131,61,0.2) 0%, transparent 70%);
        }
        .abt-cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
        .abt-cta h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 800; margin: 0 0 16px; }
        .abt-cta p { font-size: 1.1rem; opacity: 0.88; margin: 0 0 36px; }
        .abt-cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
        .abt-btn-primary {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--tg-orange); color: #fff;
            padding: 14px 32px; border-radius: 50px;
            font-weight: 700; font-size: 1rem; text-decoration: none;
            transition: var(--tg-transition); box-shadow: 0 8px 24px rgba(245,131,61,0.35);
        }
        .abt-btn-primary:hover { background: var(--tg-orange-dark); transform: translateY(-3px); box-shadow: 0 14px 32px rgba(245,131,61,0.45); color: #fff; }
        .abt-btn-outline {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.45); color: #fff;
            padding: 14px 32px; border-radius: 50px;
            font-weight: 700; font-size: 1rem; text-decoration: none;
            transition: var(--tg-transition); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
        }
        .abt-btn-outline:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); color: #fff; }

        /* ════════════════════════════════════════
           RESPONSIVE
        ════════════════════════════════════════ */
        @media (max-width: 991px) {
            .abt-stats-grid      { grid-template-columns: repeat(2,1fr); }
            .abt-stat            { border-inline-end: none; border-bottom: 1px solid var(--tg-border); }
            .abt-two-col         { grid-template-columns: 1fr; gap: 36px; }
            .abt-mv-grid         { grid-template-columns: repeat(2,1fr); }
            .abt-why-grid        { grid-template-columns: repeat(2,1fr); }
            .abt-trust-grid      { grid-template-columns: repeat(2,1fr); }
        }
        @media (max-width: 599px) {
            .abt-section         { padding: 52px 0; }
            .abt-stats-grid      { grid-template-columns: repeat(2,1fr); }
            .abt-mv-grid,
            .abt-why-grid,
            .abt-trust-grid      { grid-template-columns: 1fr; }
            .abt-milestone       { flex-direction: column; }
        }

        /* ════════════════════════════════════════
           BRANCHES / COUNTRY CARDS
        ════════════════════════════════════════ */
        .abt-branches-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 48px;
        }
        .abt-branch-card {
            display: flex; align-items: center; gap: 14px;
            background: var(--tg-card-bg); border-radius: 14px;
            border: 1px solid var(--tg-border); padding: 16px 18px;
            text-decoration: none; color: var(--tg-text);
            transition: var(--tg-transition); position: relative; overflow: hidden;
        }
        .abt-branch-card::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, var(--tg-primary), var(--tg-accent));
            opacity: 0; transition: opacity 0.3s;
        }
        .abt-branch-card:hover {
            box-shadow: var(--tg-shadow); transform: translateY(-4px);
            border-color: var(--tg-primary); color: var(--tg-text);
        }
        .abt-branch-card:hover::before { opacity: 0.04; }
        .abt-branch-flag-wrap {
            flex-shrink: 0; width: 48px; height: 34px;
            border-radius: 6px; overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.12);
            border: 1px solid rgba(0,0,0,0.06);
        }
        .abt-branch-flag { width: 100%; height: 100%; object-fit: cover; display: block; }
        .abt-branch-info { flex: 1; min-width: 0; }
        .abt-branch-info strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--tg-dark); }
        .abt-branch-stat { font-size: 0.78rem; color: var(--tg-muted); margin-top: 3px; display: flex; align-items: center; gap: 5px; }
        .abt-branch-stat i { color: var(--tg-primary); }
        .abt-branch-arrow {
            flex-shrink: 0; color: var(--tg-primary); font-size: 0.85rem;
            opacity: 0; transform: translateX(4px); transition: var(--tg-transition);
        }
        [dir="ltr"] .abt-branch-arrow { transform: translateX(-4px); }
        .abt-branch-card:hover .abt-branch-arrow { opacity: 1; transform: translateX(0); }
        [dir="ltr"] .abt-branch-card .abt-branch-arrow i { transform: rotate(180deg); }

        /* ════════════════════════════════════════
           MAP
        ════════════════════════════════════════ */
        .abt-map-wrap { margin-top: 8px; }
        .abt-map-label {
            text-align: center; font-size: 0.82rem; font-weight: 700;
            letter-spacing: 1px; text-transform: uppercase;
            color: var(--tg-muted); margin-bottom: 16px;
        }
        .abt-map-label::before, .abt-map-label::after {
            content: ' ──── '; color: var(--tg-border);
        }
        .abt-map-container {
            position: relative; border-radius: 20px; overflow: hidden;
            box-shadow: var(--tg-shadow-lg);
            background: #e8f4f8;
            border: 1px solid var(--tg-border);
        }
        .abt-map-svg { width: 100%; height: auto; display: block; }

        /* Country fills */
        .abt-map-country {
            fill: #cbd5e1; stroke: #fff; stroke-width: 1.5;
            transition: fill 0.25s, filter 0.25s;
        }
        .abt-map-covered {
            fill: #2e8795; opacity: 0.65;
        }
        .abt-map-covered:hover {
            fill: #f5833d; opacity: 0.85; cursor: pointer;
            filter: drop-shadow(0 0 6px rgba(245,131,61,0.5));
        }

        /* Marker pulse animation */
        .abt-marker-pulse {
            fill: rgba(245,131,61,0.25);
            stroke: #f5833d; stroke-width: 1.5;
            animation: abt-pulse 2s ease-in-out infinite;
        }
        .abt-marker-dot {
            fill: #f5833d; stroke: #fff; stroke-width: 2;
            cursor: pointer;
            transition: r 0.2s, fill 0.2s;
        }
        .abt-map-marker:hover .abt-marker-dot { fill: #2e8795; r: 8; }
        .abt-map-marker { cursor: pointer; }
        @keyframes abt-pulse {
            0%, 100% { r: 12; opacity: 0.6; }
            50%       { r: 18; opacity: 0.2; }
        }

        /* HTML Tooltip */
        .abt-map-tooltip {
            position: absolute; pointer-events: none;
            background: #1e2a38; color: #fff;
            padding: 6px 14px; border-radius: 8px;
            font-size: 0.82rem; font-weight: 700;
            white-space: nowrap; z-index: 10;
            box-shadow: 0 4px 16px rgba(0,0,0,0.25);
            transform: translate(-50%, -110%);
        }
        .abt-map-tooltip::after {
            content: ''; position: absolute; bottom: -5px; left: 50%;
            transform: translateX(-50%);
            border: 5px solid transparent;
            border-top-color: #1e2a38; border-bottom: 0;
        }

        /* Responsive branches */
        @media (max-width: 991px) {
            .abt-branches-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 599px) {
            .abt-branches-grid { grid-template-columns: 1fr; }
        }

        /* ════════════════════════════════════════
           DARK STATS BAR
        ════════════════════════════════════════ */
        .abt-dark-stats {
            display: flex; align-items: center; justify-content: center;
            gap: 0; margin-bottom: 48px;
            background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px; padding: 20px 32px; flex-wrap: wrap;
        }
        .abt-dark-stat { text-align: center; padding: 4px 32px; }
        .abt-dark-stat-num {
            display: block; font-size: 1.9rem; font-weight: 800;
            color: #4dd8e5; line-height: 1; letter-spacing: -1px;
        }
        .abt-dark-stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; margin-top: 4px; display: block; }
        .abt-dark-stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

        /* ════════════════════════════════════════
           DARK TWO-COLUMN LAYOUT
        ════════════════════════════════════════ */
        .abt-dark-layout {
            display: grid; grid-template-columns: 1fr 280px; gap: 24px;
            align-items: start;
        }
        .abt-dark-map-col { position: relative; }
        .abt-dark-map-frame {
            position: relative; border-radius: 18px; overflow: hidden;
            border: 1px solid rgba(62,205,217,0.15);
            box-shadow: 0 0 60px rgba(62,205,217,0.08), 0 24px 64px rgba(0,0,0,0.5);
        }
        .abt-dark-map-frame .abt-map-svg { width: 100%; height: auto; display: block; }

        /* SVG country fills */
        .abt-dk-country-grey {
            fill: #1a3045; stroke: #0d1e30; stroke-width: 1;
        }
        .abt-dk-country-cov {
            fill: url(#cGrad); stroke: rgba(62,205,217,0.4); stroke-width: 1;
            cursor: pointer; opacity: 0.82;
            transition: opacity 0.2s;
        }
        .abt-dk-country-cov:hover { opacity: 1; stroke-width: 1.5; }

        /* Country name labels on map */
        .abt-dk-map-label {
            font-size: 9px; font-weight: 700; fill: rgba(255,255,255,0.85);
            font-family: inherit; letter-spacing: 0.3px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.8);
        }

        /* Markers */
        .abt-dk-pulse1 {
            fill: rgba(245,131,61,0.12); stroke: rgba(245,131,61,0.5); stroke-width: 1;
            animation: abt-dk-pulse 2.4s ease-in-out infinite;
        }
        .abt-dk-pulse2 {
            fill: rgba(245,131,61,0.2); stroke: rgba(245,131,61,0.7); stroke-width: 1;
            animation: abt-dk-pulse 2.4s ease-in-out infinite 0.3s;
        }
        .abt-dk-dot { fill: #f5833d; stroke: #fff; stroke-width: 1.5; }
        @keyframes abt-dk-pulse {
            0%,100% { r: 14; opacity:0.6; }
            50%      { r: 20; opacity:0.1; }
        }

        /* Tooltip */
        .abt-dark-tooltip {
            position: absolute; pointer-events: none;
            background: rgba(15,35,54,0.95); color: #fff;
            border: 1px solid rgba(62,205,217,0.3);
            padding: 6px 14px; border-radius: 8px;
            font-size: 0.8rem; font-weight: 700;
            white-space: nowrap; z-index: 20;
            box-shadow: 0 4px 20px rgba(0,0,0,0.4);
            transform: translate(-50%, -120%);
        }

        /* ════════════════════════════════════════
           DARK COUNTRY LIST (right column)
        ════════════════════════════════════════ */
        .abt-dark-country-list {
            display: flex; flex-direction: column; gap: 6px;
            max-height: 520px; overflow-y: auto;
        }
        .abt-dark-country-list::-webkit-scrollbar { width: 3px; }
        .abt-dark-country-list::-webkit-scrollbar-track { background: transparent; }
        .abt-dark-country-list::-webkit-scrollbar-thumb { background: rgba(62,205,217,0.3); border-radius: 2px; }
        .abt-dark-country {
            display: flex; align-items: center; gap: 10px;
            padding: 10px 14px; border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.06);
            background: rgba(255,255,255,0.04);
            text-decoration: none; color: rgba(255,255,255,0.85);
            transition: all 0.25s ease; cursor: pointer;
        }
        .abt-dark-country:hover {
            background: rgba(62,205,217,0.12); border-color: rgba(62,205,217,0.3);
            color: #fff; transform: translateX(-3px);
        }
        [dir="ltr"] .abt-dark-country:hover { transform: translateX(3px); }
        .abt-dk-flag { width: 36px; height: 25px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
        .abt-dk-info { flex: 1; min-width: 0; }
        .abt-dk-info strong { display: block; font-size: 0.85rem; font-weight: 700; }
        .abt-dk-info span { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
        .abt-dk-arrow { font-size: 0.7rem; color: rgba(62,205,217,0.6); opacity: 0; transition: opacity 0.2s; }
        .abt-dark-country:hover .abt-dk-arrow { opacity: 1; }
        [dir="ltr"] .abt-dk-arrow { transform: rotate(180deg); }

        /* Responsive */
        @media (max-width: 900px) {
            .abt-dark-layout { grid-template-columns: 1fr; }
            .abt-dark-country-list { max-height: none; display: grid; grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 540px) {
            .abt-dark-stat { padding: 4px 16px; }
            .abt-dark-stat-div { display: none; }
            .abt-dark-country-list { grid-template-columns: 1fr; }
        }
        /* ════════════════════════════════════════
           LEAFLET CUSTOM STYLES
        ════════════════════════════════════════ */
        /* Pulsing marker */
        .lf-pulse {
            position: relative;
            width: 20px; height: 20px;
        }
        .lf-pulse::before {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            background: rgba(245,131,61,0.15);
            border: 1.5px solid rgba(245,131,61,0.5);
            animation: lf-pulse-ring 2.2s ease-in-out infinite;
        }
        .lf-dot {
            position: absolute;
            inset: 5px;
            border-radius: 50%;
            background: #f5833d;
            border: 2px solid #fff;
            box-shadow: 0 0 8px rgba(245,131,61,0.6);
        }
        @keyframes lf-pulse-ring {
            0%, 100% { transform: scale(1);   opacity: 0.6; }
            50%       { transform: scale(1.55); opacity: 0.1; }
        }
        /* Leaflet tooltip override */
        .lf-tip {
            background: rgba(15,35,54,0.95) !important;
            border: 1px solid rgba(62,205,217,0.35) !important;
            color: #fff !important;
            font-size: 0.8rem !important;
            border-radius: 8px !important;
            padding: 6px 14px !important;
            box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
            white-space: nowrap !important;
        }
        .lf-tip::before { display: none !important; }
        /* Leaflet container z-index fix */
