/* ═══════════════════════════════════════════
   Export Africa Directory - Main Styles
   Design matched to inexpo.ae
   Updated: May 2026 — exact colour & font sync
   ═══════════════════════════════════════════ */

:root {
    --bg-darkest: #050810;
    --bg-dark: #0a0e1a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --gold: #c9a84c;
    --gold-light: #e0c46e;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --cyan: #00bcd4;
    --cyan-dim: rgba(0, 188, 212, 0.15);
    --text-primary: #f0f0f5;
    --text-secondary: #9ca3b8;
    --text-muted: #6b7280;
    --border-gold: rgba(201, 168, 76, 0.3);
    --border-gold-hover: rgba(201, 168, 76, 0.6);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --shadow-gold: 0 0 20px rgba(201, 168, 76, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --font-heading: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-stat: 'Bebas Neue', cursive;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-darkest);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: var(--bg-darkest);
}

/* ═══════ Typography ═══════ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

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

a:hover {
    color: var(--gold-light);
}

.text-gold { color: var(--gold) !important; }
.text-secondary-custom { color: var(--text-secondary) !important; }

/* ═══════ Navigation ═══════ */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    z-index: 1040;
}

.navbar.scrolled {
    background: rgba(5, 8, 16, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.navbar-brand {
    padding: 0;
}

.brand-main {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.brand-sub {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary) !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

/* Navbar Toggler (Hamburger) */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 32px;
    height: 24px;
    position: relative;
    background: none !important;
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
    left: 0;
}

.navbar-toggler span:nth-child(1) { top: 0; }
.navbar-toggler span:nth-child(2) { top: 50%; transform: translateY(-50%); width: 75%; }
.navbar-toggler span:nth-child(3) { bottom: 0; width: 50%; }

.navbar-toggler:hover span {
    width: 100% !important;
}

/* ═══════ Buttons ═══════ */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-darkest) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
    color: var(--bg-darkest) !important;
}

.btn-outline {
    background: transparent;
    color: var(--gold) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.75rem 1.75rem;
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-darkest) !important;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* ═══════ Pill Badge ═══════ */
.pill-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    padding: 5px 16px;
    margin-bottom: 1rem;
}

/* ═══════ Hero Section ═══════ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Floating Blobs */
.blob-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: blobFloat 20s infinite ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold), transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--cyan), transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: -5s;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--gold), transparent 70%);
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
    opacity: 0.25;
}

.blob-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--cyan), transparent 70%);
    top: 20%;
    right: 25%;
    animation-delay: -15s;
    opacity: 0.2;
}

.blob-5 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--gold), transparent 70%);
    bottom: 30%;
    right: 15%;
    animation-delay: -7s;
    opacity: 0.3;
}

.blob-6 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--cyan), transparent 70%);
    top: 60%;
    left: 15%;
    animation-delay: -12s;
    opacity: 0.2;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-pretitle {
    font-family: var(--font-body);
    font-size: 1.30rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.0rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--gold);
    display: block;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.30rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.0rem;
    flex-wrap: wrap;
    font-family: var(--font-body);
    font-size: 1.00rem;
    color: var(--text-secondary);
}

.hero-trust .separator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.hero-trust strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-bounce {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceArrow 2s infinite;
}

.hero-bounce svg {
    stroke: var(--gold);
    opacity: 0.6;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Cursor Spotlight Effect */
.spotlight-container {
    position: relative;
}

.spotlight-container::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.spotlight-container:hover::before {
    opacity: 1;
}

/* ═══════ Glass Cards ═══════ */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.glass-card-gold {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
    border: 1px solid var(--border-gold);
}

/* ═══════ Statistics Section ═══════ */
.stat-number {
    font-family: var(--font-stat);
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    align-self: stretch;
    min-height: 60px;
}

/* ═══════ Countdown Timer ═══════ */
.countdown-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1rem 0.5rem;
    text-align: center;
    min-width: 60px;
}

.countdown-number {
    font-family: var(--font-stat);
    font-size: 1.8rem;
    color: var(--cyan);
    line-height: 1;
    display: block;
}

.countdown-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.countdown-separator {
    font-family: var(--font-stat);
    font-size: 1.5rem;
    color: var(--cyan);
    align-self: center;
    margin: 0 0.25rem;
}

.countdown-expired {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold);
    text-align: center;
    padding: 0.5rem;
}

