/*
Theme Name: Zimbabwe Property Show 2026
Theme URI: https://www.zimbabweandiaspora.org
Author: ZIDO
Author URI: https://www.zimbabweandiaspora.org
Description: A premium WordPress theme for the Zimbabwe Property Show 2026 – connecting diaspora investors with trusted property opportunities in Zimbabwe.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zim-property-show
Tags: one-page, custom-menu, featured-images, theme-options
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    /* Logo colours */
    --zim-red: #E83338;
    --zim-yellow: #F5B731;
    --zim-green: #3FAA4E;
    --zim-green-dark: #2D8A3E;
    --zim-green-light: #4FC460;
    --zim-blue: #2E5FAA;
    --zim-blue-dark: #1E4580;
    --zim-blue-light: #3A72C4;

    /* Accent mapped from gold → yellow */
    --zim-gold: #F5B731;
    --zim-gold-light: #F9CC5E;
    --zim-gold-dark: #D99E1B;

    /* Neutrals */
    --zim-black: #2D2D2D;
    --zim-dark: #1A1A1A;
    --zim-white: #FFFFFF;
    --zim-off-white: #F7F8FA;
    --zim-gray: #6B7280;
    --zim-gray-light: #F3F4F6;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 30px rgba(245, 183, 49, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--zim-black);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--zim-white);
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.section-padding {
    padding: 100px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--zim-blue);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--zim-blue);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--zim-black);
}

.section-title--light {
    color: var(--zim-white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--zim-gray);
    max-width: 600px;
    line-height: 1.8;
}

.text-gold {
    background: linear-gradient(135deg, var(--zim-blue), var(--zim-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--zim-red), #C42B30);
    color: var(--zim-white);
    box-shadow: 0 4px 20px rgba(232, 51, 56, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(232, 51, 56, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--zim-white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    border-color: var(--zim-blue-light);
    color: var(--zim-blue-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--zim-blue);
    border: 2px solid var(--zim-blue);
}

.btn-outline:hover {
    background: var(--zim-blue);
    color: var(--zim-white);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--zim-black);
    color: var(--zim-white);
}

.btn-dark:hover {
    background: var(--zim-blue-dark);
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo img,
.site-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.site-header.scrolled .site-logo img,
.site-header.scrolled .site-logo-img {
    height: 42px;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 4px;
}

.site-logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--zim-white);
    line-height: 1.2;
}

.site-logo-text span {
    display: block;
    font-size: 0.65rem;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--zim-gold);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--zim-blue-light);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--zim-blue-light);
}

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

.nav-cta {
    display: flex;
    gap: 12px;
}

.nav-cta .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* Mobile menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--zim-white);
    transition: var(--transition);
    border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--zim-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(46, 95, 170, 0.85) 0%,
        rgba(26, 26, 26, 0.92) 50%,
        rgba(45, 45, 45, 0.95) 100%
    );
}

/* Animated geometric patterns */
.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.hero-pattern .shape {
    position: absolute;
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-pattern .shape:nth-child(1) {
    width: 400px; height: 400px;
    top: -100px; right: -100px;
    animation-delay: 0s;
}

.hero-pattern .shape:nth-child(2) {
    width: 300px; height: 300px;
    bottom: -50px; left: -50px;
    animation-delay: -5s;
}

.hero-pattern .shape:nth-child(3) {
    width: 200px; height: 200px;
    top: 40%; right: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(5deg); }
    50% { transform: translate(-10px, 20px) rotate(-3deg); }
    75% { transform: translate(15px, 10px) rotate(3deg); }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 140px 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-center {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 28px;
}

.hero-logo img {
    max-width: 320px;
    height: auto;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(46, 95, 170, 0.15);
    border: 1px solid rgba(46, 95, 170, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--zim-blue-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--zim-blue-light);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700;
    color: var(--zim-white);
    line-height: 1.1;
    margin-bottom: 8px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-title {
        white-space: normal;
    }
}

.hero-title-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--zim-red), var(--zim-yellow), var(--zim-green), var(--zim-blue));
    border-radius: 2px;
    margin: 16px auto 24px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--zim-gold), var(--zim-gold-light), var(--zim-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-event-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.hero-event-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.hero-event-detail svg {
    color: var(--zim-blue-light);
    flex-shrink: 0;
}

.hero-event-sep {
    color: var(--zim-blue-light);
    font-size: 1.2rem;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(4px);
}

.hero-pill::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--zim-blue-light);
}

