/* DESIGN SYSTEM & VARIABLES */
:root {
    --bg-light: #f8f9fa;
    --text-dark: #1a1a2e;
    --neon-cyan: #6CC24A;
    --emerald-green: #50C878;
    --electric-blue: #448824;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html, body {
    width: 100%;
    max-width: 100%;
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
}

/* HEADER NAVIGATION */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 25px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    color: #fff;
    transition: all 0.4s ease;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
}

.logo img {
    transition: filter 0.4s ease;
}

/* Make the logo purely white when header is transparent */
.header:not(.scrolled) .logo img {
    filter: brightness(0) invert(1);
}

.logo a span {
    color: var(--neon-cyan);
}

.header.scrolled .logo a {
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--neon-cyan);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--neon-cyan);
}

.header.scrolled .nav-links a {
    color: var(--text-dark);
}

.header.scrolled .nav-links a:hover {
    color: var(--electric-blue);
}

.header.scrolled .nav-links a::after {
    background-color: var(--electric-blue);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header.scrolled .hamburger span {
    background-color: var(--text-dark);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 30, 0.85) 0%, rgba(0, 0, 10, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    color: #fff;
}

.hero-subtitle {
    font-size: clamp(14px, 1.6vw, 18px);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    font-weight: 500;
}
.hero-sub-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(14px, 1.8vw, 20px);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--neon-cyan);
    margin-bottom: 32px;
    font-weight: 800;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4.2vw, 48px);
    line-height: 1.18;
    font-weight: 800;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--neon-cyan) !important;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-details {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 35px;
    color: #000000;
    letter-spacing: 0.5px;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.hero-details p,
.hero-details .location-link {
    color: #000000;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 34px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--electric-blue);
    color: #fff;
    border: 2px solid var(--electric-blue);
    box-shadow: 0 10px 25px rgba(68, 136, 36, 0.4);
}

.btn-primary:hover {
    background-color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    color: #000;
    box-shadow: 0 10px 35px rgba(108, 194, 74, 0.6);
    transform: translateY(-5px);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--text-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* --- HERO CTA BUTTONS LAYOUT --- */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-padding {
    padding: 60px 0;
}
.text-center {
    text-align: center;
}
.text-white {
    color: #fff;
}
.bg-light {
    background-color: #fff;
}

/* --- EVENT INTRODUCTION --- */
.intro {
    background-color: var(--bg-light);
}
.intro-container {
    max-width: 900px;
    text-align: center;
}
.section-subtitle {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--electric-blue);
    margin-bottom: 30px;
    font-weight: 700;
}
.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a5e;
    margin-bottom: 20px;
    font-weight: 400;
}

/* --- SECTORS ICONS --- */
.sectors {
    background-color: #ffffff;
}
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.sector-card {
    background: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 194, 74, 0.05) 0%, rgba(80, 200, 120, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}
.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 194, 74, 0.15);
    border-color: var(--neon-cyan);
}
.sector-card:hover::before {
    opacity: 1;
}
.sector-icon {
    font-size: 45px;
    color: var(--electric-blue);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}
.sector-card:hover .sector-icon {
    color: var(--emerald-green);
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(80, 200, 120, 0.5));
}
.sector-card h4 {
    font-size: 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

/* --- EVENT FIGURES --- */
.figures {
    background-color: #121220;
    position: relative;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 800;
    margin-bottom: 60px;
    text-transform: uppercase;
}
.figures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}
.figure-item {
    text-align: center;
}
.figure-number {
    font-family: var(--font-heading);
    font-size: clamp(35px, 4vw, 48px);
    font-weight: 800;
    color: var(--neon-cyan);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(108, 194, 74, 0.3);
}
.figure-label {
    font-size: clamp(11px, 1.2vw, 13px);
    font-weight: 600;
    color: #a0a0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- UTILITY CLASSES EXTENSION --- */
.relative { position: relative; }
.z-10 { z-index: 10; }
.mb-50 { margin-bottom: 30px; }
.mt-50 { margin-top: 30px; }
.text-neon { color: var(--neon-cyan); }
.text-dark { color: var(--text-dark) !important; }
.btn-outline-cyan {
    background-color: transparent;
    color: var(--electric-blue);
    border: 2px solid var(--electric-blue);
    display: inline-block;
}
.btn-outline-cyan:hover {
    background-color: var(--neon-cyan);
    color: #000;
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(108, 194, 74, 0.4);
}

/* --- LOCATION LINKS --- */
.location-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.location-link:hover {
    color: var(--neon-cyan);
}

/* --- WHY AFRILOG SECTION --- */
.why-afrilog {
    position: relative;
    background-color: #0a0a1a;
    overflow: hidden;
}
.why-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/why-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.4;
    z-index: 0;
}
.why-desc {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 194, 74, 0.5);
    box-shadow: 0 15px 35px rgba(108, 194, 74, 0.15);
}
.card-title {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.card-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
}