/* ═══════ Section Styles ═══════ */
.section {
    padding: 80px 0;
    position: relative;
}

.section-alt {
    background: var(--bg-dark);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.30rem;
    color: var(--text-secondary);
    max-width: 800px;
}

/* ═══════ Process Steps ═══════ */
.process-card {
    position: relative;
    padding: 2.5rem;
    overflow: hidden;
}

.process-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-stat);
    font-size: 10rem;
    color: rgba(201, 168, 76, 0.04);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--bg-darkest);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.process-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.process-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* ═══════ Feature Rows ═══════ */
.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
}

.feature-text h5 {
    font-size: 1.40rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ═══════ Quote Card ═══════ */
.quote-card {
    position: relative;
    padding: 2rem;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
}

.quote-text {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    padding-top: 2rem;
}

/* ═══════ Sector Cards ═══════ */
.sector-card {
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.sector-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.sector-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.sector-card:hover {
    border-color: var(--border-gold-hover);
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.1);
}

/* ═══════ Package Cards ═══════ */
.package-card {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.package-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}

.package-card.popular .package-header {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    border-bottom: 2px solid var(--gold);
}

.package-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 2.5rem;
    right: -2.5rem;
    background: var(--gold);
    color: var(--bg-darkest);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.25rem 2.5rem;
    transform: rotate(45deg);
    z-index: 2;
}

.package-body {
    padding: 2rem;
}

.package-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-price {
    font-family: var(--font-stat);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.package-features li:last-child {
    border-bottom: none;
}

.feature-check {
    color: var(--gold);
    font-size: 1rem;
    min-width: 20px;
}

.package-includes {
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}

.package-includes h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.package-includes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-includes-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* ═══════ Exhibition Photo Cards ═══════ */
.exhibition-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.exhibition-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.exhibition-card:hover img {
    transform: scale(1.05);
}

.exhibition-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 8, 16, 0.95) 0%, rgba(5, 8, 16, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--transition);
}

.exhibition-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--bg-darkest);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

.exhibition-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.exhibition-city {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.exhibition-hover-content {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 16, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.exhibition-card:hover .exhibition-hover-content {
    opacity: 1;
}

/* ═══════ Issue Cards ═══════ */
.issue-card {
    position: relative;
    overflow: hidden;
}

.issue-number {
    font-family: var(--font-stat);
    font-size: 5rem;
    color: var(--gold);
    line-height: 1;
    opacity: 0.8;
}

.issue-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--bg-darkest);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 1px;
}

/* ═══════ Filter Buttons ═══════ */
.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-darkest);
}

/* ═══════ Gallery Grid & Lightbox ═══════ */
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 16, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: var(--gold);
    color: var(--bg-darkest);
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ═══════ Marquee ═══════ */
.marquee-section {
    overflow: hidden;
    padding: 2rem 0;
}

.marquee-row {
    display: flex;
    width: max-content;
    animation: marqueeLeft 40s linear infinite;
}

.marquee-row.reverse {
    animation: marqueeRight 40s linear infinite;
    margin-top: 1rem;
}

.marquee-section:hover .marquee-row {
    animation-play-state: paused;
}

.marquee-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1rem 2rem;
    margin: 0 0.5rem;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

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

/* ═══════ Africa Map ═══════ */
.map-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

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

.map-dot {
    cursor: pointer;
    position: relative;
}

.map-dot circle {
    fill: var(--gold);
    animation: pulseDot 2s infinite;
}

.map-dot circle:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes pulseDot {
    0% { r: 4; opacity: 1; }
    50% { r: 8; opacity: 0.3; }
    100% { r: 4; opacity: 1; }
}

.map-tooltip {
    position: absolute;
    background: var(--bg-dark);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 1rem;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    min-width: 200px;
    box-shadow: var(--shadow-card);
}

.map-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.map-tooltip .flag {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.map-tooltip h5 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.map-tooltip p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Distribution Table */
.dist-table {
    width: 100%;
    border-collapse: collapse;
}

.dist-table th {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    padding: 1rem;
    border-bottom: 2px solid var(--border-gold);
    text-align: left;
}

.dist-table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.92rem;
    color: var(--text-secondary);
    vertical-align: middle;
}

.dist-table tr:hover td {
    background: var(--bg-card);
    color: var(--text-primary);
}

.dist-table .flag-cell {
    font-size: 1.5rem;
}

.dist-table .total-row td {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold);
    border-top: 2px solid var(--border-gold);
    border-bottom: none;
}

