/* ========================================
   EVENT DETAILS PAGE STYLES
   ======================================== */

/* Speaker Cards Grid - Optimized for 24 Speakers */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.speaker-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 109, 119, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 109, 119, 0.2);
    border-color: var(--primary-teal);
}

.speaker-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.speaker-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.speaker-card:hover .speaker-img-wrapper img {
    transform: scale(1.1);
}

.speaker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 109, 119, 0.9) 0%, rgba(0, 188, 212, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.speaker-card:hover .speaker-overlay {
    opacity: 1;
}

.speaker-overlay span {
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.speaker-info {
    padding: 1.5rem;
    text-align: center;
}

.speaker-info h3 {
    color: var(--text-main);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.speaker-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Side Sheet (Modal) Styles */
.side-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.side-sheet-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-sheet-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-y: auto;
    padding: 2rem;
}

.side-sheet-overlay.active .side-sheet-content {
    transform: translateX(0);
}

.close-sheet {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-sheet:hover {
    background: var(--accent-crimson);
    color: white;
    transform: rotate(90deg);
}

.sheet-speaker-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.speaker-sheet-header {
    margin-bottom: 2rem;
}

.sheet-speaker-meta h2 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.sheet-speaker-meta .accent-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.speaker-sheet-bio {
    margin-bottom: 2rem;
}

.speaker-sheet-bio h3 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.speaker-sheet-bio p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.speaker-sheet-actions {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Event-specific theme overrides - Light / CSTV-aligned */
.event-theme-dark {
    background: linear-gradient(180deg, #f5fafd 0%, #eaf4f6 60%, #f0fafa 100%);
    color: var(--text-main);
}

.bg-darker {
    background: linear-gradient(135deg, rgba(0, 109, 119, 0.04) 0%, rgba(131, 197, 190, 0.08) 100%);
}

.event-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.event-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 109, 119, 0.85) 0%, rgba(131, 197, 190, 0.75) 100%),
        url('events/latest/images/7th_customer_service_conference_1.jpeg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}



.event-hero-container {
    position: relative;
    z-index: 2;
}

.event-date-badge {
    display: inline-block;
    background: var(--accent-crimson);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.event-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.event-meta-info {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.meta-value {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.event-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.lg-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Event Mini Nav */
.event-mini-nav {
    position: sticky;
    top: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.event-mini-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}

.event-mini-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.event-mini-nav a:hover {
    color: var(--primary-teal);
}

/* Schedule Tabs */
.schedule-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 2rem;
    background: rgba(0, 109, 119, 0.1);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-main);
}

.tab-btn.active {
    background: var(--primary-teal);
    color: white;
    border-color: var(--primary-teal);
}

.tab-btn:hover:not(.active) {
    border-color: var(--primary-teal);
}

.schedule-day {
    display: none;
}

.schedule-day.active {
    display: block;
}

.schedule-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 109, 119, 0.1);
}

.schedule-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-left-color: var(--primary-teal);
    box-shadow: 0 4px 12px rgba(0, 109, 119, 0.1);
}

.schedule-item.highlighted {
    background: rgba(0, 109, 119, 0.08);
    border-left-color: var(--accent-crimson);
    border-color: var(--accent-crimson);
}

.sch-time {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-teal);
}

.sch-desc h3 {
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.sch-desc p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Location Section & Widget */
.location-widget {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    padding: 3rem;
    border-radius: 30px;
    align-items: center;
}

.glass-dark {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 109, 119, 0.15);
    box-shadow: 0 15px 35px rgba(0, 109, 119, 0.1);
}

.loc-card {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.loc-card i {
    font-size: 2.5rem;
    color: var(--primary-teal);
    background: rgba(0, 109, 119, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.loc-card h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.5rem;
    color: var(--text-main);
}

.loc-card p {
    margin: 0;
    color: var(--text-muted);
}

.loc-details {
    margin-bottom: 2.5rem;
}

.venue-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.venue-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.venue-features i {
    color: var(--primary-teal);
    font-size: 1.2rem;
}

.location-actions {
    display: flex;
    gap: 1.5rem;
}

.map-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    font-weight: 700;
}

.btn-outline-teal {
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-teal:hover {
    background: var(--primary-teal);
    color: white;
}

/* Sponsors Section Enhanced */
.sponsors-immersive {
    background: #f8fafc;
    overflow: hidden;
}

.sponsor-wall {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 4rem 0;
}

.sponsor-swiper {
    width: 100%;
    padding: 10px 0;
}

.sponsor-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.sponsor-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.sponsor-swiper .swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sponsor-swiper img {
    max-width: 140px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.sponsor-swiper .swiper-slide:hover img {
    filter: grayscale(0%);
}

.sponsor-cta {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.sponsor-cta .cta-content {
    max-width: 800px;
    padding: 3rem;
    text-align: center;
    border-radius: 20px;
    border: 1px solid rgba(0, 109, 119, 0.2);
    background: rgba(255, 255, 255, 0.8);
}

.sponsor-cta h3 {
    color: var(--primary-teal);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.sponsor-cta p {
    color: #64748b;
    margin-bottom: 2rem;
}

.btn-glow {
    position: relative;
    padding: 1.2rem 3rem !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 109, 119, 0.3);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 109, 119, 0.5);
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-teal), #00c2cb, var(--primary-teal));
    z-index: -1;
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.btn-glow:hover::after {
    opacity: 0.6;
}

/* Registration Section Fix */
.bg-teal {
    background: var(--primary-teal) !important;
}

#register h2 {
    color: white !important;
}

#register p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.2rem;
}

.btn-white {
    background: white !important;
    color: var(--primary-teal) !important;
}

.btn-white:hover {
    background: #f0f0f0 !important;
}

/* Responsive */
@media (max-width: 992px) {
    .location-widget {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .map-placeholder {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .side-sheet-content {
        max-width: 100%;
    }

    .event-title {
        font-size: 2.5rem;
    }

    .event-meta-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .event-mini-nav ul {
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
}

/* ============================================================
   MAGAZINE ILLUSTRATION SECTION
   ============================================================ */
.magazine-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    overflow: hidden;
}

.magazine-illustration {
    position: relative;
    overflow: hidden;
}

.magazine-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.magazine-illustration:hover img {
    transform: scale(1.04);
}

.mag-edition-tag {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--accent-crimson);
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
}

.magazine-content {
    padding: 5rem 4rem;
    background: linear-gradient(135deg, #005f6a 0%, #007a82 60%, #009ba5 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.magazine-content::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.magazine-content h2 {
    font-size: 2.8rem;
    color: white;
    line-height: 1.2;
    margin: 0;
}

.magazine-content .lead-paragraph {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.stat-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 0.5rem 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.2rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #7fecea;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 0 20px rgba(127, 236, 234, 0.4);
}

.stat-plus {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffbaba;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin: 0.4rem 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mag-ticket-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.08);
    border-left: 3px solid rgba(255, 186, 186, 0.8);
    padding: 0.75rem 1rem;
    border-radius: 0 10px 10px 0;
    margin: 0;
}

.mag-ticket-note strong {
    color: white;
}

/* ============================================================
   CINEMATIC VIDEO TEASER SECTION
   ============================================================ */
.video-teaser-section {
    position: relative;
    background: linear-gradient(160deg, #003d45 0%, #005662 50%, #004e5c 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.vt-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 188, 212, 0.2) 0%, transparent 65%),
        radial-gradient(ellipse at 80% 100%, rgba(0, 109, 119, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.vt-container {
    position: relative;
    z-index: 2;
}

.vt-player-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.3), 0 30px 80px rgba(0, 0, 0, 0.7);
    animation: vtGlow 3s ease-in-out infinite alternate;
}

@keyframes vtGlow {
    from {
        box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.2), 0 30px 80px rgba(0, 0, 0, 0.7);
    }

    to {
        box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.6), 0 40px 100px rgba(0, 109, 119, 0.3);
    }
}

.vt-video {
    width: 100%;
    display: block;
    background: #000;
    max-height: 520px;
    object-fit: cover;
}

.vt-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: opacity 0.4s ease;
    z-index: 5;
}

.vt-play-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.vt-play-overlay:hover .vt-play-btn {
    transform: scale(1.1);
}

.vt-play-btn span {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* mute button is now part of the controls bar - legacy kept for JS compat */
.vt-mute-btn {
    display: none;
}

/* ============================================================
   SPEAKER ENHANCEMENTS — Topic Badges & Returning Badge
   ============================================================ */
.speakers-grid-real {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.speaker-topic-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-top: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.topic-cyber {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.25);
}

.topic-cx {
    background: rgba(0, 109, 119, 0.1);
    color: #006d77;
    border: 1px solid rgba(0, 109, 119, 0.25);
}

.topic-ops {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.25);
}

.topic-edu {
    background: rgba(234, 179, 8, 0.1);
    color: #b45309;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.returning-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    color: #b8860b;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(184, 134, 11, 0.1) 100%);
    border: 1px solid rgba(184, 134, 11, 0.3);
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

/* ============================================================
   POSTER CAROUSEL SECTION
   ============================================================ */
.poster-carousel-section {
    position: relative;
    background: linear-gradient(160deg, #f5fafd 0%, #eaf4f6 60%, #dff0f2 100%);
    padding: 6rem 0 5rem;
    overflow: hidden;
    border-top: 1px solid rgba(0, 109, 119, 0.1);
    border-bottom: 1px solid rgba(0, 109, 119, 0.1);
}

.poster-carousel-section .section-header .sub-badge.color-crimson {
    color: var(--accent-crimson);
}

.poster-carousel-section h2.text-white {
    color: var(--secondary-blue, #006d77) !important;
}

.poster-carousel-section>.container>p {
    color: rgba(0, 60, 70, 0.75) !important;
}

.poster-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(0, 188, 212, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(0, 109, 119, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.poster-swiper {
    width: 100%;
    padding: 2rem 0 4rem !important;
}

.poster-swiper .swiper-slide {
    width: 320px;
    height: auto;
}

.poster-slide {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    cursor: grab;
    transition: transform 0.3s ease;
}

.poster-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.poster-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem 1.2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-slide-active .poster-slide-info {
    opacity: 1;
}

.poster-nav {
    color: white !important;
    background: rgba(0, 109, 119, 0.7);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.poster-nav:hover {
    background: var(--primary-teal) !important;
}

.poster-nav::after {
    font-size: 16px !important;
}

.poster-pagination {
    bottom: 1rem !important;
}

.poster-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.poster-pagination .swiper-pagination-bullet-active {
    background: var(--accent-crimson);
    transform: scale(1.3);
}

.poster-download-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 1024px) {
    .magazine-section {
        grid-template-columns: 1fr;
    }

    .magazine-illustration {
        height: 350px;
    }

    .magazine-content {
        padding: 3rem 2.5rem;
    }

    .magazine-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .stat-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .magazine-content {
        padding: 2.5rem 1.5rem;
    }

    .magazine-content h2 {
        font-size: 1.8rem;
    }

    .poster-swiper .swiper-slide {
        width: 260px;
    }

    .poster-download-row {
        flex-direction: column;
        align-items: center;
    }

    .vt-player-wrapper {
        border-radius: 12px;
    }
}

/* =====================================================
   IMPROVEMENTS — Width, Pause Button, Poster Download
   ===================================================== */

/* 1. Narrow the event-details container to 1100px for better readability on laptops */
.event-hero-container,
.vt-container,
.magazine-section,
.event-theme-dark .container {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* 2. Video Controls Bar — CSTV-style, modern player */
.vt-controls-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1.25rem 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 20;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.vt-player-wrapper:hover .vt-controls-bar,
.vt-controls-bar.playing {
    opacity: 1;
    transform: translateY(0);
}

.vt-ctrl-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    flex-shrink: 0;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(8px);
}

.vt-ctrl-btn:hover {
    background: rgba(0, 188, 212, 0.5);
    border-color: rgba(0, 188, 212, 0.8);
    transform: scale(1.18);
    box-shadow: 0 4px 16px rgba(0, 188, 212, 0.35);
}

.vt-ctrl-btn svg {
    width: 18px;
    height: 18px;
}

.vt-progress-track {
    flex: 1;
    height: 4px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.vt-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00c2cb, #4ecdc4);
    border-radius: 99px;
    transition: width 0.5s linear;
    pointer-events: none;
}

.vt-progress-track:hover {
    height: 6px;
    margin-top: -1px;
}

.vt-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Legacy vt-pause-btn kept hidden (now replaced by bar) */
.vt-pause-btn {
    display: none;
}

/* 3. Poster Slide — Hover Download Icon */
.poster-slide {
    position: relative;
    overflow: hidden;
}

.poster-dl-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
    z-index: 10;
}

.poster-slide:hover .poster-dl-icon {
    opacity: 1;
    transform: translateY(0);
}

.poster-dl-icon:hover {
    background: rgba(0, 109, 119, 0.85);
    border-color: white;
}

/* 4. Download All button — disabled state during zip */
.btn-outline-white:disabled {
    opacity: 0.7;
    cursor: wait;
}

/* ============================================================
   ANIMATED JET SCROLL TO TOP
   ============================================================ */
.jet-btn {
    border-radius: 50% !important;
    background: linear-gradient(135deg, #00c2cb 0%, #006d77 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 109, 119, 0.4) !important;
    transition: all 0.3s ease !important;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.jet-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.jet-btn:hover {
    animation: jetThrust 0.4s ease-in-out infinite alternate !important;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.6) !important;
}

.jet-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(0, 76, 84, 0.95);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.jet-btn::before {
    content: '';
    position: absolute;
    right: calc(100% + 9px);
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 76, 84, 0.95);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.jet-btn:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.jet-btn:hover::before {
    opacity: 1;
}

@keyframes jetThrust {
    0% {
        transform: translateY(0) scale(1.05);
    }

    100% {
        transform: translateY(-4px) scale(1.1);
    }
}

@keyframes rocketLaunch {
    0% {
        transform: translateY(0) scale(1);
    }

    30% {
        transform: translateY(-4px) scale(1.05);
    }

    60% {
        transform: translateY(-10px) scale(1.08);
    }

    80% {
        transform: translateY(-14px) scale(1.1);
        opacity: 0.6;
    }

    100% {
        transform: translateY(-20px) scale(1);
        opacity: 0;
    }
}

/* ============================================================
   HOST SECTION
   ============================================================ */
.host-section {
    background: linear-gradient(160deg, #f8fffe 0%, #edf9fa 100%);
    position: relative;
    overflow: hidden;
}

.host-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0, 109, 119, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.host-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3.5rem;
}

.host-poster-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.host-poster-frame {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    max-width: 340px;
    width: 100%;
}

.host-poster-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 24px 60px rgba(0, 109, 119, 0.22), 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.host-poster-frame:hover .host-poster-img {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 32px 72px rgba(0, 109, 119, 0.28), 0 10px 28px rgba(0, 0, 0, 0.15);
}

.host-poster-glow {
    position: absolute;
    inset: -20px;
    border-radius: 28px;
    background: radial-gradient(ellipse, rgba(0, 109, 119, 0.15) 0%, transparent 65%);
    z-index: -1;
    pointer-events: none;
}

.host-profile-side {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.host-credential-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-teal) 0%, #009ba5 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    width: fit-content;
}

.host-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
    line-height: 1.1;
}

.host-role {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

.host-quote {
    border-left: 4px solid var(--primary-teal);
    margin: 0.5rem 0;
    padding: 1rem 1.5rem;
    background: rgba(0, 109, 119, 0.05);
    border-radius: 0 12px 12px 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.7;
    font-style: italic;
}

.host-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

.host-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.25rem;
}

.host-tag {
    background: rgba(0, 109, 119, 0.09);
    color: var(--primary-teal);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 109, 119, 0.18);
}

.host-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .host-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .host-poster-frame {
        max-width: 280px;
        margin: 0 auto;
    }

    .host-name {
        font-size: 2rem;
    }
}

@keyframes exhaustPulse {

    0%,
    100% {
        transform: scaleY(0.4) scaleX(0.6);
        opacity: 0.4;
    }

    50% {
        transform: scaleY(1) scaleX(1);
        opacity: 0.8;
    }
}

.jet-btn {
    position: relative;
}

.jet-btn svg {
    color: white;
    transition: transform 0.3s ease;
    display: block;
}

.jet-btn::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 160, 50, 0.9) 0%, rgba(255, 80, 0, 0.5) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.jet-btn:hover::after {
    opacity: 1;
    animation: exhaustPulse 0.5s ease infinite;
}

.jet-btn:hover svg {
    animation: rocketLaunch 0.6s ease forwards;
}

/* ============================================================
   DOWNLOAD ALL POSTERS BUTTON
   ============================================================ */
.btn-poster-dl {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.97rem;
    background: linear-gradient(135deg, var(--primary-teal) 0%, #004d54 100%);
    color: white;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 18px rgba(0, 109, 119, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-poster-dl::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transition: left 0.55s ease;
}

.btn-poster-dl:hover::before {
    left: 100%;
}

.btn-poster-dl:hover {
    background: linear-gradient(135deg, #004d54 0%, var(--primary-teal) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 109, 119, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pdl-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-poster-dl:hover .pdl-icon {
    transform: translateY(3px);
}

.pdl-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-poster-dl:hover .pdl-arrow {
    transform: translateX(5px);
}

/* ============================================================
   TICKET DETAILS SECTION
   ============================================================ */
.tickets-section {
    background: linear-gradient(180deg, #f0fafb 0%, #e8f7f8 100%);
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0 2.5rem;
}

/* 2-ticket centred variant */
.tickets-grid-two {
    grid-template-columns: repeat(2, minmax(0, 360px));
    justify-content: center;
    gap: 2.5rem;
}

.ticket-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    border: 1px solid rgba(0, 109, 119, 0.12);
    box-shadow: 0 4px 20px rgba(0, 109, 119, 0.06);
    position: relative;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ticket-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 109, 119, 0.14);
    border-color: var(--primary-teal);
}

.ticket-card-vip {
    background: linear-gradient(145deg, #006d77 0%, #009ba5 100%);
    border-color: transparent;
    color: white;
    transform: scale(1.04);
    box-shadow: 0 20px 50px rgba(0, 109, 119, 0.28);
}

.ticket-card-vip:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 109, 119, 0.38);
}

.ticket-badge-vip {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-crimson);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    white-space: nowrap;
}

.ticket-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(0, 109, 119, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.ticket-card-vip .ticket-icon-wrap {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.ticket-type {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.ticket-card-vip .ticket-type {
    color: rgba(255, 255, 255, 0.8);
}

.ticket-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-teal);
}

.ticket-price span {
    font-size: 2.8rem;
    font-weight: 800;
}

.ticket-card-vip .ticket-price {
    color: white;
}

.ticket-perks {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1rem;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.ticket-perks li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--text-main);
}

.ticket-perks .fa-check-circle {
    color: var(--primary-teal);
    font-size: 1rem;
    flex-shrink: 0;
}

.ticket-card-vip .ticket-perks li {
    color: rgba(255, 255, 255, 0.92);
}

.ticket-card-vip .ticket-perks .fa-check-circle {
    color: #7fffd4;
}

/* Placeholder note shown when ticket details are not yet available */
.ticket-details-note {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    line-height: 1.6;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    width: 100%;
}

.ticket-card-vip .ticket-details-note {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

/* Where to Buy Banner */
.where-to-buy {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    border: 1px dashed rgba(0, 109, 119, 0.35);
    border-radius: 16px;
    padding: 1.4rem 2rem;
    margin: 0 0 3rem 0;
    color: var(--text-main);
    font-size: 0.97rem;
    line-height: 1.6;
}

.wtb-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 109, 119, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    flex-shrink: 0;
}

/* Tickets Contact Row */
.tickets-contact-heading {
    font-size: 1.5rem;
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tickets-contact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.tkt-contact-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text-main);
    border: 1px solid rgba(0, 109, 119, 0.1);
    box-shadow: 0 4px 15px rgba(0, 109, 119, 0.06);
    transition: all 0.3s ease;
}

.tkt-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 109, 119, 0.13);
    border-color: var(--primary-teal);
    color: var(--text-main);
}