/* Hero Bottom Bar */
.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
}

.hero-bottom-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-bottom-item svg {
    color: var(--zim-blue-light);
    flex-shrink: 0;
}

.hero-bottom-item strong {
    display: block;
    font-weight: 600;
    color: var(--zim-white);
}

.hero-bottom-item small {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.hero-bottom-bar .countdown {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 0;
}

.hero-bottom-bar .countdown-item {
    text-align: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 56px;
}

.hero-bottom-bar .countdown-item .number {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.hero-bottom-bar .countdown-item .label {
    font-size: 0.6rem;
}

.countdown-sep {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
    padding-bottom: 12px;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 36px;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
}

.hero-meta-item svg {
    width: 20px;
    height: 20px;
    color: var(--zim-gold);
    flex-shrink: 0;
}

.hero-meta-item .meta-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-meta-item .meta-text small {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding: 6px 20px 6px 6px;
    background: rgba(0, 135, 90, 0.2);
    border: 1px solid rgba(0, 135, 90, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: #4ADE80;
    font-weight: 600;
}

.hero-free-badge span {
    background: var(--zim-blue);
    color: var(--zim-white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Hero Slider */
.hero-slides {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 2;
}

.hero--slider .hero-slide {
    position: absolute;
}

.hero--slider .hero-slide.active {
    position: relative;
}

/* Slide content animation */
.hero--slider .hero-slide .hero-center {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.hero--slider .hero-slide.active .hero-center {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--zim-white);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.hero-slider-arrow:hover {
    background: rgba(46, 95, 170, 0.25);
    border-color: var(--zim-blue-light);
    color: var(--zim-blue-light);
}

.hero-slider-prev {
    left: 24px;
}

.hero-slider-next {
    right: 24px;
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hero-dot:hover {
    border-color: var(--zim-blue-light);
}

.hero-dot.active {
    background: var(--zim-blue-light);
    border-color: var(--zim-blue-light);
    transform: scale(1.2);
}

/* Hero right - Event card */
.hero-event-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.hero-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--zim-red), var(--zim-yellow), var(--zim-green), var(--zim-blue));
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--zim-gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.countdown-item {
    text-align: center;
    padding: 16px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.countdown-item .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--zim-white);
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-item .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.event-card-details {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-bottom: 28px;
}

.event-card-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
}

.event-card-detail svg {
    width: 20px;
    height: 20px;
    color: var(--zim-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.event-card-detail p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

.event-card-detail p small {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 400;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--zim-off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-video {
    position: relative;
}

.about-video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16 / 9;
}

.about-video-wrapper iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.about-stat-card {
    text-align: center;
    padding: 32px 16px;
    background: var(--zim-blue-dark);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.about-stat-card .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--zim-yellow);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-card .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
}

.about-content p {
    color: var(--zim-gray);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--zim-black);
    padding: 10px 16px;
    background: var(--zim-gray-light);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}

.about-list li svg {
    width: 18px;
    height: 18px;
    color: var(--zim-green);
    flex-shrink: 0;
}

/* ============================================
   GET TICKETS SECTION
   ============================================ */
.get-tickets {
    background: var(--zim-white);
}

.tickets-embed {
    max-width: 700px;
    margin: 50px auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--zim-white);
}

.tickets-embed .tt-widget {
    min-height: 400px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    background: var(--zim-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: var(--zim-dark);
}

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

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

.gallery-item-count {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--zim-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.gallery-item-count svg {
    flex-shrink: 0;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    background: linear-gradient(transparent 30%, rgba(46, 95, 170, 0.85) 100%);
}

.gallery-item-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--zim-blue);
    color: var(--zim-white);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(-8px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-tag {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-info {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.gallery-item-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--zim-white);
    margin-bottom: 4px;
}

.gallery-item-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.gallery-item-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--zim-white);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-item-zoom {
    transform: translate(-50%, -50%) scale(1);
}

/* All Pictures Modal */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

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

.gallery-modal-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

.gallery-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.gallery-modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--zim-white);
}

.gallery-modal-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--zim-white);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--zim-gold);
}

.gallery-modal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-modal-thumb {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.gallery-modal-thumb:hover {
    border-color: var(--zim-blue);
    transform: scale(1.03);
}

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

.gallery-modal-thumb:hover img {
    transform: scale(1.08);
}

.gallery-modal-thumb-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--zim-blue);
    color: var(--zim-white);
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 50px;
}