/* --- ACCORDION UI --- */
.accordion {
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 993px) {
    .side-col {
        display: flex;
        flex-direction: column;
    }
    .side-col .accordion {
        margin-top: 45px !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 1;
    }
    .side-col .accordion-item {
        margin-bottom: 0;
    }
}
.accordion-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.accordion-header {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    transition: color 0.3s ease;
}
.accordion-header:hover {
    color: var(--electric-blue);
}
.icon-arrow {
    color: var(--emerald-green);
    transition: transform 0.3s ease;
}
.accordion-header.active {
    color: var(--electric-blue);
    background: rgba(68, 136, 36, 0.03);
}
.accordion-header.active .icon-arrow {
    transform: rotate(180deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(68, 136, 36, 0.01);
}
.accordion-content p {
    padding: 0 30px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; }
    .accordion-header { font-size: 16px; padding: 20px; }
    .accordion-content p { padding: 0 20px 20px; }
}

/* --- WHO YOU WILL MEET --- */
.who-meet {
    overflow: hidden;
    background-color: var(--bg-light);
}
.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}
.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}
.marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: flex;
    gap: 25px;
}
.marquee-left .marquee-track {
    animation: scroll-left 45s linear infinite;
}
.marquee-right .marquee-track {
    animation: scroll-right 45s linear infinite;
}
.marquee:hover .marquee-track {
    animation-play-state: paused;
}
.marquee-pill {
    background: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: default;
    display: inline-block;
}
.marquee-pill:hover {
    background: var(--bg-light);
    color: var(--electric-blue);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(108, 194, 74, 0.4);
    transform: translateY(-2px);
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12.5px)); }
}
@keyframes scroll-right {
    0% { transform: translateX(calc(-50% - 12.5px)); }
    100% { transform: translateX(0); }
}

/* --- HOSTED BUYER PROGRAM --- */
.hosted-buyer {
    position: relative;
    background-color: #05050f;
}
.buyer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/buyer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}
.buyer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 5, 15, 0.95) 0%, rgba(10, 20, 40, 0.8) 100%);
    z-index: 1;
}
.buyer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.buyer-desc {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}
.buyer-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.btn-neon-solid {
    background-color: var(--neon-cyan);
    color: #000;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(108, 194, 74, 0.4);
}
.btn-neon-solid:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--text-dark);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}
.btn-neon-outline {
    border-color: var(--neon-cyan);
    color: #fff;
}
.btn-neon-outline:hover {
    background-color: rgba(108, 194, 74, 0.1);
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: inset 0 0 10px rgba(108, 194, 74, 0.2);
}

