:root {
    /* Brand Colors */
    --color-teal: #156E7E;
    --color-teal-light: #E8F6F8;
    --color-red: #C00101;
    --color-red-light: #FDE8E8;
    --color-white: #FFFFFF;
    --color-dark: #1A1A1A;
    --color-charcoal: #333336;
    --color-gray: #56585E;
    --color-bg-light: #F2F4F8;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-glass: 0 8px 32px rgba(0,2,24,0.05);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-red { color: var(--color-red); }
.text-teal { color: var(--color-teal); }
.text-white { color: var(--color-white); }
.text-dark { color: var(--color-dark); }

.bg-red { background-color: var(--color-red); color: var(--color-white); }
.bg-teal { background-color: var(--color-teal); color: var(--color-white); }
.bg-light { background-color: var(--color-bg-light); }
.bg-charcoal { background-color: var(--color-charcoal); }
.bg-dark { background-color: var(--color-dark); color: var(--color-white); }

.mb-1 { margin-bottom: 1rem; }

.section-padding {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-charcoal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: var(--shadow-glass);
}

/* 1. Announcement Bar */
.announcement-bar {
    background-color: var(--color-red);
    color: var(--color-white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1000;
}

/* 2. Navbar */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    padding: 16px 0;
    transition: var(--transition-base);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--color-dark);
}

.logo-accent {
    color: var(--color-red);
}

.logo-year {
    font-weight: 300;
    color: var(--color-gray);
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    transition: var(--transition-fast);
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-dark);
}

/* 3. Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slideshow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeAnimation 15s infinite;
}

.slide-1 {
    background-image: url('assets/slide1.png');
    animation-delay: 0s;
}

.slide-2 {
    background-image: url('assets/slide2.png');
    animation-delay: 5s;
}

.slide-3 {
    background-image: url('assets/slide3.png');
    animation-delay: 10s;
}

@keyframes fadeAnimation {
    0% { opacity: 0; transform: scale(1); }
    10% { opacity: 1; }
    33% { opacity: 1; }
    43% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    z-index: 1;
}

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

.badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--color-teal-light);
    color: var(--color-teal);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-light {
    background-color: rgba(255,255,255,0.15);
    color: var(--color-white);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 32px;
}

.hero-date h2 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    background-color: var(--color-teal);
    color: var(--color-white);
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    margin-bottom: 40px;
}

/* 4. About */
.about {
    position: relative;
}

.lead-text {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto 48px auto;
    color: var(--color-dark);
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
}

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

.about-text {
    padding: 40px 40px 40px 0;
    font-size: 1.1rem;
    color: var(--color-charcoal);
    line-height: 1.8;
}

/* 5. Features */
.features {
    background-color: var(--color-white);
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 64px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 600px;
    margin: 0 auto 64px auto;
}

.stat-item {
    padding: 32px;
    transition: var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item p {
    font-weight: 500;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.feature-card {
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: var(--transition-base);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-img {
    width: 100%;
    height: 240px;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.feature-content {
    padding: 32px;
    flex: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--color-dark);
}

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

.showcase-box {
    padding: 48px;
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* 5.5 Speakers Carousel */
/* ===================== SPEAKERS V2 ===================== */
.speakers-v2 {
    position: relative;
    overflow: hidden;
}

.spk-header {
    margin-bottom: 48px;
}

.spk-label {
    display: block;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.spk-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0;
    color: #fff;
}

.spk-carousel-wrap {
    position: relative;
}

.spk-carousel-container {
    overflow: hidden;
    border-radius: 24px;
}

.spk-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.spk-slide {
    min-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0 8px;
}

.spk-slide-inner {
    display: flex;
    gap: 48px;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 40px;
}

.spk-photo {
    position: relative;
    flex: 0 0 320px;
}

.spk-photo-frame {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    aspect-ratio: 3 / 4;
}

.spk-photo-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spk-photo-accent {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px solid rgba(185,28,28,0.3);
    z-index: 1;
}

.spk-info {
    flex: 1 1 0;
    min-width: 0;
    width: 0;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.spk-topic-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-teal), #0d9488);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.spk-name {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 20px;
    color: var(--color-red);
}

.spk-name span {
    color: #fff;
}

.spk-role {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin: 0 0 20px;
}

.spk-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(to right, var(--color-red), transparent);
    border-radius: 2px;
    margin-bottom: 20px;
}

.spk-quote {
    font-size: 0.92rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.45);
    margin: 0;
    font-style: italic;
}

/* Controls */
.spk-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.spk-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.spk-btn:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    transform: scale(1.1);
}