.gallery-modal-thumb-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 10px 8px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--zim-white);
}

@media (max-width: 768px) {
    .gallery-modal-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-modal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-modal-inner {
        padding: 24px 16px 40px;
    }
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.gallery-lightbox-content {
    max-width: 85vw;
    max-height: 85vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

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

.gallery-lightbox-caption {
    text-align: center;
    margin-top: 20px;
}

.gallery-lb-tag {
    display: inline-block;
    background: var(--zim-blue);
    color: var(--zim-white);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.gallery-lightbox-caption h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--zim-white);
    margin-bottom: 6px;
}

.gallery-lightbox-caption p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zim-white);
    cursor: pointer;
    transition: var(--transition);
}

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

.gallery-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--zim-white);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-lightbox-arrow:hover {
    background: rgba(46, 95, 170, 0.25);
    border-color: var(--zim-blue-light);
    color: var(--zim-blue-light);
}

.gallery-lightbox-prev { left: 24px; }
.gallery-lightbox-next { right: 24px; }

.gallery-lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

/* ============================================
   PROJECTS IN PROGRESS SECTION
   ============================================ */
.projects-progress {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.projects-progress-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.projects-progress-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.projects-progress-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(46, 95, 170, 0.92) 0%,
        rgba(26, 26, 26, 0.95) 50%,
        rgba(45, 45, 45, 0.92) 100%
    );
}

.projects-progress-content {
    position: relative;
    z-index: 2;
}

.projects-progress .section-label {
    color: var(--zim-gold);
}

.projects-progress .section-label::before {
    background: var(--zim-gold);
}

.projects-progress .text-gold {
    background: linear-gradient(135deg, var(--zim-gold), var(--zim-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projects-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.project-stat {
    text-align: center;
    padding: 28px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
}

.project-stat .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--zim-blue-light);
    line-height: 1;
    margin-bottom: 8px;
}

.project-stat .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
}

.projects-images-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.projects-strip-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 220px;
    position: relative;
}

.projects-strip-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(46, 95, 170, 0.2);
    border-radius: var(--radius-md);
    transition: var(--transition);
    pointer-events: none;
}

.projects-strip-item:hover::after {
    border-color: var(--zim-blue);
}

.projects-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.projects-strip-item:hover img {
    transform: scale(1.06);
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience {
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.93), rgba(15, 15, 26, 0.88)),
                url('assets/images/experience-bg.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 95, 170, 0.1), transparent);
    pointer-events: none;
}

.experience .section-label {
    color: var(--zim-gold);
}

.experience .section-label::before {
    background: var(--zim-gold);
}

.experience .text-gold {
    background: linear-gradient(135deg, var(--zim-gold), var(--zim-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-card-icon svg,
.experience-card-icon i {
    color: var(--zim-gold);
}

.experience .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.experience-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--zim-gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.experience-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(58, 114, 196, 0.4);
    transform: translateY(-4px);
}

.experience-card:hover::before {
    opacity: 1;
}

.experience-card-image {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
}

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

.experience-card:hover .experience-card-image img {
    transform: scale(1.08);
}

.experience-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 95, 170, 0.2), rgba(46, 95, 170, 0.05));
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.experience-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--zim-blue);
}

.experience-card-icon i {
    font-size: 1.5rem;
    color: var(--zim-blue);
}

.experience-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--zim-white);
    margin-bottom: 10px;
}

.experience-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ============================================
   SPEAKERS SECTION
   ============================================ */
.speakers {
    background: var(--zim-off-white);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.speaker-card {
    text-align: center;
    transition: var(--transition);
}

.speaker-card:hover {
    transform: translateY(-6px);
}

.speaker-photo {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--zim-gray-light);
    transition: var(--transition);
}

.speaker-card:hover .speaker-photo {
    border-color: var(--zim-blue);
    box-shadow: 0 0 0 4px rgba(46, 95, 170, 0.2);
}

.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--zim-gray-light);
    color: var(--zim-gray);
}

.speaker-linkedin {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0A66C2;
    color: var(--zim-white);
    border-radius: 50%;
    border: 2px solid var(--zim-white);
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.8);
}

.speaker-card:hover .speaker-linkedin {
    opacity: 1;
    transform: scale(1);
}