.details-title {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    display: inline-block;
}
.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.tech-tag {
    background: rgba(108, 194, 74, 0.05);
    border: 1px solid rgba(108, 194, 74, 0.3);
    color: var(--neon-cyan);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.tech-tag:hover {
    background: rgba(108, 194, 74, 0.2);
    box-shadow: 0 0 15px rgba(108, 194, 74, 0.5);
}

.benefits-list {
    list-style: none;
}
.benefits-list li {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.benefits-list li i {
    color: var(--neon-cyan);
    font-size: 14px;
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

/* --- HOSTED BUYER IMAGES --- */
.hosted-images {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 60px;
    width: 100%;
}
.hosted-img-box {
    flex: 1;
    max-width: 400px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(108, 194, 74, 0.3);
    transition: transform 0.4s ease, border-color 0.4s ease;
}
.hosted-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.hosted-img-box:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 40px rgba(108, 194, 74, 0.2);
}
.hosted-img-box:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hosted-images {
        flex-direction: column;
        align-items: center;
    }
}

/* --- FORUM SECTION --- */
.forum-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a5e;
    max-width: 800px;
    margin: 0 auto 15px;
}
/* --- FORUM GALLERY --- */
.forum-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.forum-img-wrapper {
    flex: 1 1 30%;
    max-width: calc(33.333% - 10px);
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background-color: #f0f0f0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.forum-img-wrapper::before {
    content: "Please upload image";
    position: absolute;
    color: #999;
    font-size: 14px;
    font-weight: 600;
    z-index: 0;
}
.forum-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}
.forum-img-wrapper:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .forum-img-wrapper {
        flex: 1 1 45%;
        max-width: calc(50% - 7.5px);
        height: 200px;
    }
}

.forum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.forum-card {
    background: #fff;
    border: 1px solid rgba(68, 136, 36, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}
.forum-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--neon-cyan);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}
.forum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(108, 194, 74, 0.15);
    border-color: rgba(108, 194, 74, 0.3);
}
.forum-card:hover::before {
    transform: scaleY(1);
}
.forum-icon {
    font-size: 24px;
    color: var(--electric-blue);
    transition: color 0.4s ease;
}
.forum-card:hover .forum-icon {
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 5px rgba(108, 194, 74, 0.5));
}
.forum-card h5 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

/* --- WEST AFRICA MARKET (DATA DASHBOARD) --- */
.market {
    background-color: #070712;
    background-image: linear-gradient(rgba(7, 7, 18, 0.85), rgba(7, 7, 18, 0.85)), url('assets/images/west_africa_trade_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    border-top: 1px solid rgba(108, 194, 74, 0.1);
    border-bottom: 1px solid rgba(108, 194, 74, 0.1);
}
.market::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(108, 194, 74, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 194, 74, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}
.market-intro p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 15px;
}
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.dashboard-panel {
    background: rgba(10, 15, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 194, 74, 0.2);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    box-shadow: inset 0 0 20px rgba(108, 194, 74, 0.05);
}
.dashboard-panel::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 20px;
    width: 60px;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}
.panel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}
.panel-header i {
    font-size: 24px;
    color: var(--neon-cyan);
}
.panel-header h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 1px;
}
.dashboard-list {
    list-style: none;
}
.dashboard-list li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.dashboard-list li::before {
    content: '\f054';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--emerald-green);
    font-size: 12px;
    margin-top: 4px;
}
.panel-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 15px;
}
.invest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.invest-tags span {
    background: rgba(80, 200, 120, 0.1);
    border: 1px solid rgba(80, 200, 120, 0.3);
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.3s ease;
}
.invest-tags span:hover {
    background: rgba(80, 200, 120, 0.2);
    border-color: var(--emerald-green);
    box-shadow: 0 0 10px rgba(80, 200, 120, 0.4);
}