.spk-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.spk-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.spk-dot.active {
    width: 28px;
    border-radius: 5px;
    background: var(--color-red);
}

/* 6. Venue & Schedule */
.venue-container {
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
}

.venue-layout {
    display: flex;
    flex-direction: row;
}

.venue-image {
    flex: 1.2;
    min-height: 400px;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

/* Lightbox Modal */
.lightbox-modal {
    display: none; 
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    box-shadow: var(--shadow-lg);
    animation: zoomIn 0.3s ease;
    border-radius: 8px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--color-red);
}

@keyframes zoomIn {
    from {transform:scale(0.9); opacity:0;}
    to {transform:scale(1); opacity:1;}
}

.venue-details {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
}

.venue-info-blocks {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.venue-info-blocks > div {
    flex: 1;
}

.venue-map {
    margin-top: 16px;
    flex-grow: 1;
}

.facilities-block {
    margin-top: 32px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.facility-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.facility-item:hover {
    background: rgba(0, 128, 128, 0.04);
}

.facility-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: rgba(0, 128, 128, 0.08);
    border: 1px solid rgba(0, 128, 128, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal, #008080);
    transition: all 0.3s ease;
}

.facility-item:hover .facility-icon {
    background: rgba(0, 128, 128, 0.14);
    transform: scale(1.05);
}

.facility-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.facility-text strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark, #1a1a2e);
    line-height: 1.3;
}

.facility-text span {
    font-size: 0.82rem;
    color: var(--color-gray, #888);
    line-height: 1.4;
}

/* ===================== VENUE V2 ===================== */
.venue-section-v2 {
    background: #0a0a0f;
    color: #fff;
    overflow: hidden;
}

.venue-hero-img {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.venue-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.venue-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,15,0.2) 0%, rgba(10,10,15,0.85) 100%);
}

.venue-hero-text {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.venue-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.venue-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    color: #fff;
}

.venue-hero-sub {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    margin: 4px 0 0;
}

.venue-body {
    padding: 56px 0 64px;
}

/* Info Cards */
.venue-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.v-info-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.v-info-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.v-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(0,128,128,0.12);
    border: 1px solid rgba(0,128,128,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2dd4bf;
}

.v-info-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.v-info-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.v-info-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.v-info-extra {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* Map Row */
.venue-map-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
    align-items: stretch;
}

.venue-address-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venue-section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2dd4bf;
    margin-bottom: 16px;
}

.venue-full-address {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 24px;
}

.venue-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2dd4bf;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(45,212,191,0.25);
    border-radius: 10px;
    transition: all 0.3s ease;
    width: fit-content;
}

.venue-directions-btn:hover {
    background: rgba(45,212,191,0.1);
    border-color: rgba(45,212,191,0.5);
}

.venue-map-embed {
    border-radius: 16px;
    overflow: hidden;
    min-height: 260px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Facilities V2 */
.venue-facilities {
    margin-bottom: 48px;
}

.venue-fac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.vf-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.vf-item:hover {
    background: rgba(255,255,255,0.06);
}

.vf-item svg {
    min-width: 20px;
    color: #2dd4bf;
    margin-top: 2px;
}

.vf-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vf-item strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.vf-item span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

/* Venue CTA */
.venue-cta-block {
    margin-top: 16px;
}

.venue-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px 48px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(185,28,28,0.12) 0%, rgba(185,28,28,0.04) 100%);
    border: 1px solid rgba(185,28,28,0.2);
}

.venue-cta-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.venue-cta-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.venue-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(185,28,28,0.3);
}

.venue-cta-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(185,28,28,0.4);
}

.block-title {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.block-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--color-red);
}

.venue-name {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-charcoal);
}

.venue-address {
    color: var(--color-gray);
}

.date-big {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.date-big .day {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-teal);
}