.speaker-linkedin:hover {
    background: #004182;
}

.speaker-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--zim-black);
    margin-bottom: 4px;
}

.speaker-role {
    font-size: 0.85rem;
    color: var(--zim-blue);
    font-weight: 600;
    margin-bottom: 6px;
}

.speaker-topic {
    font-size: 0.8rem;
    color: var(--zim-gray);
    line-height: 1.5;
}

/* ============================================
   AUDIENCE SECTION (WHO SHOULD ATTEND)
   ============================================ */
.audience {
    background: var(--zim-off-white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.audience-card {
    background: var(--zim-white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--zim-blue);
}

.audience-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--zim-blue), var(--zim-blue-light));
    border-radius: 50%;
    margin: 0 auto 18px;
    transition: var(--transition);
}

.audience-card:hover .audience-card-icon {
    background: linear-gradient(135deg, var(--zim-red), #C42B30);
}

.audience-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--zim-white);
}

.audience-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--zim-black);
    margin-bottom: 6px;
}

.audience-card p {
    font-size: 0.8rem;
    color: var(--zim-gray);
}

/* ============================================
   EXHIBITORS SECTION
   ============================================ */
.exhibitors {
    background: var(--zim-off-white);
    position: relative;
}

.exhibitors-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.exhibitors-benefits {
    display: grid;
    gap: 16px;
    margin: 32px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--zim-gray-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.benefit-item:hover {
    background: var(--zim-white);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--zim-blue), var(--zim-blue-dark));
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
    color: var(--zim-white);
}

.benefit-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--zim-black);
}

.benefit-item p {
    font-size: 0.85rem;
    color: var(--zim-gray);
    margin-top: 2px;
}

.exhibitor-cta-card {
    background: linear-gradient(135deg, rgba(46, 95, 170, 0.92), rgba(26, 26, 26, 0.92)),
                url('assets/images/exhibitor-bg.jpg') center/cover no-repeat;
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    color: var(--zim-white);
    position: relative;
    overflow: hidden;
}

.exhibitor-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.15), transparent 70%);
}