/* --- WHY ABIDJAN? --- */
.abidjan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.abidjan-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a5e;
    margin-bottom: 20px;
}
.abidjan-list {
    list-style: none;
    margin-top: 20px;
}
.abidjan-list li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}
.abidjan-list li i {
    color: var(--electric-blue);
    font-size: 16px;
}
.abidjan-map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background: radial-gradient(circle at center, rgba(68, 136, 36, 0.05) 0%, transparent 70%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.real-map-iframe {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border: 2px solid rgba(68, 136, 36, 0.2);
    border-radius: 30px;
    z-index: 1;
    filter: grayscale(60%) contrast(1.1);
    box-shadow: 0 10px 30px rgba(68, 136, 36, 0.05);
}

/* --- CTA SECTION --- */
.cta {
    background: linear-gradient(135deg, #0a192f 0%, #448824 50%, #6CC24A 100%);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}
.cta-content {
    background: rgba(10, 25, 47, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 194, 74, 0.3);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.cta-desc {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 20px;
}
.cta-details {
    font-size: 22px;
    font-weight: 700;
    color: var(--neon-cyan);
    letter-spacing: 1px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* --- PARTNERS SECTION --- */
.partner-marquee .marquee-track {
    animation-duration: 50s;
}
.partner-logo {
    width: 250px;
    height: 120px;
    background: #f8f9fa;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
    cursor: pointer;
}
.partner-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: #555;
    transition: color 0.4s ease;
}
.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    background: #fff;
    border-color: var(--electric-blue);
    box-shadow: 0 10px 20px rgba(68, 136, 36, 0.1);
    transform: translateY(-5px);
}
.partner-logo:hover span {
    color: var(--electric-blue);
}

/* Media Slider Overrides */
.media-slide {
    width: 350px;
    height: 230px;
    padding: 0;
    border: none;
    overflow: hidden;
    background: transparent;
}
.media-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
}
.media-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.media-slide:hover img {
    transform: scale(1.05);
}

/* --- NEW PAGES: ABOUT, EXHIBIT, VISIT --- */
.about-grid, .visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a5e;
    margin-bottom: 20px;
}
.about-list {
    list-style: none;
}
.about-list li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}
.about-list li i {
    color: var(--emerald-green);
}
.mission-vision-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 4px solid var(--electric-blue);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}
.mission-vision-card:hover {
    transform: translateY(-5px);
}
.mv-icon {
    font-size: 30px;
    color: var(--electric-blue);
    margin-bottom: 15px;
}
.mv-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.mv-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.why-exhibit {
    background-color: #05050f;
    background-image: linear-gradient(rgba(5, 5, 15, 0.85), rgba(5, 5, 15, 0.85)), url('assets/images/why_exhibit_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    border-top: 1px solid rgba(108, 194, 74, 0.1);
}
.why-exhibit-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(68, 136, 36, 0.1) 0%, transparent 60%);
}
.columns-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}
.opp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.opp-card {
    padding: 30px;
}
.opp-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
}
.opp-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.admission-card {
    background: #fff;
    border: 1px solid rgba(68, 136, 36, 0.1);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
}
.admission-icon {
    font-size: 40px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(108, 194, 74, 0.3));
}
.admission-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
}
.admission-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

/* --- FOOTER --- */
.footer {
    background-color: #f8f9fa;
    padding: 80px 0 20px;
    color: #2d3436;
    border-top: 1px solid #e1e4e8;
    box-shadow: inset 0 10px 20px rgba(0,0,0,0.02);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-logo a {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 36px;
    color: #1e2022;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 25px;
}
.footer-logo a span {
    color: var(--electric-blue);
}
.footer-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #1e2022;
    margin-bottom: 15px;
}
.footer-info {
    font-size: 14px;
    line-height: 1.8;
}
.footer .location-link:hover {
    color: var(--electric-blue);
}
.footer-title {
    font-family: var(--font-heading);
    color: var(--electric-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.office-block {
    margin-bottom: 25px;
}
.office-block h5 {
    color: #1e2022;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}
.office-block p {
    font-size: 14px;
    line-height: 1.6;
    color: #2d3436;
}
.footer-contact-list {
    list-style: none;
}
.footer-contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-contact-list li i {
    color: var(--electric-blue);
    font-size: 16px;
}
.footer-contact-list li a {
    color: #2d3436;
    font-size: 15px;
    transition: color 0.3s ease;
}
.footer-contact-list li a:hover {
    color: var(--electric-blue);
}
.footer-contact-list .nav-links a.active {
    color: var(--neon-cyan);
}
.nav-links a.active::after {
    width: 100%;
}

/* --- DROPDOWN MENU --- */
.nav-dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}
.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 194, 74, 0.2);
    border-top: 3px solid var(--neon-cyan);
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dropdown-menu a::after {
    display: none;
}
.dropdown-menu a:last-child {
    border-bottom: none;
}
.dropdown-menu a:hover {
    color: var(--neon-cyan) !important;
    background: rgba(108, 194, 74, 0.05);
    padding-left: 25px;
}
.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    color: #1e2022;
    border: 1px solid #d1d5da;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: var(--electric-blue);
    border-color: var(--electric-blue);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}