.month-year {
    display: flex;
    flex-direction: column;
}

.month {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.year {
    font-size: 1.2rem;
    color: var(--color-gray);
}

.time {
    font-size: 1.1rem;
    font-weight: 500;
}

/* 6.4 Sponsorship Marquee */
.sponsorship-section {
    position: relative;
    overflow: hidden;
}

.sponsor-marquee {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

/* The gradient masks */
.sponsor-marquee::before,
.sponsor-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.sponsor-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-light) 0%, rgba(248,249,250,0) 100%);
}
.sponsor-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-light) 0%, rgba(248,249,250,0) 100%);
}

.sponsor-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-marquee 25s linear infinite;
}

.sponsor-logo {
    flex: 0 0 auto;
    width: 150px;
    margin: 0 40px;
    opacity: 0.6;
    transition: var(--transition-fast);
    filter: grayscale(100%);
}

.sponsor-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.sponsor-logo img {
    width: 100%;
    height: auto;
    display: block;
}

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

/* 6.5 Provokasi CTA */
.provokasi-cta {
    background-color: var(--color-white);
    border-top: 1px solid #eaeaea;
}

.cta-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-intro {
    flex: 1.5;
}

.heart-title {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.heart-red {
    font-weight: 800;
    letter-spacing: 1px;
}

.behind-cursive {
    font-family: 'Dancing Script', cursive;
    color: var(--color-charcoal);
    font-size: 4rem;
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 1;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--color-charcoal);
    line-height: 1.8;
    margin-top: 40px;
}

/* =========================
   Merch Showcase Section
   ========================= */
.merch-showcase {
    color: #fff;
}

.merch-tag {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    background: rgba(185, 28, 28, 0.12);
    border: 1px solid rgba(185, 28, 28, 0.25);
    color: var(--color-red);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.merch-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 12px;
}

.merch-subtitle {
    color: #9394a5;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.merch-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.merch-card:hover {
    border-color: rgba(185, 28, 28, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.merch-img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.merch-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.merch-card:hover .merch-img-wrap img {
    transform: scale(1.08);
}

.merch-type {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.merch-type.physical {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.merch-type.digital {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.25);
}

.merch-info {
    padding: 16px 18px 20px;
}

.merch-info h3 {
    font-size: 0.92rem;
    font-weight: 600;
    color: #e8e8ec;
    margin-bottom: 6px;
    line-height: 1.3;
}

.merch-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-red);
    margin: 0;
}

.btn-merch-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    border: 1px solid rgba(185, 28, 28, 0.4);
    background: rgba(185, 28, 28, 0.08);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-merch-cta:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(185, 28, 28, 0.3);
}

.btn-merch-cta svg:last-child {
    transition: transform 0.3s ease;
}

.btn-merch-cta:hover svg:last-child {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .merch-info {
        padding: 12px 14px 16px;
    }
    .merch-info h3 {
        font-size: 0.82rem;
    }
    .merch-price {
        font-size: 0.95rem;
    }
}

.btn-provokasi-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 14px 32px;
    background: var(--color-red);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(180, 30, 30, 0.25);
}

.btn-provokasi-cta:hover {
    background: #8b1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(180, 30, 30, 0.35);
}

.btn-provokasi-cta svg {
    transition: transform 0.3s ease;
}

.btn-provokasi-cta:hover svg {
    transform: translateX(4px);
}

.cta-logo {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stylized-exclamation {
    font-size: 12rem;
    color: var(--color-red);
    font-family: serif;
    font-weight: 700;
    line-height: 0.8;
    margin-bottom: -15px;
}

.provokasi-brand {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-charcoal);
    letter-spacing: 2px;
}

.brand-exclaim {
    color: var(--color-charcoal);
    font-weight: 700;
}

/* 7. Footer */
.footer {
    padding: 80px 0 40px 0;
    color: #e0e0e0;
}

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

.footer-brand {
    padding-right: 40px;
}

.brand-tagline {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-top: 16px;
    color: #A0A0A0;
}

.footer-title {
    margin-bottom: 24px;
    color: var(--color-white);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-email-btn {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-fast);
    margin-top: 16px;
}

