﻿/* ============================================
   CRF Singapore 2026 - Custom Styles
   Main Color: #BA171F
   ============================================ */

:root {
    --primary-red: #BA171F;
    --primary-red-dark: #9A1319;
    --primary-red-light: #D41D26;
    --white: #FFFFFF;
    --black: #000000;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #F5F5F5;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    color: var(--gray-dark);
}

/* ============================================
   NAVIGATION
   ============================================ */
#mainNav {
    padding: 15px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

    #mainNav.scrolled {
        background: rgba(186, 23, 31, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        padding: 10px 0;
    }

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition-smooth);
}

#mainNav.scrolled .logo-img {
    height: 40px;
}

/* Base nav-link — no animated underline */
.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 15px !important;
    transition: var(--transition-smooth);
    position: relative;
}

    /* Remove the pseudo-element underline from ALL nav-links */
    .navbar-nav .nav-link::after {
        display: none !important;
    }

/* -----------------------------------------------
   DROPDOWN ARROW — shown on all dropdown-toggles
   Uses Bootstrap's built-in ::after caret,
   re-enabled and styled here.
----------------------------------------------- */
.navbar-nav .dropdown-toggle::after {
    display: inline-block !important;
    width: auto;
    height: auto;
    margin-left: 5px;
    vertical-align: middle;
    /* Replace Bootstrap border-based caret with a smaller chevron */
    border: none !important;
    content: '';
    /* Custom chevron via border trick — clean & crisp */
    border-top: 4px solid rgba(255, 255, 255, 0.85) !important;
    border-right: 4px solid transparent !important;
    border-left: 4px solid transparent !important;
    border-bottom: 0 !important;
    position: relative;
    top: 1px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Rotate arrow when dropdown is open */
.navbar-nav .dropdown-toggle.show::after {
    transform: rotate(180deg);
    border-top-color: var(--white) !important;
    top: -2px;
}

/* Brighter arrow on hover */
.navbar-nav .dropdown-toggle:hover::after {
    border-top-color: var(--white) !important;
}

/* Simple opacity hover for non-dropdown links */
.navbar-nav .nav-link:not(.dropdown-toggle):hover {
    opacity: 0.8;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    animation: dropdownFade 0.3s ease forwards;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    transition: var(--transition-smooth);
}

    .dropdown-item:hover {
        background: var(--primary-red);
        color: var(--white);
        padding-left: 25px;
    }

.btn-register {
    background: var(--white);
    color: var(--primary-red) !important;
    padding: 10px 25px !important;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
    border: 2px solid var(--white);
}

    .btn-register:hover {
        background: transparent;
        color: var(--white) !important;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(186, 23, 31, 0.85) 0%, rgba(186, 23, 31, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%); */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(186, 23, 31, 0.3) 60%, rgba(186, 23, 31, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    color: var(--white);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-main {
    color: var(--white);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-date {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--primary-red);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .about-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 60%;
        height: 200%;
        background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
        animation: aboutGlow 8s ease-in-out infinite alternate;
    }

@keyframes aboutGlow {
    0% {
        transform: rotate(0deg) scale(1);
    }

    100% {
        transform: rotate(10deg) scale(1.1);
    }
}

.about-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-title {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
    max-width: 600px;
}

.btn-learn-more {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
    display: inline-block;
    text-decoration: none;
}

    .btn-learn-more:hover {
        background: var(--white);
        color: var(--primary-red);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

/* ============================================
   MARQUEE SECTION
   ============================================ */
.marquee-section {
    background: var(--white);
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid rgba(186, 23, 31, 0.1);
    border-bottom: 1px solid rgba(186, 23, 31, 0.1);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-text {
    color: var(--primary-red);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    padding-right: 20px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   SPEAKERS SECTION — FIXED
   ============================================ */
.speakers-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: stretch;
}

.speakers-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.speakers-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: speakersPan 15s ease-in-out infinite alternate;
}

@keyframes speakersPan {
    0% {
        transform: scale(1) translateX(0);
    }

    100% {
        transform: scale(1.05) translateX(-2%);
    }
}

.speakers-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(186, 23, 31, 0.92) 0%, rgba(186, 23, 31, 0.80) 40%, rgba(186, 23, 31, 0.20) 100% );
    z-index: 1;
}

/* Content sits above bg + overlay */
.speakers-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-left: 5%;
    padding-right: 0;
}

/* Left text block padding */
.speakers-text-block {
    padding: 80px 40px 80px 0;
    max-width: 460px;
}

/* Right image column: fills full section height, no padding */
.speakers-image-col {
    padding: 0 !important;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

/* Speakers image wrapper fills column fully */
.speakers-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: -1;
}

/* The actual speakers photo — fills the height of the section */
.speakers-img {
    display: block;
    width: auto;
    height: 100%;
    min-height: 600px;
    max-height: 700px;
    object-fit: cover;
    object-position: top center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
    transition: var(--transition-smooth);
}

    .speakers-img:hover {
        filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
    }

.speakers-title {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.speakers-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 380px;
}

.btn-explore {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
    display: inline-block;
    text-decoration: none;
}

    .btn-explore:hover {
        background: var(--white);
        color: var(--primary-red);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

/* ============================================
   SESSIONS SECTION — REDESIGNED LAYOUT
   ============================================ */
.sessions-section {
    background: var(--white);
    padding: 80px 0 100px;
}

.sessions-title {
    color: var(--primary-red);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* 2-column masonry-style grid */
.sessions-grid {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.sessions-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sessions-col-left {
    flex: 0 0 48%;
    width: 48%;
}

.sessions-col-right {
    flex: 0 0 calc(52% - 16px);
    width: calc(52% - 16px);
}

/* BASE SESSION CARD — image fills, text overlays bottom */
.session-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

/* Background image fills the card */
.session-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.session-card:hover .session-card-bg {
    transform: scale(1.06);
}

/* Gradient overlay — dark at bottom for readability */
.session-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.10) 100% );
    transition: background 0.4s ease;
    z-index: 1;
}

.session-card:hover .session-card-overlay {
    background: linear-gradient( to top, rgba(154, 19, 25, 0.88) 0%, rgba(154, 19, 25, 0.50) 50%, rgba(0, 0, 0, 0.10) 100% );
}

/* Text at the bottom of the card */
.session-card-body {
    position: relative;
    z-index: 2;
    padding: 28px 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.session-card-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}

.session-card-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.session-card-link {
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    display: inline-block;
}

    .session-card-link:hover {
        color: rgba(255, 255, 255, 0.75);
        letter-spacing: 2px;
    }

/* LARGE card — left column top, taller */
.session-card-large {
    min-height: 520px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Small card — left column bottom */
.session-card-small {
    min-height: 280px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Half cards — right column (equal split) */
.session-card-half {
    flex: 1 1 0;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
    background: var(--primary-red);
    padding: 60px 0 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 14px;
        transition: var(--transition-smooth);
        display: inline-block;
    }

        .footer-links a:hover {
            color: var(--white);
            transform: translateX(5px);
        }

.footer-brand {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

    .footer-contact:hover {
        color: var(--white);
    }

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
}

/* ============================================
   ANIMATION CLASSES
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

    .fade-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

    .fade-in-scale.visible {
        opacity: 1;
        transform: scale(1);
    }

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1199px) {
    .session-card-large {
        min-height: 440px;
    }

    .session-card-half {
        min-height: 320px;
    }

    .session-card-small {
        min-height: 240px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle-main {
        font-size: 28px;
    }

    .hero-date {
        font-size: 20px;
    }

    .about-title {
        font-size: 32px;
    }

    .speakers-title {
        font-size: 32px;
    }

    /* On tablet, stack speakers vertically */
    .speakers-image-col {
        display: none;
    }

    .speakers-text-block {
        padding: 60px 20px;
        max-width: 100%;
    }

    .navbar-collapse {
        background: rgba(186, 23, 31, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 16px;
        margin-top: 15px;
    }

    .dropdown-menu {
        background: rgba(255, 255, 255, 0.1);
        border: none;
    }

    .dropdown-item {
        color: var(--white);
    }

        .dropdown-item:hover {
            background: rgba(255, 255, 255, 0.2);
        }

    /* Sessions: single column on tablet */
    .sessions-grid {
        flex-direction: column;
    }

    .sessions-col-left,
    .sessions-col-right {
        flex: 0 0 100%;
        width: 100%;
    }

    .session-card-large {
        min-height: 380px;
    }

    .session-card-small,
    .session-card-half {
        min-height: 280px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle-main {
        font-size: 22px;
    }

    .hero-date {
        font-size: 18px;
    }

    .about-title {
        font-size: 26px;
    }

    .speakers-title {
        font-size: 28px;
    }

    .sessions-title {
        font-size: 28px;
    }

    .marquee-text {
        font-size: 18px;
    }

    .footer-brand {
        text-align: left;
        margin-top: 30px;
    }

    .session-card-title {
        font-size: 16px;
    }

    .session-card-body {
        padding: 20px;
    }
}

/* ============================================
   IMAGE HOVER EFFECTS
   ============================================ */
.image-hover-zoom {
    overflow: hidden;
}

    .image-hover-zoom img {
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .image-hover-zoom:hover img {
        transform: scale(1.1);
    }

/* Shimmer effect for images */
.shimmer-effect {
    position: relative;
    overflow: hidden;
}

    .shimmer-effect::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shimmer 3s infinite;
    }

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

/* Pulse animation for buttons */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(186, 23, 31, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(186, 23, 31, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(186, 23, 31, 0);
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Hero Section */
.about-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.about-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom, 
        rgba(186, 23, 31, 0.3) 0%, 
        rgba(186, 23, 31, 0.5) 50%,
        rgba(186, 23, 31, 0.85) 100%); */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(186, 23, 31, 0.3) 60%, rgba(186, 23, 31, 0.7) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 120px;
    width: 100%;
}

.about-hero-title {
    color: var(--white);
    font-size: 72px;
    font-weight: 700;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    font-size: 24px;
    animation: bounce 2s infinite;
}

.scroll-indicator-white {
    color: var(--white);
    font-size: 24px;
    animation: bounce 2s infinite;
}

.scroll-indicator-red {
    color: var(--primary-red);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ============================================
   SECTION HEADER — ARROW ON RIGHT
   Applies to ACRA, Committee, Past Forums headers
   ============================================ */
.section-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Arrow icon on right side of section headers */
.section-arrow-right {
    flex-shrink: 0;
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition-smooth);
    /* Reset any centering from bounce animation for position */
}

    /* Override the bounce animation translateY centering issue */
    .section-arrow-right i {
        display: block;
        animation: bounceIcon 2s infinite;
    }

@keyframes bounceIcon {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

.section-arrow-right:hover {
    opacity: 0.75;
}

/* Conference Info Section */
.conference-info-section {
    background: var(--primary-red);
    padding: 80px 0;
    position: relative;
}

.conference-intro {
    color: var(--white);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 700px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

    .stat-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-5px);
    }

.stat-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

    .stat-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* filter: brightness(0) invert(1); */
    }

.icon-2 {
    background-color: #fff;
    border-radius: 50rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.4;
}

/* Venue Info */
.venue-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
}

.venue-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.venue-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* Logo Section */
.logo-section {
    background: var(--white);
    padding: 80px 0;
}

.logo-section-title {
    color: var(--primary-red);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.logo-showcase {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.logo-item {
    flex: 0 0 auto;
}

.logo-color-img,
.logo-black-img {
    height: 80px;
    width: auto;
}

.logo-description {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.8;
}

    .logo-description p {
        margin-bottom: 15px;
    }

        .logo-description p:last-child {
            margin-bottom: 0;
        }

/* Landmarks Section */
.landmarks-section {
    background: var(--white);
    padding: 0 0 80px;
}

.landmark-item {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(186, 23, 31, 0.1);
}

    .landmark-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

.landmark-title {
    color: var(--primary-red);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.landmark-content p {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

    .landmark-content p:last-child {
        margin-bottom: 0;
    }

.landmark-with-image .landmark-content p {
    margin-bottom: 15px;
}

.landmark-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.landmark-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.landmark-image-wrapper:hover .landmark-image {
    transform: scale(1.05);
}

/* ACRA Section */
.acra-section {
    position: relative;
}

.acra-header {
    background: var(--primary-red);
    padding: 60px 0;
    position: relative;
}

.acra-title {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

.acra-content {
    background: var(--white);
    padding: 60px 0;
}

.acra-subtitle {
    color: var(--primary-red);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.acra-description {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.8;
    max-width: 900px;
}

/* Organising Committee Section */
.committee-section {
    position: relative;
}

.committee-header {
    background: var(--primary-red);
    padding: 60px 0;
    position: relative;
    /* border-bottom: 2px solid var(--primary-red); */
}

.committee-title {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

.committee-content {
    background: var(--white);
    padding: 60px 0;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.committee-block {
    padding: 30px;
    background: var(--gray-light);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

    .committee-block:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }

.committee-block-title {
    color: var(--primary-red);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.committee-members {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.member {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.member-name {
    color: var(--gray-dark);
    font-size: 15px;
    font-weight: 600;
}

.member-role {
    color: var(--gray-medium);
    font-size: 13px;
    line-height: 1.4;
}

.member-dept {
    color: var(--gray-medium);
    font-size: 12px;
    font-style: italic;
}

/* Past Forums Section */
.past-forums-section {
    position: relative;
}

.past-forums-header {
    background: var(--primary-red);
    padding: 60px 0;
    position: relative;
    border-bottom: 2px solid var(--primary-red);
}

.past-forums-title {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

.past-forums-content {
    background: var(--white);
    padding: 60px 0;
}

.past-forum-item {
    margin-bottom: 60px;
}

    .past-forum-item:last-child {
        margin-bottom: 0;
    }

.past-forum-year {
    color: var(--primary-red);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.past-forum-desc {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.8;
}

    .past-forum-desc p {
        margin-bottom: 15px;
    }

        .past-forum-desc p:last-child {
            margin-bottom: 0;
        }

.past-forum-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

    .past-forum-link:hover {
        text-decoration: underline;
    }

.past-forum-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.past-forum-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.past-forum-image-wrapper:hover .past-forum-image {
    transform: scale(1.05);
}

/* ============================================
   ABOUT PAGE RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 52px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .committee-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .logo-showcase {
        gap: 30px;
    }

    .logo-color-img,
    .logo-black-img {
        height: 60px;
    }

    .acra-title,
    .committee-title,
    .past-forums-title {
        font-size: 32px;
    }

    .section-arrow-right {
        font-size: 22px;
    }

    .landmark-title {
        font-size: 22px;
    }

    .past-forum-year {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-content {
        padding-bottom: 80px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .conference-intro {
        font-size: 14px;
    }

    .venue-info {
        padding: 20px;
    }

    .logo-section-title,
    .acra-subtitle {
        font-size: 24px;
    }

    .acra-title,
    .committee-title,
    .past-forums-title {
        font-size: 26px;
    }

    .section-arrow-right {
        font-size: 18px;
    }

    .landmark-title {
        font-size: 20px;
    }

    .committee-block {
        padding: 20px;
    }

    .committee-block-title {
        font-size: 18px;
    }

    .past-forum-year {
        font-size: 24px;
    }

    .landmark-image-wrapper {
        margin-top: 30px;
    }

    .past-forum-image-wrapper {
        margin-top: 30px;
    }
}

/* ============================================
   ABOUT SINGAPORE PAGE STYLES
   ============================================ */

/* Singapore Hero Section */
.singapore-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.singapore-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.singapore-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

.singapore-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(186, 23, 31, 0.3) 60%, rgba(186, 23, 31, 0.7) 100%);
    z-index: 1;
}

/* Singapore About Section - Red Background */
.singapore-about-section {
    background: var(--primary-red);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .singapore-about-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 60%;
        height: 200%;
        background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
        animation: aboutGlow 8s ease-in-out infinite alternate;
    }

.singapore-about-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.singapore-about-content {
    position: relative;
    z-index: 1;
}

    .singapore-about-content p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

        .singapore-about-content p:last-child {
            margin-bottom: 0;
        }

/* Singapore Panorama Section */
.singapore-panorama-section {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.singapore-panorama-wrapper {
    width: 100%;
    position: relative;
}

.singapore-panorama-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Singapore Facts Section */
.singapore-facts-section {
    background: var(--white);
    padding: 100px 0;
    position: relative;
}

.facts-title {
    color: var(--primary-red);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.facts-content p {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

    .facts-content p:last-child {
        margin-bottom: 0;
    }

.facts-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

    .facts-image-wrapper:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    }

.facts-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.facts-image-wrapper:hover .facts-image {
    transform: scale(1.05);
}

/* ============================================
   ABOUT SINGAPORE PAGE RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .singapore-about-title {
        font-size: 38px;
    }

    .singapore-about-section {
        padding: 80px 0;
    }

    .singapore-facts-section {
        padding: 80px 0;
    }

    .facts-title {
        font-size: 32px;
    }

    .facts-image-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .singapore-about-title {
        font-size: 28px;
    }

    .singapore-about-section {
        padding: 60px 0;
    }

    .singapore-facts-section {
        padding: 60px 0;
    }

    .facts-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .singapore-about-content p,
    .facts-content p {
        font-size: 14px;
    }

    .facts-image-wrapper {
        margin-top: 30px;
        border-radius: 16px;
    }
}

/* ============================================
   THEMES PAGE STYLES
   ============================================ */

/* Themes Hero Section */
.themes-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.themes-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.themes-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

.themes-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(186, 23, 31, 0.2) 0%, rgba(186, 23, 31, 0.5) 40%, rgba(186, 23, 31, 0.85) 100%);
    z-index: 1;
}

.themes-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 120px;
    width: 100%;
}

.themes-hero-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.themes-hero-title {
    color: var(--white);
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.themes-hero-theme {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.themes-hero-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
}

.btn-explore-agenda {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
    display: inline-block;
    text-decoration: none;
}

    .btn-explore-agenda:hover {
        background: var(--white);
        color: var(--primary-red);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

/* Days Section */
.days-section {
    background: var(--white);
}

.day-accordion-item {
    border-bottom: 1px solid rgba(186, 23, 31, 0.1);
}

    .day-accordion-item:last-child {
        border-bottom: none;
    }

/* Day Header — styled to match about-crf section headers */
.day-header {
    background: var(--primary-red);
    padding: 60px 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.day-title {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

.day-toggle-icon {
    flex-shrink: 0;
    color: var(--white);
    font-size: 28px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .day-toggle-icon i {
        display: block;
        animation: bounceIcon 2s infinite;
    }

.day-header.active .day-toggle-icon i {
    animation: none;
    transform: rotate(180deg);
}

.day-toggle-icon:hover {
    opacity: 0.75;
}

/* Day Content */
.day-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

    .day-content.open {
        max-height: 2000px;
    }

.day-content-inner {
    padding: 50px 0;
}

/* Theme Block */
.theme-block {
    margin-bottom: 40px;
}

    .theme-block:last-child {
        margin-bottom: 0;
    }

.theme-block-title {
    color: var(--primary-red);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.theme-block-desc {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    max-width: 900px;
}

/* ============================================
   THEMES PAGE RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .themes-hero-title {
        font-size: 52px;
    }

    .themes-hero-theme {
        font-size: 22px;
    }

    .day-title {
        font-size: 32px;
    }

    .day-toggle-icon {
        font-size: 22px;
    }

    .theme-block-title {
        font-size: 20px;
    }

    .day-content-inner {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .themes-hero-title {
        font-size: 36px;
    }

    .themes-hero-theme {
        font-size: 18px;
    }

    .themes-hero-content {
        padding-bottom: 80px;
    }

    .themes-hero-desc {
        font-size: 14px;
    }

    .day-title {
        font-size: 26px;
    }

    .day-toggle-icon {
        font-size: 18px;
    }

    .day-header {
        padding: 40px 0;
    }

    .theme-block-title {
        font-size: 18px;
    }

    .theme-block-desc {
        font-size: 14px;
    }

    .day-content-inner {
        padding: 30px 0;
    }

    .theme-block {
        margin-bottom: 30px;
    }
}
/* ============================================
   HERO VIDEO BACKGROUND
   Add this block to the bottom of style.css
   ============================================ */

/* Lock the hero-bg container to full viewport */
.hero-section .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* Force video to fill the full viewport, ignoring intrinsic size */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    animation: none;
    display: block;
}

/* Reduce motion — hide video, poster image shows through */
@media (prefers-reduced-motion: reduce) {
    .hero-bg-video {
        display: none;
    }
}

/* Mobile fallback */
@media (max-width: 480px) {
    .hero-bg-video {
        display: none;
    }
}
/* ============================================
   AGENDA PAGE STYLES
   ============================================ */

/* Agenda Hero Section */
.agenda-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.agenda-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.agenda-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

.agenda-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(186, 23, 31, 0.2) 0%, rgba(186, 23, 31, 0.5) 40%, rgba(186, 23, 31, 0.85) 100%);
    z-index: 1;
}

.agenda-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 120px;
    width: 100%;
}

.agenda-hero-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.agenda-hero-title {
    color: var(--white);
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.agenda-hero-theme {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.agenda-hero-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
}

/* Day Tabs Section */
.day-tabs-section {
    background: var(--primary-red);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.day-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
}

.day-tab {
    flex: 1;
    max-width: 200px;
    padding: 20px 15px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

    .day-tab:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }

    .day-tab.active {
        background: var(--white);
        color: var(--primary-red);
    }

.day-name {
    font-size: 18px;
    font-weight: 700;
}

.day-date {
    font-size: 13px;
    font-weight: 400;
}

/* Agenda Content Section */
.agenda-content-section {
    background: var(--white);
    padding: 60px 0 100px;
    min-height: 600px;
}

.agenda-day-title {
    color: var(--primary-red);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(186, 23, 31, 0.1);
}

.day-content-panel {
    display: none;
}

    .day-content-panel.active {
        display: block;
        animation: fadeIn 0.4s ease;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Agenda Items */
.agenda-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.agenda-item {
    padding: 35px 40px;
    border: 1px solid rgba(186, 23, 31, 0.2);
    border-bottom: none;
    transition: var(--transition-smooth);
}

    .agenda-item:last-child {
        border-bottom: 1px solid rgba(186, 23, 31, 0.2);
    }

    .agenda-item:hover {
        background: rgba(186, 23, 31, 0.02);
    }

.agenda-item-time {
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.agenda-item-type {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.agenda-item-venue {
    color: var(--gray-medium);
    font-size: 13px;
    margin-bottom: 12px;
}

.agenda-item-title {
    color: var(--primary-red);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Agenda Speakers */
.agenda-item-speakers {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 25px;
}

.agenda-speaker {
    display: flex;
    align-items: center;
    gap: 15px;
}

.agenda-speaker-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.agenda-speaker-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.agenda-speaker-name {
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 600;
}

.agenda-speaker-role {
    color: var(--gray-medium);
    font-size: 12px;
    line-height: 1.4;
    max-width: 280px;
}

/* More Info Button */
.btn-more-info {
    display: inline-block;
    background: transparent;
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 13px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

    .btn-more-info:hover {
        background: var(--primary-red);
        color: var(--white);
        transform: translateY(-2px);
    }

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(128, 128, 128, 0.5);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

    .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-to-top:hover {
        background: var(--primary-red);
        transform: translateY(-3px);
    }

/* ============================================
   MORE INFORMATION PAGE STYLES
   ============================================ */

.more-info-section {
    padding: 120px 0 60px;
    background: var(--white);
}

.back-to-sessions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}

    .back-to-sessions:hover {
        color: var(--primary-red-dark);
        transform: translateX(-5px);
    }

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.event-title {
    color: var(--primary-red);
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    max-width: 70%;
}

.btn-add-calendar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

    .btn-add-calendar:hover {
        background: var(--primary-red);
        color: var(--white);
    }

.event-description {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.event-info-card {
    background: var(--white);
    border: 1px solid rgba(186, 23, 31, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.info-card-item {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(186, 23, 31, 0.1);
}

    .info-card-item:last-child {
        border-bottom: none;
    }

.info-label {
    display: block;
    color: var(--gray-medium);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.info-value {
    display: block;
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.share-section {
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-light);
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 16px;
}

    .share-btn:hover {
        background: var(--primary-red);
        color: var(--white);
        transform: translateY(-3px);
    }

.event-agenda-section {
    background: var(--primary-red);
    padding: 60px 0;
}

.event-agenda-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.event-agenda-item {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

    .event-agenda-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

.event-agenda-title {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.event-agenda-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.event-speakers-section {
    background: var(--white);
    padding: 80px 0;
}

.event-speakers-title {
    color: var(--primary-red);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.event-speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.event-speaker-card {
    text-align: center;
}

.event-speaker-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.event-speaker-card:hover .event-speaker-img {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(186, 23, 31, 0.2);
}

.event-speaker-name {
    color: var(--gray-dark);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.event-speaker-role {
    color: var(--gray-medium);
    font-size: 13px;
    line-height: 1.5;
}

/* ============================================
   AGENDA & MORE INFO RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .agenda-hero-title {
        font-size: 52px;
    }

    .agenda-hero-theme {
        font-size: 22px;
    }

    .day-tabs {
        flex-wrap: wrap;
    }

    .day-tab {
        flex: 1 1 calc(33.333% - 10px);
        max-width: none;
        padding: 15px 10px;
    }

    .agenda-item {
        padding: 25px;
    }

    .agenda-item-title {
        font-size: 20px;
    }

    .event-title {
        font-size: 36px;
        max-width: 100%;
    }

    .event-speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-speaker-img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 767px) {
    .agenda-hero-title {
        font-size: 36px;
    }

    .agenda-hero-theme {
        font-size: 18px;
    }

    .agenda-hero-content {
        padding-bottom: 80px;
    }

    .day-tabs-section {
        position: relative;
        top: 0;
    }

    .day-tab {
        flex: 1 1 calc(50% - 5px);
    }

    .agenda-item {
        padding: 20px;
    }

    .agenda-item-title {
        font-size: 18px;
    }

    .agenda-item-speakers {
        flex-direction: column;
        gap: 20px;
    }

    .agenda-speaker-img {
        width: 60px;
        height: 60px;
    }

    .more-info-section {
        padding: 100px 0 40px;
    }

    .event-header {
        flex-direction: column;
    }

    .event-title {
        font-size: 28px;
    }

    .event-info-card {
        margin-top: 30px;
    }

    .event-speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .event-speaker-img {
        width: 100px;
        height: 100px;
    }

    .event-speakers-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .day-tab {
        flex: 1 1 100%;
    }

    .event-speakers-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PROGRAMME SUB-PAGES (Workshops, Networking & Social Events)
   ============================================ */

/* Shorter hero shared by sub-programme pages */
.programme-hero-section {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.programme-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.programme-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

.programme-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(186, 23, 31, 0.25) 0%, rgba(186, 23, 31, 0.55) 50%, rgba(186, 23, 31, 0.80) 100%);
    z-index: 1;
}

.programme-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
    width: 100%;
}

.programme-hero-title {
    color: var(--white);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 30px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

/* Download Conference Guide Button */
.btn-download-guide {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

    .btn-download-guide:hover {
        background: var(--white);
        color: var(--primary-red);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .btn-download-guide i {
        font-size: 13px;
    }

/* Programme Sub-Pages Responsive */
@media (max-width: 991px) {
    .programme-hero-section {
        min-height: 50vh;
    }

    .programme-hero-title {
        font-size: 44px;
    }
}

@media (max-width: 767px) {
    .programme-hero-section {
        min-height: 45vh;
    }

    .programme-hero-title {
        font-size: 32px;
    }

    .programme-hero-content {
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .programme-hero-title {
        font-size: 26px;
    }
}


/* ============================================
   SPEAKERS PAGE
   ============================================ */

/* — Hero reuses .programme-hero-section styles — */
.speakers-page-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--gray-dark);
}

.speakers-page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.speakers-page-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.speakers-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0,0,0,0.25) 0%, rgba(186,23,31,0.55) 100% );
}

.speakers-page-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 70px;
}

.speakers-page-hero-title {
    font-size: 62px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
}

/* — Listing grid — */
.speakers-listing-section {
    padding: 80px 0 100px;
    background: var(--white);
}

.speakers-listing-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--gray-dark);
    text-align: center;
    margin-bottom: 6rem;
    margin-top: 8rem;
    letter-spacing: -0.5px;
}

    .speakers-listing-title span {
        color: var(--primary-red);
    }

.speakers-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 30px;
}

/* — Individual Speaker Card — */
.speaker-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

    .speaker-card:hover {
        color: inherit;
        text-decoration: none;
        transform: translateY(-6px);
    }

.speaker-card-photo-wrap {
    position: relative;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: var(--primary-red);
    /* overflow: hidden; */
    margin-bottom: 22px;
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(186,23,31,0.25);
    transition: var(--transition-smooth);
}

.speaker-card:hover .speaker-card-photo-wrap {
    box-shadow: 0 16px 50px rgba(186,23,31,0.40);
}

.speaker-card-photo {
    width: 106%;
    height: 112%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    transition: transform 0.5s ease;
    margin-left: -3%;
    margin-top: -9%;
}

.speaker-card:hover .speaker-card-photo {
    /* transform: scale(1.05); */
}

.speakers-grid-row1 .speaker-card-photo-wrap {
    width: 280px;
    height: 280px;
}

.speaker-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.speaker-card-title {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-medium);
    line-height: 1.5;
    max-width: 220px;
}


/* ============================================
   SPEAKER DETAIL PAGE
   ============================================ */

.speaker-detail-section {
    padding: 130px 0 80px;
    background: var(--white);
}

/* Back link */
.speaker-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-red);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 60px;
    transition: var(--transition-smooth);
    letter-spacing: 0.2px;
}

    .speaker-back-link:hover {
        color: var(--primary-red-dark);
        text-decoration: none;
        gap: 10px;
    }

/* Profile block */
.speaker-profile-block {
    display: flex;
    align-items: center;
    gap: 52px;
    margin-bottom: 60px;
}

.speaker-detail-photo-wrap {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: var(--primary-red);
    /* overflow: hidden; */
    flex-shrink: 0;
    box-shadow: 0 12px 40px rgba(186,23,31,0.30);
}

.speaker-detail-photo {
    width: 106%;
    height: 112%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    margin-left: -3%;
    margin-top: -9%;
}

.speaker-profile-info {
    flex: 1;
}

.speaker-detail-name {
    font-size: 34px;
    font-weight: 800;
    color: var(--gray-dark);
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.speaker-detail-role {
    font-size: 17px;
    font-weight: 400;
    color: var(--gray-medium);
    line-height: 1.6;
    max-width: 500px;
}

/* Bio block */
.speaker-bio-block {
    margin-bottom: 60px;
}

.speaker-bio-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
}

.speaker-bio-text {
    font-size: 15px;
    line-height: 1.85;
    color: var(--gray-dark);
    max-width: 860px;
}

/* Sessions block */
.speaker-sessions-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.speaker-session-card {
    border: 1.5px solid #E0E0E0;
    border-radius: 8px;
    padding: 32px 36px;
    transition: var(--transition-smooth);
}

    .speaker-session-card:hover {
        border-color: var(--primary-red);
        box-shadow: 0 8px 30px rgba(186,23,31,0.08);
    }

.session-card-datetime {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 12px;
}

.session-card-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.session-badge-type {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 20px;
}

.session-badge-venue {
    font-size: 13px;
    color: var(--gray-medium);
    font-weight: 500;
}

.session-card-title-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-red);
    margin: 14px 0 24px;
    line-height: 1.3;
}

.session-card-speakers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.session-speaker-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 260px;
}

.session-speaker-thumb {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--primary-red);
    /* overflow: hidden; */
    flex-shrink: 0;
}

    .session-speaker-thumb img {
        width: 106%;
        height: 112%;
        object-fit: cover;
        object-position: center bottom;
        display: block;
        margin-left: -3%;
        margin-top: -9%;
    }

.session-speaker-info-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 3px;
}

.session-speaker-info-role {
    font-size: 12px;
    color: var(--gray-medium);
    line-height: 1.4;
}

/* Detail page loading / error state */
.speaker-detail-loading {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-medium);
    font-size: 16px;
}

.speaker-detail-not-found {
    text-align: center;
    padding: 80px 20px;
}

    .speaker-detail-not-found h2 {
        font-size: 28px;
        font-weight: 700;
        color: var(--gray-dark);
        margin-bottom: 16px;
    }

/* ============================================
   SPEAKERS PAGE — RESPONSIVE
   ============================================ */

@media (max-width: 1199px) {
    .speakers-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .speaker-card-photo-wrap {
        width: 185px;
        height: 185px;
    }
}

@media (max-width: 991px) {
    .speakers-page-hero-title {
        font-size: 44px;
    }

    .speakers-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    .speaker-profile-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .speaker-detail-photo-wrap {
        width: 200px;
        height: 200px;
    }

    .speaker-detail-name {
        font-size: 28px;
    }

    .session-card-speakers-list {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .speakers-page-hero-title {
        font-size: 34px;
    }

    .speakers-listing-section {
        padding: 60px 0 80px;
    }

    .speakers-listing-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .speaker-card-photo-wrap {
        width: 160px;
        height: 160px;
    }

    .speaker-detail-section {
        padding: 100px 0 60px;
    }

    .speaker-session-card {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .speakers-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 16px;
    }

    .speaker-card-photo-wrap {
        width: 130px;
        height: 130px;
    }

    .speaker-card-name {
        font-size: 14px;
    }

    .speaker-card-title {
        font-size: 12px;
    }
}


/* ============================================
   SPEAKERS PAGE — REVISED LAYOUT (v2)
   Row 1: 3-col centred | Rows 2-4: 4-col
   ============================================ */

/* Push section down enough for the red fixed navbar */
.speakers-listing-no-hero {
    padding-top: 120px;
}

/* --- Row 1 wrapper: 3 columns, centred --- */
.speakers-grid-row1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
    /* max-width: 900px;           /* keeps the 3 cards tighter & truly centred */
    margin: 0 auto 60px auto;
}

/* --- Row 2-4 wrapper: 4 columns, full width --- */
.speakers-grid-row2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 30px;
}

/* --- Responsive overrides --- */
@media (max-width: 1199px) {
    .speakers-grid-row1 {
        max-width: 780px;
    }

    .speakers-grid-row2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .speakers-grid-row1,
    .speakers-grid-row2 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 40px 24px;
    }
}

@media (max-width: 575px) {
    .speakers-grid-row1,
    .speakers-grid-row2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 16px;
    }
}

/* ============================================
   PLAN YOUR VISIT PAGE STYLES
   ============================================ */

/* Plan Your Visit Hero Section */
.plan-visit-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.plan-visit-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.plan-visit-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

.plan-visit-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(186, 23, 31, 0.3) 50%, rgba(186, 23, 31, 0.7) 100%);
    z-index: 1;
}

.plan-visit-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 100px;
    width: 100%;
}

.plan-visit-hero-title {
    color: var(--white);
    font-size: 72px;
    font-weight: 700;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

/* Section Title Styles */
.section-title-red {
    color: var(--primary-red);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title-white {
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Conference Venue Section */
.conference-venue-section {
    background: var(--white);
    padding: 100px 0;
}

.venue-subtitle {
    color: var(--gray-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
}

.venue-description {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.venue-address {
    color: var(--gray-dark);
    font-size: 15px;
    margin-bottom: 0;
}

    .venue-address strong {
        font-weight: 600;
    }

.venue-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.venue-map-container {
    position: relative;
    width: 100%;
}

    .venue-map-container iframe {
        display: block;
    }

/* Accommodation Section */
.accommodation-section {
    background: var(--white);
    padding: 80px 0 100px;
}

.accommodation-subtitle {
    color: var(--gray-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.accommodation-description {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 40px;
}

/* Accommodation Carousel */
.accommodation-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.accommodation-carousel {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}

.accommodation-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accommodation-slide {
    flex: 0 0 33.333%;
    padding: 0 10px;
}

.accommodation-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.accommodation-slide:hover .accommodation-img {
    transform: scale(1.03);
}

.carousel-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .carousel-nav:hover {
        background: var(--primary-red);
        color: var(--white);
        transform: scale(1.1);
    }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(186, 23, 31, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

    .carousel-dot.active {
        background: var(--primary-red);
        transform: scale(1.2);
    }

    .carousel-dot:hover {
        background: var(--primary-red);
    }

/* Visa Section */
.visa-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.visa-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.visa-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.4) 100%);
    z-index: -1;
}

.visa-content {
    max-width: 550px;
}

.visa-description {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.visa-contact {
    color: var(--gray-dark);
    font-size: 14px;
    line-height: 1.6;
}

    .visa-contact strong {
        display: block;
        margin-bottom: 8px;
    }

.visa-email {
    /* color: var(--primary-red);
    text-decoration: none; */
    color: var(--gray-dark);
    font-weight: 500;
    transition: var(--transition-smooth);
}

    .visa-email:hover {
        color: var(--primary-red-dark);
        text-decoration: underline;
    }

/* Getting Around Singapore Section */
.getting-around-section {
    background: var(--primary-red);
    padding: 80px 0;
}

.getting-around-content {
    max-width: 700px;
}

.getting-around-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.8;
}

.text-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: 500;
    transition: var(--transition-smooth);
}

    .text-link:hover {
        color: rgba(255, 255, 255, 0.8);
    }

/* FAQ Section */
.faq-section {
    background: var(--white);
    padding: 100px 0;
}

.faq-form-wrapper {
    margin-top: 40px;
}

.faq-form .form-group {
    margin-bottom: 20px;
}

.faq-form .form-control {
    border: 1px solid rgba(186, 23, 31, 0.2);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 14px;
    transition: var(--transition-smooth);
    background: var(--white);
}

    .faq-form .form-control:focus {
        border-color: var(--primary-red);
        box-shadow: 0 0 0 3px rgba(186, 23, 31, 0.1);
        outline: none;
    }

    .faq-form .form-control::placeholder {
        color: var(--gray-medium);
    }

.faq-form textarea.form-control {
    resize: vertical;
    min-height: 193px;
}

.btn-submit {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
    cursor: pointer;
    margin: auto;
    margin-top: 1rem;
    display: block;
}

    .btn-submit:hover {
        background: var(--primary-red-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(186, 23, 31, 0.3);
    }

.faq-image-wrapper {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.faq-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   PLAN YOUR VISIT PAGE RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .plan-visit-hero-title {
        font-size: 52px;
    }

    .conference-venue-section {
        padding: 80px 0;
    }

    .venue-map-wrapper {
        margin-top: 40px;
    }

    .accommodation-slide {
        flex: 0 0 50%;
    }

    .visa-section {
        padding: 80px 0;
    }

    .visa-overlay {
        background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 70%, rgba(255, 255, 255, 0.7) 100%);
    }

    .faq-image-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .plan-visit-hero-title {
        font-size: 36px;
    }

    .plan-visit-hero-content {
        padding-bottom: 80px;
    }

    .section-title-red,
    .section-title-white {
        font-size: 26px;
    }

    .venue-subtitle,
    .accommodation-subtitle {
        font-size: 18px;
    }

    .accommodation-slide {
        flex: 0 0 100%;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .accommodation-img {
        height: 240px;
    }

    .visa-section {
        padding: 60px 0;
    }

    .visa-overlay {
        background: rgba(255, 255, 255, 0.92);
    }

    .getting-around-section {
        padding: 60px 0;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-form-wrapper {
        margin-top: 30px;
    }
}

/* ============================================
   PLAN YOUR VISIT — ADDITIONAL STYLES
   Append these to the bottom of style.css
   ============================================ */

/* ------------------------------------------
   Navbar transparent at top
   ------------------------------------------ */
#mainNav.at-top {
    background: transparent !important;
    box-shadow: none !important;
}

/* ------------------------------------------
   Bootstrap Accommodation Carousel
   3 images visible per slide
   ------------------------------------------ */

.accommodation-bs-carousel {
    margin-bottom: 48px; /* room for dots below */
}

/* Row that holds all 3 images side by side */
.accommodation-slide-row {
    display: flex;
    gap: 16px;
}

    /* Each image takes equal 1/3 width */
    .accommodation-slide-row .accommodation-img {
        flex: 1;
        width: 0; /* flex overrides, prevents overflow */
        height: 280px;
        object-fit: cover;
        border-radius: 12px;
        display: block;
    }

/* Prev / Next buttons — outside the carousel, match old style */
.accommodation-prev,
.accommodation-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent !important;
    border: 2px solid var(--primary-red) !important;
    color: var(--primary-red) !important;
    opacity: 1 !important;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.accommodation-prev {
    left: -5rem;
}

.accommodation-next {
    right: -5rem;
}

    .accommodation-prev:hover,
    .accommodation-next:hover {
        background: var(--primary-red) !important;
        color: var(--white) !important;
        transform: translateY(-50%) scale(1.1);
    }

    /* Hide Bootstrap default arrow icons */
    .accommodation-prev .carousel-control-prev-icon,
    .accommodation-next .carousel-control-next-icon {
        display: none;
    }

/* Dot indicators */
.accommodation-indicators {
    bottom: -40px;
    margin: 0;
    gap: 8px;
}

    .accommodation-indicators [data-bs-slide-to] {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(186, 23, 31, 0.3);
        border: none;
        opacity: 1;
        transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
        flex-shrink: 0;
    }

        .accommodation-indicators [data-bs-slide-to].active {
            width: 24px;
            border-radius: 5px;
            background: var(--primary-red);
        }

/* Responsive */
@media (max-width: 991px) {
    .accommodation-prev {
        left: -24px;
    }

    .accommodation-next {
        right: -24px;
    }
}

@media (max-width: 767px) {
    .accommodation-slide-row {
        gap: 8px;
    }

        .accommodation-slide-row .accommodation-img {
            height: 180px;
        }

    .accommodation-prev {
        left: 4px;
    }

    .accommodation-next {
        right: 4px;
    }
}

/* ============================================
   CRF Singapore 2026 — Experience Singapore
   Separate stylesheet: css/experience-singapore.css
   Prefix: exp-sg-
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.exp-sg-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.exp-sg-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.exp-sg-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.exp-sg-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(186, 23, 31, 0.15) 0%, rgba(186, 23, 31, 0.45) 55%, rgba(140, 10, 16, 0.75) 100% );
}

.exp-sg-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
}

.exp-sg-hero-title {
    color: #ffffff;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
    margin: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.exp-sg-about {
    background: #ffffff;
    padding: 80px 0 60px;
}

/* ============================================
   SHARED SECTION TITLE
   ============================================ */
.exp-sg-section-title {
    color: var(--primary-red);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.2;
}

/* ============================================
   ABOUT TEXT
   ============================================ */
.exp-sg-about-text {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.85;
    max-width: 860px;
}

/* ============================================
   CATEGORY SECTIONS (Attractions / Culture / Things to do)
   ============================================ */
.exp-sg-category {
    background: #ffffff;
    padding: 20px 0 70px;
}

.exp-sg-category--last {
    padding-bottom: 100px;
}

/* ============================================
   ATTRACTION CARDS
   ============================================ */
.exp-sg-cards-row {
    margin-top: 10px;
}

.exp-sg-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    /* lift on hover */
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

    .exp-sg-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
    }

/* --- Image wrapper & image --- */
.exp-sg-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.exp-sg-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.exp-sg-card:hover .exp-sg-card-img {
    transform: scale(1.06);
}

/* --- Gradient overlay inside image (always visible) --- */
.exp-sg-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, transparent 40%, rgba(0, 0, 0, 0.55) 100% );
    pointer-events: none;
}

/* --- Label bar at the bottom of the card --- */
.exp-sg-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 20px 16px;
    z-index: 2;
}

    .exp-sg-card-label span {
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.2px;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
        display: block;
        line-height: 1.3;
    }

/* ============================================
   FADE-IN ANIMATION (reuse main.js's .visible)
   ============================================ */
.exp-sg-hero-title.fade-in-up,
.exp-sg-about .fade-in-up,
.exp-sg-category .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

    .exp-sg-hero-title.fade-in-up.visible,
    .exp-sg-about .fade-in-up.visible,
    .exp-sg-category .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .exp-sg-hero {
        height: 360px;
    }

    .exp-sg-hero-title {
        font-size: 40px;
    }

    .exp-sg-section-title {
        font-size: 26px;
    }

    .exp-sg-about {
        padding: 60px 0 50px;
    }

    .exp-sg-category {
        padding: 20px 0 55px;
    }

    .exp-sg-category--last {
        padding-bottom: 75px;
    }
}

@media (max-width: 767px) {
    .exp-sg-hero {
        height: 280px;
    }

    .exp-sg-hero-title {
        font-size: 30px;
    }

    .exp-sg-hero-content {
        padding-bottom: 35px;
    }

    .exp-sg-about {
        padding: 50px 0 40px;
    }

    .exp-sg-category {
        padding: 15px 0 45px;
    }

    .exp-sg-category--last {
        padding-bottom: 60px;
    }

    .exp-sg-section-title {
        font-size: 22px;
    }

    .exp-sg-card-label span {
        font-size: 14px;
    }

    /* On mobile, all cards stack to single column */
    .exp-sg-cards-row .col-md-6 {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

.gallery-section {
    padding: 140px 0 80px;
    background: var(--white);
    min-height: 100vh;
}

.gallery-title {
    color: var(--primary-red);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
}

.gallery-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    aspect-ratio: 1 / 1;
}

    .gallery-image-wrapper:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gallery-image-wrapper:hover .gallery-image {
    transform: scale(1.08);
}

.gallery-view-more {
    text-align: center;
    padding: 20px 0;
}

.view-more-link {
    color: var(--primary-red);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

    .view-more-link:hover {
        color: var(--primary-red-dark);
        gap: 10px;
    }

/* ============================================
   RESOURCES / NEWS PAGE STYLES
   ============================================ */

.resources-section {
    padding: 140px 0 80px;
    background: var(--white);
    min-height: 100vh;
}

.news-article {
    margin-bottom: 80px;
}

    .news-article:last-child {
        margin-bottom: 0;
    }

.news-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: var(--transition-smooth);
}

    .news-image-wrapper:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    }

.news-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.news-image-wrapper:hover .news-image {
    transform: scale(1.05);
}

.news-content {
    padding-left: 30px;
}

.news-title {
    color: var(--primary-red);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.news-read-more {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

    .news-read-more:hover {
        color: var(--primary-red-dark);
        gap: 10px;
    }

/* ============================================
   GALLERY & RESOURCES RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .gallery-section {
        padding: 120px 0 60px;
    }

    .gallery-title {
        font-size: 38px;
        margin-bottom: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .resources-section {
        padding: 120px 0 60px;
    }

    .news-article {
        margin-bottom: 60px;
    }

    .news-content {
        padding-left: 0;
        padding-top: 30px;
    }

    .news-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 100px 0 50px;
    }

    .gallery-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-image-wrapper {
        aspect-ratio: 16 / 10;
    }

    .resources-section {
        padding: 100px 0 50px;
    }

    .news-article {
        margin-bottom: 50px;
    }

    .news-image-wrapper {
        border-radius: 12px;
    }

    .news-content {
        padding-top: 25px;
    }

    .news-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

.hidden {
    display: none;
}

/* Registration Page Specific Styles */
.registration-section {
    padding: 120px 0 80px;
    background: var(--white);
    min-height: 100vh;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 40px;
    transition: var(--transition-smooth);
}

    .back-link:hover {
        color: var(--primary-red-dark);
        transform: translateX(-5px);
    }

.registration-header {
    margin-bottom: 50px;
}

.registration-title {
    color: var(--gray-dark);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.registration-subtitle {
    color: var(--gray-medium);
    font-size: 15px;
    font-weight: 400;
}

.section-divider {
    border: none;
    border-top: 2px solid var(--primary-red);
    margin: 30px 0 40px;
}

.delegate-info-title {
    color: var(--gray-dark);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
}

/* Form Styles */
.registration-form .form-label {
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

    .registration-form .form-label .required {
        color: var(--primary-red);
    }

.registration-form .form-control,
.registration-form .form-select {
    background-color: #E8E8E8;
    border: none;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 14px;
    color: var(--gray-dark);
    transition: var(--transition-smooth);
}

    .registration-form .form-control:focus,
    .registration-form .form-select:focus {
        background-color: #E0E0E0;
        box-shadow: 0 0 0 3px rgba(186, 23, 31, 0.15);
        outline: none;
    }

    .registration-form .form-control::placeholder {
        color: #999;
        font-size: 13px;
    }

.registration-form .form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
    padding-right: 45px;
    appearance: none;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 5px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

    .radio-item input[type="radio"] {
        width: 18px;
        height: 18px;
        accent-color: var(--primary-red);
        cursor: pointer;
    }

    .radio-item label {
        font-size: 14px;
        color: var(--gray-dark);
        cursor: pointer;
        margin-bottom: 0;
    }

/* Spouse Section */
.spouse-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(186, 23, 31, 0.1);
}

.spouse-section-title {
    color: var(--gray-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Submit Button */
.submit-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 16px 60px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 40px;
}

    .submit-btn:hover {
        background: var(--primary-red-dark);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(186, 23, 31, 0.3);
    }

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(128, 128, 128, 0.5);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

    .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-to-top:hover {
        background: var(--primary-red);
        transform: translateY(-3px);
    }

/* Responsive */
@media (max-width: 991px) {
    .registration-section {
        padding: 100px 0 60px;
    }

    .registration-title {
        font-size: 24px;
    }

    .delegate-info-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .registration-section {
        padding: 90px 0 50px;
    }

    .registration-title {
        font-size: 22px;
    }

    .delegate-info-title {
        font-size: 24px;
    }

    .radio-group {
        flex-direction: column;
        gap: 12px;
    }

    .submit-btn {
        width: 100%;
        padding: 16px 30px;
    }
}