.footer-bottom {
    border-top: 1px solid #e1e4e8;
    padding-top: 20px;
    font-size: 13px;
    color: #636e72;
}

@media (max-width: 768px) {
    .buyer-grid { grid-template-columns: 1fr; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .abidjan-grid { grid-template-columns: 1fr; }
    .abidjan-map-wrapper { height: 350px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .cta-content { padding: 30px 20px; }
    .cta-desc { font-size: 16px; }
    .cta-details { font-size: 18px; }
    .about-grid, .visit-grid { grid-template-columns: 1fr; }
    .columns-2 { grid-template-columns: 1fr; }
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 1200px) {
    .nav-links a {
        font-size: 12px;
    }
    .nav-links {
        gap: 1rem;
    }
    .hero-title {
        font-size: 44px;
    }
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 50px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 25px;
    }

    .nav-links.active {
        display: flex;
        right: 0;
    }
    
    .nav-dropdown {
        display: block;
        width: 100%;
    }
    .dropdown-menu {
        position: static;
        width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        transform: none;
        padding: 0;
        transition: height 0.3s ease, opacity 0.3s ease;
    }
    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        height: auto;
        padding: 5px 0 15px 0;
        margin-left: 15px;
        border-left: 2px solid var(--neon-cyan);
    }
    .nav-dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    .dropdown-menu a {
        padding: 10px 15px;
    }

    .nav-links a {
        font-size: 16px;
        color: #fff !important;
        width: 100%;
    }
    
    .nav-links a::after {
        background-color: var(--neon-cyan) !important;
    }

    .header.scrolled .hamburger span {
        background-color: var(--text-dark);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: #fff;
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: #fff;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }
    .hero-sub-subtitle {
        font-size: 16px;
    }
    .hero-description {
        font-size: 16px;
    }
    .hero-details {
        font-size: 14px;
        padding: 10px 15px;
    }
    .nav-container {
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 30px;
    }
    .hero-subtitle {
        font-size: 12px;
    }
    .hero-sub-subtitle {
        font-size: 14px;
    }
    .hero-description {
        font-size: 15px;
    }
    .hero-details p {
        font-size: 13px;
        line-height: 1.5;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .hero-cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .figures-grid { grid-template-columns: 1fr; }
    .sectors-grid { grid-template-columns: 1fr; }
}


/* --- TABS UI --- */
.tabs-header { margin-bottom: 40px; }
.tab-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.tab-btn { background: transparent; border: 2px solid var(--neon-cyan); color: var(--text-dark); padding: 10px 25px; border-radius: 5px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; }
.tab-btn:hover { background: rgba(108, 194, 74, 0.1); }
.tab-btn.active { background: var(--neon-cyan); color: #fff; }
.tab-content { display: none; animation: fadeIn 0.5s ease; }
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- COMPACT GRID --- */
.compact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
@media (max-width: 1024px) { .compact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .compact-grid { grid-template-columns: 1fr; } }
.compact-box { background: #fff; padding: 15px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); display: flex; align-items: flex-start; gap: 12px; border-left: 3px solid var(--neon-cyan); }
.compact-box i { font-size: 24px; color: var(--electric-blue); margin-top: 2px; }
.compact-box h4 { font-size: 14px; margin-bottom: 5px; color: var(--text-dark); }
.compact-box p { font-size: 12px; color: #555; margin: 0; line-height: 1.4; }

/* --- PREMIUM SPOTLIGHT GRID --- */
.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; /* slightly increased gap */
    margin-top: 30px;
}
.spotlight-card {
    position: relative;
    background-color: #e9ecef;
    border-radius: 8px;
    padding: 1px; /* border thickness */
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s ease; /* removed transform transition to avoid GSAP conflict */
    height: 100%; /* force equal height in grid rows */
    display: flex;
    flex-direction: column;
}
.spotlight-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(
        400px circle at var(--mouse-x, 0) var(--mouse-y, 0),
        rgba(108, 194, 74, 0.6),
        transparent 40%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.spotlight-grid:hover .spotlight-card::before {
    opacity: 1;
}
.spotlight-card-inner {
    position: relative;
    background: #ffffff;
    flex: 1; /* stretch to fill parent height */
    width: 100%;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px; /* slightly bigger */
    text-align: center;
    z-index: 2;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px; /* slightly bigger font */
    letter-spacing: 0.2px;
    transition: all 0.3s ease; /* handles the hover transform */
}
.spotlight-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.spotlight-card:hover .spotlight-card-inner {
    transform: translateY(-3px); /* Move inner card instead of outer card */
    color: var(--electric-blue);
    background: #ffffff;
}
@media (max-width: 1024px) {
    .spotlight-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .spotlight-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .spotlight-card-inner { padding: 10px; font-size: 12px; }
}
@media (max-width: 480px) {
    .spotlight-grid { grid-template-columns: 1fr; gap: 8px; }
    .spotlight-card::before { 
        opacity: 1; 
        background: radial-gradient(circle at center, rgba(108, 194, 74, 0.15), transparent 70%); 
    }
}

/* --- VENUE HIGHLIGHT --- */
.venue-highlight {
    background-color: var(--bg-light);
}
.venue-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (min-width: 992px) {
    .venue-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}
.venue-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.venue-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #047857; /* emerald-700 equivalent */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
}
.venue-eyebrow svg {
    width: 20px;
    height: 20px;
}
.venue-title {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--text-dark);
}
@media (min-width: 992px) {
    .venue-title {
        font-size: 42px;
    }
}
.venue-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}
@media (min-width: 992px) {
    .venue-desc {
        font-size: 18px;
    }
}
.venue-desc strong {
    color: var(--text-dark);
    font-weight: 700;
}
.venue-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.venue-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}
.venue-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 12px;
    box-shadow: inset 0 0 0 2px transparent, inset 0 0 20px rgba(0, 0, 0, 0);
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 2;
}
.venue-image-wrapper:hover .venue-image {
    transform: scale(1.04);
    filter: brightness(1.1) contrast(1.15) saturate(1.2);
}
.venue-image-wrapper:hover::after {
    box-shadow: inset 0 0 0 2px #00f3ff, inset 0 0 40px rgba(176, 38, 255, 0.6);
}