.footer-email-btn:hover {
    background-color: var(--color-red);
    border-color: var(--color-red);
}

.social-links-grid {
    display: flex;
    gap: 16px;
}

.social-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-base);
}

.social-circle:hover {
    background-color: var(--color-teal);
    transform: translateY(-5px);
}

.footer-separator {
    height: 1px;
    background-color: rgba(255,255,255,0.1);
    margin: 40px 0;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #808080;
    font-size: 0.95rem;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    color: #A0A0A0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-white);
}

/* Responsive */
@media (max-width: 900px) {
    .venue-layout {
        flex-direction: column;
    }
    .venue-image {
        min-height: 250px;
    }
    .venue-info-blocks {
        flex-direction: column;
        gap: 0;
    }
    .venue-details {
        padding: 32px;
    }
    .footer-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-brand {
        padding-right: 0;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

/* ================================================
   COUNTDOWN TIMER
   ================================================ */
.countdown-section {
    background: linear-gradient(135deg, #06060a 0%, #111118 100%);
    padding: 40px 0;
    text-align: center;
}
.countdown-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 500;
}
.countdown-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.cd-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px 24px;
    min-width: 90px;
    backdrop-filter: blur(8px);
}
.cd-num {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}
.cd-unit {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
}
.cd-sep {
    font-size: 2rem;
    color: var(--color-red);
    font-weight: 700;
    line-height: 1;
}

/* ================================================
   HERO SHARE BAR
   ================================================ */
.hero-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}
.hero-share span {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.share-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    fill: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}
.share-icon:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    color: #fff;
    fill: #fff;
    transform: translateY(-2px);
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
    background: #06060a;
    color: #fff;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 22px 0;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s;
}
.faq-question:hover {
    color: var(--color-red);
}
.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    opacity: 0.4;
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--color-red);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}
.faq-answer p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testi-section {
    padding: 80px 0;
}
.testi-carousel-wrap {
    overflow-x: auto;
    margin-top: 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
}
.testi-carousel-wrap::-webkit-scrollbar {
    display: none;
}
.testi-track {
    display: flex;
    gap: 24px;
    padding: 0 24px;
}
.testi-card {
    flex: 0 0 320px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
}
.testi-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    display: block;
    border: 2px solid rgba(255,255,255,0.1);
}
.testi-avatar-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-red), #ff4444);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.testi-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testi-quote {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}
.testi-name {
    display: block;
    color: #fff;
    font-size: 1rem;
}
.testi-title {
    display: block;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* ================================================
   WHATSAPP FLOAT WIDGET
   ================================================ */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}