.exhibitor-cta-card .text-gold {
    background: linear-gradient(135deg, var(--zim-gold), var(--zim-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exhibitor-cta-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 16px;
    position: relative;
}

.exhibitor-cta-card p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 28px;
    position: relative;
    line-height: 1.7;
}

/* ============================================
   SPONSORSHIP SECTION
   ============================================ */
.sponsorship {
    background: var(--zim-white);
    position: relative;
    overflow: hidden;
}

.sponsorship .section-subtitle {
    color: var(--zim-gray);
}

.sponsor-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.sponsor-card {
    background: var(--zim-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sponsor-card.featured {
    border-color: var(--zim-gold);
    background: rgba(212, 168, 67, 0.06);
}

.sponsor-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 16px;
    right: -28px;
    background: var(--zim-gold);
    color: var(--zim-black);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 36px;
    transform: rotate(45deg);
}

.sponsor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.sponsor-tier-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.sponsor-tier-icon.title { background: linear-gradient(135deg, #FFD700, #B8860B); }
.sponsor-tier-icon.platinum { background: linear-gradient(135deg, #E5E4E2, #A0A0A0); }
.sponsor-tier-icon.gold { background: linear-gradient(135deg, var(--zim-gold), var(--zim-gold-dark)); }
.sponsor-tier-icon.silver { background: linear-gradient(135deg, #C0C0C0, #808080); }

.sponsor-tier-icon svg {
    width: 28px;
    height: 28px;
    color: var(--zim-white);
}

.sponsor-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--zim-black);
    margin-bottom: 8px;
}

.sponsor-card .sponsor-desc {
    font-size: 0.85rem;
    color: var(--zim-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.sponsor-card .btn {
    width: 100%;
}

.sponsor-card .btn-secondary {
    color: var(--zim-black);
    border-color: rgba(0, 0, 0, 0.2);
}

.sponsor-card .btn-secondary:hover {
    border-color: var(--zim-blue-light);
    color: var(--zim-blue-light);
}

/* ============================================
   EVENT DETAILS SECTION
   ============================================ */
.event-details {
    background: var(--zim-white);
}

.event-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.event-info-card {
    background: var(--zim-white);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
}

.event-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.event-info-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--zim-blue), var(--zim-blue-light));
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.event-info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--zim-white);
}

.event-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--zim-black);
    margin-bottom: 6px;
}

.event-info-card p {
    font-size: 0.95rem;
    color: var(--zim-gray);
}

/* Venue image */
.event-venue-image {
    grid-column: 1 / -1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.event-venue-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* ============================================
   ORGANISERS SECTION
   ============================================ */
.organisers {
    background: var(--zim-off-white);
}

.organisers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.organiser-card {
    background: var(--zim-gray-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.organiser-card:hover {
    border-color: var(--zim-blue);
    box-shadow: var(--shadow-md);
}

.organiser-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.organiser-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--zim-black);
    margin-bottom: 12px;
}

.organiser-card p {
    color: var(--zim-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ============================================
   CTA / FINAL CALL SECTION
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, rgba(46, 95, 170, 0.9), rgba(26, 26, 26, 0.92)),
                url('assets/images/cta-bg.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.08), transparent 70%);
}

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

.final-cta .section-label {
    color: var(--zim-gold);
}

.final-cta .section-label::before {
    background: var(--zim-gold);
}

.final-cta .text-gold {
    background: linear-gradient(135deg, var(--zim-gold), var(--zim-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta .section-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
}

.final-cta-points {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 32px 0 40px;
    flex-wrap: wrap;
}

.final-cta-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.final-cta-point svg {
    width: 22px;
    height: 22px;
    color: var(--zim-blue-light);
}

.final-cta .btn-group {
    justify-content: center;
}

/* ============================================
   REGISTRATION FORM SECTION
   ============================================ */
.registration {
    background: var(--zim-off-white);
}

.registration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.registration-info p {
    color: var(--zim-gray);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.8;
}

.registration-perks {
    display: grid;
    gap: 14px;
}

.registration-perk {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--zim-black);
}

.registration-perk svg {
    color: var(--zim-green);
    flex-shrink: 0;
}

.registration-form-wrap {
    background: var(--zim-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

.registration-form-wrap .tt-widget {
    min-height: 350px;
}

@media (max-width: 1024px) {
    .registration-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .registration-form .form-row {
        grid-template-columns: 1fr;
    }

    .registration-form-wrap {
        padding: 28px 20px;
    }
}

/* ============================================
   PRICING CARDS (Exhibit Page)
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.pricing-card {
    border: 2px solid var(--zim-gray-light);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    background: var(--zim-white);
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card.popular {
    border-color: var(--zim-red);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--zim-red);
    color: var(--zim-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-tier {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zim-blue);
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 24px;
}

.pricing-price .amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--zim-blue);
    display: block;
    line-height: 1.1;
}

.pricing-price .sponsor-amount {
    font-size: 2.2rem;
}

.pricing-price .vat {
    display: block;
    font-size: 0.9rem;
    color: var(--zim-gray);
    margin-top: 6px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--zim-gray-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--zim-gray);
}

.pricing-features li svg {
    margin-top: 3px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .pricing-grid,
    .pricing-grid-4 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================
   PARTNER LOGOS SECTION
   ============================================ */
.partner-logos {
    background: var(--zim-off-white);
}

.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 50px;
    align-items: stretch;
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: var(--zim-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--zim-gray-light);
    transition: var(--transition);
    width: 100%;
    min-height: 100px;
}

.partner-logo-item:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.partner-logo-item img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.partner-logo-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--zim-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 16px 0 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--zim-blue);
    border-color: var(--zim-blue);
    color: var(--zim-white);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--zim-white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col ul li a:hover {
    color: var(--zim-blue-light);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--zim-blue-light);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
    color: var(--zim-blue-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: var(--zim-blue-light);
}

/* ============================================
   ANIMATIONS (Scroll Reveal)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s 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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-organiser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-organiser-content {
    font-family: var(--font-body);
    color: var(--zim-gray);
    line-height: 1.8;
}

.about-organiser-text {
    margin-top: 20px;
    line-height: 1.8;
    color: var(--zim-gray);
}

.about-organiser-text p {
    margin-bottom: 16px;
}

.about-organiser-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 450px;
}

.about-organiser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Vision / Mission / Values */
.about-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.about-vision-card {
    background: var(--zim-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.about-vision-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.about-vision-card.featured {
    background: linear-gradient(135deg, var(--zim-blue), var(--zim-blue-dark));
    color: var(--zim-white);
    border: none;
}

.about-vision-card.featured .about-vision-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--zim-white);
}

.about-vision-card.featured h3 {
    color: var(--zim-white);
}

.about-vision-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.about-vision-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 95, 170, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--zim-blue);
}

.about-vision-icon svg {
    width: 28px;
    height: 28px;
}

.about-vision-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--zim-black);
    margin-bottom: 14px;
}

.about-vision-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--zim-gray);
}

