/* ═══════════════════════════════════════════
   INEXPO GROUP - Main Stylesheet
   Dark Navy & Gold Premium Theme
   ═══════════════════════════════════════════ */

:root {
    --bg: #04081A;
    --bg2: #070D1F;
    --bg3: #0A1228;
    --bg4: #0E1A35;
    --gold: #C9A84C;
    --gold2: #F0C96A;
    --cyan: #00C8FF;
    --text: #EEF0F8;
    --muted: #B0BFD8;
    --border: rgba(201,168,76,0.2);
    --font-heading: 'Syne', serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg2);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

/* ─── Selection ─── */
::selection {
    background: rgba(201,168,76,0.3);
    color: var(--text);
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */

#mainNav {
    background: transparent;
    padding: 1rem 0;
    transition: var(--transition);
    z-index: 1000;
    border-bottom: 1px solid transparent;
}

#mainNav.scrolled {
    background: rgba(4, 8, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 0;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gold);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.brand-tag {
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar-nav {
    gap: 0.5rem;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--gold2) !important;
}

.nav-phone a {
    color: var(--gold2);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.nav-phone a:hover {
    color: var(--gold);
}

.navbar-toggler {
    border-color: var(--border);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201,168,76,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 1rem 4rem;
    background: var(--bg);
}

/* CSS Blob Animations - NO JavaScript, NO Canvas */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    animation: blobFloat 15s ease-in-out infinite;
}

.hero-blob:nth-child(1) {
    width: 500px;
    height: 500px;
    background: rgba(201,168,76,0.08);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.hero-blob:nth-child(2) {
    width: 400px;
    height: 400px;
    background: rgba(0,200,255,0.06);
    top: 50%;
    right: -5%;
    animation-delay: -3s;
    animation-duration: 20s;
}

.hero-blob:nth-child(3) {
    width: 350px;
    height: 350px;
    background: rgba(201,168,76,0.06);
    bottom: 10%;
    left: 20%;
    animation-delay: -7s;
    animation-duration: 16s;
}

.hero-blob:nth-child(4) {
    width: 300px;
    height: 300px;
    background: rgba(0,200,255,0.05);
    top: 20%;
    right: 25%;
    animation-delay: -10s;
    animation-duration: 22s;
}

.hero-blob:nth-child(5) {
    width: 450px;
    height: 450px;
    background: rgba(201,168,76,0.05);
    bottom: 30%;
    right: 10%;
    animation-delay: -5s;
    animation-duration: 19s;
}

.hero-blob:nth-child(6) {
    width: 250px;
    height: 250px;
    background: rgba(0,200,255,0.04);
    top: 60%;
    left: 5%;
    animation-delay: -12s;
    animation-duration: 17s;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(50px, -30px) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-30px, 50px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translate(20px, 20px) scale(1.05);
        opacity: 0.4;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-tagline {
    font-size: 1.50rem;
    letter-spacing: 1.35px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-headline .gold-text {
    color: var(--gold2);
    display: block;
}

.hero-subheadline {
    font-size: 1.08rem;
    color: #C8D4E8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

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

.btn-primary-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.3);
    color: var(--bg);
}

.btn-outline-gold {
    background: transparent;
    color: var(--text);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-outline-gold:hover {
    border-color: var(--gold);
    color: var(--gold2);
    background: rgba(201,168,76,0.05);
}

/* ═══════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════ */

.stats-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold2);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number .plus {
    color: var(--gold);
    font-size: 2rem;
}

.stat-label {
     font-size: 0.85rem;
    color: #B8C8DE;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   EXHIBITION CARDS
   ═══════════════════════════════════════════ */

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title .subtitle {
    font-size: 1.20rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 1000;
    display: block;
    margin-bottom: 0.25rem;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
}

.section-title p {
    color: var(--muted);
    max-width: 700px;
    margin: 0.75rem auto 0;
}

.exhibitions-section {
    padding: 5rem 0;
    background: var(--bg2);
}

.country-filter {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--gold);
    color: var(--gold2);
    background: rgba(201,168,76,0.05);
}

.exhibition-card {
    background: var(--bg3);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.1);
    transition: var(--transition);
    height: 100%;
}

.exhibition-card:hover {
    transform: translateY(-5px);
    border-color: var(--border);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.exhibition-card .card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.exhibition-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.exhibition-card .card-body {
    padding: 1.5rem;
}

.card-country {
    display: inline-block;
    background: rgba(201,168,76,0.1);
    color: var(--gold2);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.card-meta svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Countdown Timer */
.countdown {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.countdown-item {
    background: var(--bg4);
    border-radius: 6px;
    padding: 0.5rem 0.6rem;
    text-align: center;
    min-width: 45px;
}

.countdown-value {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold2);
    display: block;
    line-height: 1;
}

.countdown-separator {
    color: var(--gold);
    font-weight: 700;
    align-self: center;
    font-size: 1rem;
}

.countdown-label {
    font-size: 0.55rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-started {
    color: #4ade80;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.card-link {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition);
}

.card-link:hover {
    color: var(--gold2);
    gap: 0.5rem;
}

/* ═══════════════════════════════════════════
   AFRICA MAP SECTION
   ═══════════════════════════════════════════ */

.map-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
}

.map-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.africa-svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(201,168,76,0.1));
}

.africa-svg .africa-land {
    fill: var(--bg4);
    stroke: rgba(201,168,76,0.3);
    stroke-width: 1;
    transition: var(--transition);
}

.map-dot {
    fill: var(--gold);
    filter: drop-shadow(0 0 6px rgba(201,168,76,0.6));
    animation: pulseDot 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; r: 4; }
    50% { opacity: 0.6; r: 6; }
}