/* --- SIDE BY SIDE LAYOUT --- */
.side-by-side-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}
.side-col {
    min-width: 0; /* Prevents flex/grid blowouts */
}

@media (max-width: 992px) {
    .side-by-side-container {
        grid-template-columns: 1fr;
    }
}

/* --- STAND MODAL --- */
.stand-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.stand-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}
.stand-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    width: 95vw;
    max-width: 950px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}
.stand-modal-content iframe {
    flex: 1;
    width: 100% !important;
    height: 100% !important;
}
.stand-modal.show .stand-modal-content {
    transform: translateY(0);
}
.stand-modal-close {
    color: #aaa;
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}
.stand-modal-close:hover,
.stand-modal-close:focus {
    color: #333;
    text-decoration: none;
}
.modal-title {
    color: var(--midnight-blue);
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
}
.modal-subtitle {
    color: #555;
    margin-bottom: 25px;
    font-size: 14px;
}
.stand-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-row {
    display: flex;
    gap: 15px;
}
.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--midnight-blue);
    margin-bottom: 6px;
}
.form-group label em {
    color: #e74c3c;
    font-style: normal;
}
.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--emerald-green);
    box-shadow: 0 0 0 3px rgba(68, 136, 36, 0.1);
}
.form-submit-btn {
    margin-top: 15px;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    .stand-modal-content {
        padding: 25px 20px;
        width: 100%;
        height: 100dvh;
        border-radius: 0;
    }
}