/* Team */
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.about-team-card {
    background: var(--zim-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    text-align: center;
}

.about-team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.about-team-photo {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: var(--zim-off-white);
}

.about-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-team-card:hover .about-team-photo img {
    transform: scale(1.05);
}

.about-team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--zim-off-white), #e8e8e8);
    color: var(--zim-gray);
}

.about-team-info {
    padding: 20px 16px;
}

.about-team-info h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--zim-black);
    margin-bottom: 4px;
}

.about-team-role {
    font-size: 0.85rem;
    color: var(--zim-gray);
    margin-bottom: 10px;
}

.about-team-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(46, 95, 170, 0.1);
    color: var(--zim-blue);
    transition: var(--transition);
}

.about-team-social:hover {
    background: var(--zim-blue);
    color: var(--zim-white);
}

@media (max-width: 1024px) {
    .about-organiser-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-organiser-image {
        height: 350px;
    }

    .about-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-team-photo {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .about-team-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-bottom-inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-grid,
    .exhibitors-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .projects-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-images-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-images-strip .projects-strip-item:last-child {
        display: none;
    }

    .sponsor-tiers {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-logos-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .partner-logo-item {
        min-height: 90px;
        padding: 16px 12px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-slider-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-slider-prev { left: 12px; }
    .hero-slider-next { right: 12px; }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 120px 0 100px;
    }

    .hero-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .hero-bottom-item {
        justify-content: center;
    }

    .hero-bottom-bar .countdown {
        justify-content: center;
    }

    .countdown {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .countdown-item .number {
        font-size: 1.6rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-lightbox-arrow {
        width: 40px;
        height: 40px;
    }

    .gallery-lightbox-prev { left: 12px; }
    .gallery-lightbox-next { right: 12px; }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .speaker-photo {
        width: 130px;
        height: 130px;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-progress {
        padding: 70px 0;
    }

    .projects-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .project-stat .number {
        font-size: 1.8rem;
    }

    .projects-images-strip {
        grid-template-columns: 1fr;
    }

    .projects-images-strip .projects-strip-item:last-child {
        display: block;
    }

    .projects-strip-item {
        height: 180px;
    }

    .sponsor-tiers {
        grid-template-columns: 1fr;
    }

    .event-details-grid {
        grid-template-columns: 1fr;
    }

    .organisers-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .final-cta-points {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .nav-cta {
        display: none;
    }

    .about-list {
        grid-template-columns: 1fr;
    }
}

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

    .hero-logo img {
        max-width: 220px;
    }

    .hero-pills {
        gap: 8px;
    }

    .hero-pill {
        padding: 8px 16px;
        font-size: 0.65rem;
    }

    .hero-bottom-bar .countdown-item {
        min-width: 48px;
        padding: 6px 8px;
    }

    .hero-bottom-bar .countdown-item .number {
        font-size: 1.2rem;
    }

    .hero-slider-arrow {
        width: 36px;
        height: 36px;
    }

    .hero-slider-arrow svg {
        width: 18px;
        height: 18px;
    }

    .hero-slider-dots {
        bottom: 20px;
    }

    .gallery-grid {
        gap: 12px;
    }

    .gallery-lightbox-arrow {
        width: 36px;
        height: 36px;
    }

    .gallery-lightbox-arrow svg {
        width: 20px;
        height: 20px;
    }

    .projects-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .project-stat {
        padding: 20px 12px;
    }

    .project-stat .number {
        font-size: 1.5rem;
    }

    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .speaker-photo {
        width: 110px;
        height: 110px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .partner-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .partner-logo-item {
        padding: 12px;
        min-height: 80px;
    }

    .partner-logo-item img {
        max-height: 45px;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-group .btn {
        width: 100%;
    }
}

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 26, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    backdrop-filter: blur(20px);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-size: 1.3rem;
    color: var(--zim-white);
    font-weight: 600;
}

.mobile-nav a:hover {
    color: var(--zim-blue-light);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--zim-white);
    font-size: 2rem;
    cursor: pointer;
}