.tkt-contact-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(0, 109, 119, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    margin-bottom: 0.4rem;
    transition: all 0.3s ease;
}

.tkt-contact-card:hover .tkt-contact-icon {
    background: var(--primary-teal);
    color: white;
    transform: scale(1.08);
}

.tkt-contact-icon-fb {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.tkt-contact-card:hover .tkt-contact-icon-fb {
    background: #1877f2;
    color: white;
}

.tkt-contact-icon-yt {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.tkt-contact-card:hover .tkt-contact-icon-yt {
    background: #ff0000;
    color: white;
}

.tkt-contact-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.tkt-contact-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .tickets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tickets-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tickets-grid {
        grid-template-columns: 1fr;
    }

    .ticket-card-vip {
        transform: scale(1);
    }

    .tickets-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .where-to-buy {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   VENUE / LOCATION SECTION  — MICC
   ============================================================ */
.venue-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 3rem;
}

/* Gallery column */
.venue-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.venue-gallery-main {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.venue-img-main {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.venue-gallery-main:hover .venue-img-main {
    transform: scale(1.03);
}

.venue-gallery-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.venue-img-thumb {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-img-thumb:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* Details column */
.venue-details-col {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.venue-address-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(0, 109, 119, 0.06);
    border: 1px solid rgba(0, 109, 119, 0.14);
    border-radius: 14px;
    padding: 1.4rem;
}

.venue-addr-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, #009ba5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.venue-addr-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 0.3rem;
}

.venue-addr-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 0.7rem;
}

.venue-dir-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-teal);
    text-decoration: none;
    transition: color 0.2s ease;
}

.venue-dir-link:hover {
    color: #004d54;
    text-decoration: underline;
}

/* Facilities grid */
.venue-facilities {
    background: var(--bg-light, #f8fffe);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    border: 1px solid rgba(0, 109, 119, 0.1);
}

.venue-fac-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-teal);
    margin: 0 0 1rem;
}

.venue-fac-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
}

.venue-fac-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.84rem;
    color: var(--text-main);
    font-weight: 500;
}

.venue-fac-item svg {
    color: var(--primary-teal);
    flex-shrink: 0;
}

/* MICC Banner */
.venue-micc-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-teal) 0%, #004d54 100%);
    border-radius: 12px;
    padding: 1rem 1.4rem;
    color: white;
    flex-wrap: wrap;
}

.micc-banner-left {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.micc-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.75;
}

.micc-banner-left strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.micc-banner-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.micc-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.micc-contact-link:hover {
    color: white;
}

/* Kenneth Kaunda Hall Callout */
.venue-hall-callout {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: rgba(0, 109, 119, 0.05);
    border: 1px solid rgba(0, 109, 119, 0.15);
    border-left: 4px solid var(--primary-teal);
    border-radius: 0 14px 14px 0;
    padding: 1.4rem 1.8rem;
    margin-top: 2rem;
}

.hall-callout-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.venue-hall-callout h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 0.4rem;
}

.venue-hall-callout p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 880px) {
    .venue-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .venue-img-main {
        height: 220px;
    }

    .venue-fac-grid {
        grid-template-columns: 1fr;
    }

    .venue-micc-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}