.map-dot:hover {
    fill: var(--gold2);
}

.office-list {
    padding-left: 1rem;
}

.office-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.office-item:last-child {
    border-bottom: none;
}

.office-flag {
    font-size: 1.5rem;
}

.office-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

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

/* ═══════════════════════════════════════════
   DIRECTORY SECTION
   ═══════════════════════════════════════════ */

.directory-section {
    padding: 5rem 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.directory-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.directory-content p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.directory-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.directory-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text);
    font-size: 0.9rem;
}

.directory-features svg {
    color: var(--gold);
    flex-shrink: 0;
}

.directory-img {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.directory-img img {
    width: 100%;
    height: auto;
}

/* ═══════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════ */

.gallery-section {
    padding: 5rem 0;
    background: var(--bg);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.gallery-tab:hover,
.gallery-tab.active {
    border-color: var(--gold);
    color: var(--gold2);
    background: rgba(201,168,76,0.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-item .item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 8, 26, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.gallery-item .zoom-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(201,168,76,0.2);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold2);
    transform: scale(0.8);
    transition: transform 0.3s ease, background 0.3s ease;
}

.gallery-item:hover .zoom-icon {
    transform: scale(1);
    background: rgba(201,168,76,0.3);
}

/* ═══════════════════════════════════════════
   PARTNERS MARQUEE
   ═══════════════════════════════════════════ */

.partners-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg3) 0%, var(--bg2) 100%);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg3), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg3), transparent);
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

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

.marquee-item {
    background: var(--bg4);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    white-space: nowrap;
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 4rem 0 0;
}

.footer-content {
    padding-bottom: 3rem;
}

.footer-logo-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.footer-logo-tag {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 300px;
}

.footer-group {
    font-size: 0.8rem;
    color: var(--gold2);
    margin-top: 1rem;
    font-weight: 500;
}

.footer-title {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    font-weight: 600;
}

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

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold2);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-contact a {
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: var(--transition);
}

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

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

.copyright {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════ */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(201,168,76,0.5);
}

/* ═══════════════════════════════════════════
   FLASH MESSAGES
   ═══════════════════════════════════════════ */