/* ═══════ Testimonial Cards ═══════ */
.testimonial-card {
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    position: relative;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-primary);
}

.testimonial-company {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ═══════ CTA Banner ═══════ */
.cta-banner {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.03));
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* ═══════ WhatsApp Float ═══════ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 1030;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ═══════ Mobile Drawer ═══════ */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-darkest);
    z-index: 1060;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border-subtle);
}

.mobile-drawer.open {
    transform: translateX(0);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1055;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.drawer-header {
    padding: 1.5rem;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid var(--border-subtle);
}

.drawer-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.drawer-close:hover {
    color: var(--gold);
}

.drawer-body {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.drawer-link:hover,
.drawer-link.active {
    color: var(--gold);
    padding-left: 1rem;
}

.drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.drawer-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #25D366;
    color: #fff;
    padding: 0.875rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
}

/* ═══════ Footer ═══════ */
.site-footer {
    background: var(--bg-dark);
    position: relative;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.footer-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
    padding: 4rem 0 2rem;
}

.footer-col {
    margin-bottom: 2rem;
}

.footer-brand .brand-main {
    font-size: 0.85rem;
}

.footer-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.92rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.footer-flag {
    font-size: 1.1rem;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.footer-contact .contact-item svg {
    color: var(--gold);
    margin-top: 3px;
    min-width: 16px;
}

.footer-contact .contact-item a {
    color: var(--text-secondary);
}

.footer-contact .contact-item a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-darkest);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* ═══════ Office Badges ═══════ */
.office-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.office-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    min-width: 160px;
}

.office-badge:hover {
    border-color: var(--border-gold-hover);
    transform: translateY(-2px);
}

.office-flag {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.offadge-city {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.office-country {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ═══════ Scroll Reveal ═══════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════ Forms ═══════ */
.form-control {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    transition: var(--transition);
}

.form-control:focus {
    background: var(--bg-card-hover);
    border-color: var(--gold);
    color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

select.form-control {
    appearance: auto;
    background-color: var(--bg-card);
}

select.form-control option {
    background: var(--bg-darkest);
    color: var(--text-primary);
}

/* ═══════ Success Card ═══════ */
.success-card {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--gold);
}

/* ═══════ Accordion / FAQ ═══════ */
.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-chevron {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: var(--gold);
    min-width: 24px;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

/* ═══════ Timeline ═══════ */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--cyan), var(--gold));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 3rem;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--bg-darkest);
    top: 0.5rem;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.timeline-year {
    font-family: var(--font-stat);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.timeline-content {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ═══════ Breadcrumb ═══════ */
.breadcrumb-wrapper {
    padding: 100px 0 2rem;
    background: var(--bg-dark);
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 0.88rem;
}

.breadcrumb-item a {
    color: var(--text-secondary);
}

.breadcrumb-item a:hover {
    color: var(--gold);
}

.breadcrumb-item.active {
    color: var(--gold);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-muted);
}

/* ═══════ Page Header ═══════ */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 8, 16, 0.7), var(--bg-darkest));
    z-index: 1;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header .lead {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ═══════ Country Page Specific ═══════ */
.country-flag-hero {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
}

.country-detail-card h4 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* ═══════ Tables ═══════ */
.table-dark-custom {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
}

.table-dark-custom th {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem;
    border-bottom: 1px solid var(--border-gold);
}

.table-dark-custom td {
    color: var(--text-secondary);
    font-size: 0.92rem;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
    vertical-align: middle;
}

.table-dark-custom tr:hover td {
    background: var(--bg-card-hover);
}

/* ═══════ Cards Grid ═══════ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* ═══════ Responsive ═══════ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-divider {
        display: none;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 3rem;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 12px;
        right: auto;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

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

    .section-title {
        font-size: 1.75rem;
    }

    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-bounce {
        display: none;
    }

    .office-badges {
        gap: 1rem;
    }

    .office-badge {
        min-width: 130px;
        padding: 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .filter-buttons {
        gap: 0.35rem;
    }

    .filter-btn {
        font-size: 0.72rem;
        padding: 0.4rem 0.85rem;
    }
}

/* ═══════ Utilities ═══════ */
.gold-gradient-top {
    border-top: 3px solid;
    border-image: linear-gradient(90deg, var(--gold), var(--gold-light)) 1;
}

.text-bebas {
    font-family: var(--font-stat);
}

.bg-dark-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}