.wa-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: waPulse 2s infinite;
}
.wa-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}
.wa-chat-popup {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 340px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.2);
    overflow: hidden;
    display: none;
    animation: waSlideUp 0.3s ease;
}
.wa-chat-popup.open {
    display: block;
}
@keyframes waSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.wa-chat-header {
    background: #075E54;
    color: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.wa-chat-header small {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
}
.wa-chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-red);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.wa-chat-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}
.wa-chat-body {
    padding: 20px 16px;
    background: #e5ddd5 url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8c3bc' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    min-height: 120px;
}
.wa-msg {
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 85%;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 12px;
}
.wa-msg-bot {
    background: #fff;
    color: #333;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.wa-msg-user {
    background: #dcf8c6;
    color: #333;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}
.wa-quick-replies {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}
.wa-quick-replies button {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.82rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
}
.wa-quick-replies button:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}
.wa-chat-form {
    padding: 16px;
    background: #fff;
    border-top: 1px solid #eee;
}
.wa-form-label {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 12px;
}
.wa-chat-form input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 0.88rem;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
.wa-chat-form input:focus {
    outline: none;
    border-color: #25D366;
}
.wa-submit-btn {
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s;
}
.wa-submit-btn:hover {
    background: #128C7E;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        padding: 24px;
        box-shadow: var(--shadow-md);
        text-align: center;
    }
    .cta-layout {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    .cta-intro {
        text-align: center;
    }
    .heart-title {
        font-size: 2.5rem;
    }
    .behind-cursive {
        font-size: 3.5rem;
        left: 50%;
        transform: translateX(-50%);
        top: 25px;
    }
    .cta-text {
        margin-top: 48px;
    }
    .stylized-exclamation {
        font-size: 8rem;
    }
    .provokasi-brand {
        font-size: 2.5rem;
    }

    .nav-links.active {
        display: flex;
    }
    
    .navbar .btn-primary {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-share {
        gap: 8px;
        margin-top: 20px;
    }
    .share-icon {
        width: 34px;
        height: 34px;
    }
    /* Countdown mobile */
    .countdown-section {
        padding: 28px 0;
    }
    .cd-item {
        min-width: 60px;
        padding: 14px 10px;
    }
    .cd-num {
        font-size: 1.8rem;
    }
    .cd-unit {
        font-size: 0.6rem;
    }
    .cd-sep {
        font-size: 1.4rem;
    }
    .countdown-grid {
        gap: 6px;
    }
    /* WA chat mobile */
    .wa-chat-popup {
        width: calc(100vw - 32px);
        right: -8px;
    }
    .wa-float {
        bottom: 16px;
        right: 16px;
    }
    /* FAQ mobile */
    .faq-question {
        font-size: 0.92rem;
        padding: 18px 0;
    }
    /* Testimonials mobile */
    .testi-card {
        flex: 0 0 280px;
    }

    /* Features grid — stack on mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .feature-img {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .feature-content {
        padding: 20px 24px 24px;
    }
    
    .stats-grid {
        gap: 16px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }

    /* Speakers V2 mobile — block layout to avoid flex issues */
    .spk-carousel-wrap {
        overflow: hidden;
        max-width: 100vw;
    }
    .spk-carousel-container {
        border-radius: 16px;
        overflow: hidden;
    }
    .spk-carousel-track {
        overflow: visible;
    }
    .spk-slide {
        padding: 0;
        overflow: hidden;
        min-width: 100%;
        width: 100%;
        max-width: 100%;
    }
    .spk-slide-inner {
        display: block;
        padding: 0;
        border-radius: 16px;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .spk-photo {
        display: block;
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    .spk-photo-frame {
        width: 100%;
        height: 300px;
        border-radius: 0;
        position: relative;
        overflow: hidden;
    }
    .spk-photo-frame img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 20%;
        display: block;
    }
    .spk-photo-accent {
        display: none;
    }
    .spk-info {
        padding: 24px 20px 28px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    .spk-info p,
    .spk-info h3,
    .spk-info div {
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .spk-name {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    .spk-title {
        font-size: 1.6rem;
    }
    .spk-topic-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
        margin-bottom: 14px;
    }
    .spk-role {
        font-size: 0.88rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    .spk-divider {
        margin-bottom: 14px;
    }
    .spk-quote {
        font-size: 0.82rem;
        line-height: 1.7;
    }

    /* About section */
    .about-split {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .about-text {
        padding: 32px;
    }
    
    .showcase-box {
        padding: 32px 24px;
    }
    
    .sponsor-logo {
        width: 100px;
        margin: 0 20px;
    }
    
    /* Venue V2 mobile */
    .venue-hero-img {
        height: 260px;
    }
    .venue-hero-title {
        font-size: 2rem;
    }
    .venue-body {
        padding: 36px 0 48px;
    }
    .venue-info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .v-info-card {
        padding: 16px 14px;
        gap: 12px;
    }
    .v-info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .v-info-value {
        font-size: 0.9rem;
    }
    .venue-map-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .venue-map-embed {
        min-height: 220px;
    }
    .venue-fac-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .vf-item {
        padding: 12px;
    }
    .venue-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }
    .venue-cta-btn {
        width: 100%;
        justify-content: center;
    }

    /* Section padding mobile */
    .section-padding {
        padding: 48px 0;
    }

    /* Footer nav — wrap properly */
    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 14px;
    }
    
    .footer-nav a {
        font-size: 0.78rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .feature-img {
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    .feature-content {
        padding: 16px 20px 20px;
    }
    
    .spk-name {
        font-size: 1.5rem;
    }
    .spk-info {
        padding: 20px 16px 24px;
    }

    .footer-nav {
        gap: 4px 10px;
    }
    
    .footer-nav a {
        font-size: 0.72rem;
    }
}