.flash-message {
    position: fixed;
    top: 80px;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

.flash-success {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.flash-error {
    background: rgba(248, 113, 113, 0.15);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ═══════════════════════════════════════════
   PAGE HEADER
   ═══════════════════════════════════════════ */

.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(201,168,76,0.03);
    border-radius: 50%;
    filter: blur(60px);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.page-header p {
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */

.contact-section {
    padding: 4rem 0;
    background: var(--bg2);
}

.contact-info-card {
    background: var(--bg3);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border);
    height: 100%;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(201,168,76,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: none;
    margin: 0;
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--gold2);
}

.contact-form-card {
    background: var(--bg3);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    background: var(--bg2);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-control:focus {
    background: var(--bg2);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
    color: var(--text);
    outline: none;
}

.form-control::placeholder {
    color: rgba(122,138,168,0.5);
}

select.form-control {
    appearance: auto;
    background-image: none;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════ */

.about-section {
    padding: 4rem 0;
    background: var(--bg2);
}

.about-text {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1rem;
}

.company-card {
    background: var(--bg3);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.company-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-3px);
}

.company-card .company-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(201,168,76,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--gold);
    font-size: 1.5rem;
}

.company-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.company-card p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

.company-divider {
    text-align: center;
    padding: 1.5rem 0;
}

.company-divider .divider-text {
    display: inline-block;
    background: var(--gold);
    color: var(--bg);
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Office Cards */
.office-card {
    background: var(--bg3);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.office-card:hover {
    border-color: rgba(201,168,76,0.3);
}

.office-card .office-icon {
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.office-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.office-card p {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.office-card a {
    font-size: 0.8rem;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.office-card a:hover {
    color: var(--gold2);
}

/* ═══════════════════════════════════════════
   GALLERY ITEMS + LIGHTBOX
   ═══════════════════════════════════════════ */

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-item .item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 8, 26, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.gallery-item .zoom-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(201,168,76,0.2);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold2);
    transform: scale(0.8);
    transition: transform 0.3s ease, background 0.3s ease;
}

.gallery-item:hover .zoom-icon {
    transform: scale(1);
    background: rgba(201,168,76,0.3);
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 26, 0.96);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 2rem;
    user-select: none;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img-wrap {
    position: relative;
    max-width: 85vw;
    max-height: 80vh;
    transition: transform 0.3s ease;
    transform: scale(0.9);
}

.gallery-lightbox.active .lightbox-img-wrap {
    transform: scale(1);
}

.lightbox-img-wrap.sliding-out-left {
    animation: slideOutLeft 0.2s ease forwards;
}

.lightbox-img-wrap.sliding-out-right {
    animation: slideOutRight 0.2s ease forwards;
}

.lightbox-img-wrap.sliding-in-left {
    animation: slideInLeft 0.2s ease forwards;
}

.lightbox-img-wrap.sliding-in-right {
    animation: slideInRight 0.2s ease forwards;
}

@keyframes slideOutLeft {
    from { transform: translateX(0) scale(1); opacity: 1; }
    to { transform: translateX(-80px) scale(0.95); opacity: 0; }
}

@keyframes slideOutRight {
    from { transform: translateX(0) scale(1); opacity: 1; }
    to { transform: translateX(80px) scale(0.95); opacity: 0; }
}

@keyframes slideInLeft {
    from { transform: translateX(80px) scale(0.95); opacity: 0; }
    to { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(-80px) scale(0.95); opacity: 0; }
    to { transform: translateX(0) scale(1); opacity: 1; }
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    display: block;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201,168,76,0.15);
    border: 1px solid var(--gold);
    color: var(--gold2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

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

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

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.25);
    color: var(--gold);
}

.lightbox-info {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.lightbox-counter {
    color: var(--gold2);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.lightbox-caption {
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .lightbox-nav { width: 40px; height: 40px; }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
    .gallery-lightbox { padding: 1rem; }
}

/* ═══════════════════════════════════════════
   PARTNERS PAGE
   ═══════════════════════════════════════════ */

.partners-page {
    padding: 4rem 0;
    background: var(--bg2);
}

.partner-card {
    background: var(--bg3);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.partner-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-3px);
}

.partner-card img {
    max-height: 60px;
    width: auto;
    margin-bottom: 0.75rem;
    opacity: 0.8;
    transition: var(--transition);
}

.partner-card:hover img {
    opacity: 1;
}

.partner-card h4 {
    font-size: 0.9rem;
    color: var(--text);
    margin: 0;
}

/* ═══════════════════════════════════════════
   DIRECTORY PAGE
   ═══════════════════════════════════════════ */

.directory-page {
    padding: 4rem 0;
    background: var(--bg2);
}

.directory-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg3);
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.directory-feature:hover {
    border-color: rgba(201,168,76,0.3);
}

.directory-feature .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(201,168,76,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.directory-feature h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.directory-feature p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--bg2);
        padding: 1rem;
        border-radius: 12px;
        margin-top: 1rem;
        border: 1px solid var(--border);
    }
    
    .nav-phone {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--border);
    }
    
    .hero-section {
        padding-top: 5rem;
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .footer-content > div {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .btn-primary-gold,
    .btn-outline-gold {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .countdown-item {
        min-width: 38px;
        padding: 0.4rem 0.5rem;
    }
    
    .countdown-value {
        font-size: 0.85rem;
    }
    
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 1rem;
        right: 1rem;
    }
}


/* ═══════════════════════════════════════════
   FORM VALIDATION + AJAX STYLES
   ═══════════════════════════════════════════ */

.form-control.is-invalid {
    border-color: #f87171 !important;
}

.field-error {
    color: #f87171;
    font-size: 0.75rem;
    margin-top: 0.3rem;
    min-height: 1rem;
}

.form-result {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-result.success {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.form-result.error {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.btn-spinner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* ═══════════════════════════════════════════
   EXPORT AFRICA DIRECTORY — PREMIUM SECTION
   ═══════════════════════════════════════════ */

.directory-section-premium {
    padding: 6rem 0;
    background: #070D1F;
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.directory-header {
    text-align: center;
    margin-bottom: 4rem;
}

.directory-pill {
    display: inline-block;
    background: rgba(201,168,76,0.12);
    border: 1px solid var(--border);
    color: var(--gold2);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.directory-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.directory-subtext {
    color: #C0CDE2;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.75;
}

/* Feature Rows */
.directory-features-wrap {
    padding-right: 1rem;
}

.directory-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: calc(var(--stagger) * 0.15s);
}

.directory-feature-row.visible {
    opacity: 1;
    transform: translateX(0);
}

.directory-feature-row:last-child {
    border-bottom: none;
}

.feature-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.35rem;
}

.feature-text p {
    color: #C0CDE2;
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

/* Quote Card */
.directory-quote-card {
    background: rgba(10, 18, 40, 0.6);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.directory-quote-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: -1rem;
}

.quote-text {
    font-style: italic;
    color: #E8EDF8;
    font-size: 1.02rem;
    line-height: 1.8;
    margin: 0 0 2rem;
    border: none;
    padding: 0;
}

.quote-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201,168,76,0.12);
}

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

.q-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold2);
    line-height: 1;
}

.q-label {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.3rem;
    letter-spacing: 0.5px;
}

/* Directory Buttons */
.btn-directory-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg);
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-directory-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.3);
    color: var(--bg);
}

.btn-directory-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--gold2);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    border: 1px solid var(--gold);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
    margin-top: auto;
}

.btn-directory-outline:hover {
    background: rgba(201,168,76,0.1);
    color: var(--gold);
}

/* CTA Bar */
.directory-cta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 18, 40, 0.5);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 12px;
    padding: 1.75rem 2.5rem;
    margin-top: 4rem;
}

.cta-left h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.cta-left p {
     color: #B8C8DE;
    font-size: 0.88rem;
    margin: 0;
}

/* Scroll Reveal Animation Classes */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 991px) {
    .directory-columns {
        gap: 2rem !important;
    }
    .directory-features-wrap {
        padding-right: 0;
    }
    .directory-quote-card {
        margin-top: 1rem;
    }
    .directory-cta-bar {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    .quote-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .directory-section-premium {
        padding: 3rem 0;
    }
    .directory-headline {
        font-size: 1.5rem;
    }
    .directory-feature-row {
        gap: 0.875rem;
        padding: 1.25rem 0;
    }
    .feature-text h4 {
        font-size: 0.95rem;
    }
    .feature-text p {
        font-size: 0.85rem;
    }
    .directory-quote-card {
        padding: 1.5rem;
    }
    .quote-mark {
        font-size: 3.5rem;
    }
    .q-number {
        font-size: 1.1rem;
    }
}
