/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

:root {
    --primary-color: #ff9800;
    --primary-dark: #e68900;
    --primary-light: #ffb84d;
    --primary-orange: #ff9800;
    --bg-dark-orange: #cc7a00;
    --bg-light-grey: #F3F4F6;
    --bg-lavender: #FFF4E6;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-white: #FFFFFF;
    --border-color: #E5E7EB;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light-grey);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #0d0d0d;
    color: var(--text-white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    height: 60px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Hide navbar when scrolling down, show when scrolling up */
.navbar.navbar--hidden {
    transform: translateY(-100%);
}

/* Profile (and other simplified-nav) pages: push main content below fixed navbar */
.profile-page main,
.cart-page main,
.checkout-page main {
    padding-top: 60px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.nav-toggle {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    margin-left: auto;
    border: none;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.nav-toggle-line {
    position: absolute;
    width: 22px;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease, bottom 0.25s ease;
}

.nav-toggle-line:nth-child(1) {
    top: 13px;
}

.nav-toggle-line:nth-child(2) {
    top: 19px;
}

.nav-toggle-line:nth-child(3) {
    top: 25px;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
}

.country-flag {
    font-size: 1.2rem;
    margin-left: 0.5rem;
}

.country-name {
    color: var(--text-white);
    font-size: 0.9rem;
    margin-left: 0.25rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu-logo {
    display: none;
}

.nav-menu-logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-menu li {
    position: relative;
    min-width: 0; /* allow shrink so multi-word menu text can wrap to 2 lines */
}

.nav-menu li a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: opacity 0.3s ease;
}

/* Multi-word menu items wrap to two lines; second line shows remaining words (no ellipsis) */
.nav-menu li a:not(.cart-toggle):not(.auth-btn) {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: normal;
    max-width: 22ch;
    line-height: 1.3;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}

.nav-menu li a:hover {
    opacity: 0.8;
}

/* Active nav item: highlight with main system color */
.nav-menu .nav-text-link.active,
.nav-menu .nav-category-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.nav-menu .nav-dropdown-trigger.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Hardcoded menus (Gallery, About BINA) - force two lines when more than one word */
.nav-menu li.nav-text-item {
    width: 5rem;
    min-width: 5rem;
    max-width: 5rem;
    flex-shrink: 0;
}

.nav-menu li.nav-text-item a.nav-text-link {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    width: 5rem;
    max-width: 5rem;
    box-sizing: border-box;
    white-space: normal !important;
    line-height: 1.3;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}

/* Career Spotlight @ Bina: two lines like event category names */
.nav-menu li.nav-text-item--full {
    width: auto;
    min-width: 0;
    max-width: none;
}
.nav-menu li.nav-text-item--full a.nav-text-link {
    width: auto;
    max-width: 26ch;
    text-align: center;
}

.nav-menu li a.nav-category-link {
    max-width: 26ch;
}

/* Event category group: use same gap as other nav items (e.g. Home to About) */
.nav-category-group {
    display: flex;
    align-items: center;
}

.nav-category-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-category-list li {
    min-width: 0;
    flex-shrink: 0;
}

/* Event category names: two lines split at word boundary (e.g. "Modular Asia" / "Forum") */
.nav-category-list .nav-category-link {
    display: block;
    white-space: normal;
    line-height: 1.3;
    text-align: center;
    max-width: 22ch;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--text-white);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 280px;
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
    max-height: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 500px;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
}

/* Ensure all dropdown menu items look identical */
.dropdown-menu li > *,
.dropdown-menu li > a,
.dropdown-menu li > form {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.dropdown-menu li form {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    border: none !important;
    background: none !important;
}

.dropdown-menu li form button {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
}

/* Unified styling for all dropdown menu items (links and buttons) - HIGH SPECIFICITY */
.dropdown-menu li .dropdown-menu-item,
.dropdown-menu li a.dropdown-menu-item,
.dropdown-menu li button.dropdown-menu-item,
.dropdown-menu li .dropdown-logout-btn,
.dropdown-menu li button.dropdown-logout-btn,
.dropdown-menu-item {
    display: block !important;
    padding: 0.75rem 1.25rem !important;
    color: var(--text-dark) !important;
    text-decoration: none !important;
    font: inherit !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    transition: all 0.2s ease !important;
    border-left: 3px solid transparent !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
    filter: none !important;
    background: none !important;
    background-color: transparent !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    outline: none !important;
    line-height: inherit !important;
}

/* Explicit button reset to match link styling */
.dropdown-menu li button.dropdown-menu-item,
.dropdown-menu li button.dropdown-logout-btn,
.dropdown-menu-item.dropdown-logout-btn {
    border: none !important;
    border-left: 3px solid transparent !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
    padding: 0.75rem 1.25rem !important;
    margin: 0 !important;
}

/* Hover/focus/active states - HIGH SPECIFICITY */
.dropdown-menu li .dropdown-menu-item:hover,
.dropdown-menu li a.dropdown-menu-item:hover,
.dropdown-menu li button.dropdown-menu-item:hover,
.dropdown-menu li .dropdown-logout-btn:hover,
.dropdown-menu li button.dropdown-logout-btn:hover,
.dropdown-menu-item:hover,
.dropdown-menu-item:focus,
.dropdown-menu-item:active,
.dropdown-menu li a.dropdown-menu-item:focus,
.dropdown-menu li a.dropdown-menu-item:active,
.dropdown-menu li button.dropdown-menu-item:focus,
.dropdown-menu li button.dropdown-menu-item:active,
.dropdown-menu li .dropdown-logout-btn:focus,
.dropdown-menu li .dropdown-logout-btn:active,
.dropdown-menu li button.dropdown-logout-btn:focus,
.dropdown-menu li button.dropdown-logout-btn:active {
    background: rgba(230, 126, 0, 0.08) !important;
    background-color: rgba(230, 126, 0, 0.08) !important;
    border-left-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    padding-left: 1.5rem !important;
    outline: none !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
}

/* Ensure the list item itself doesn't restrict width */
.dropdown-menu li:hover {
    width: 100%;
}

.dropdown-menu li a.active,
.dropdown-menu-item.active {
    background: rgba(230, 126, 0, 0.1) !important;
    border-left-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.nav-icon {
    position: relative;
}

.nav-icon > a,
.nav-icon > a:link,
.nav-icon > a:visited,
.nav-icon > a:hover,
.nav-icon > a:active {
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-white) !important;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Whiten cart glyph only — badge must not inherit parent filter or it inverts red to wrong color */
.nav-icon > a .bi {
    filter: brightness(0) invert(1);
}

.cart-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cart-toggle .cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #DC2626;
    color: #FFFFFF;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1;
    padding: 0 5px;
    white-space: nowrap;
    z-index: 10;
}

.nav-icon .language-menu {
    filter: none;
}

.language-menu {
    min-width: 160px;
    right: 0;
    left: auto;
}

.nav-auth {
    display: flex;
    margin-left: 1rem;
    align-items: center;
}

.auth-buttons-group {
    display: inline-flex;
    background: #2A2A2A;
    border-radius: 0.5rem;
    padding: 0.125rem;
    gap: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-white);
    background: #3A3A3A;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
    gap: 0.25rem;
    position: relative;
}

.auth-btn-login {
    border-radius: 0.375rem 0 0 0.375rem;
    padding-right: 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-btn-signup {
    border-radius: 0 0.375rem 0.375rem 0;
    padding-left: 1.25rem;
    padding-right: 1.5rem;
}

.auth-btn-account {
    border-radius: 0.375rem;
    padding: 0.5rem 1.5rem;
}

.auth-buttons-group .dropdown {
    position: relative;
    display: inline-block;
}

.auth-buttons-group .dropdown-menu {
    top: 100%;
    right: 0;
    left: auto;
    margin-top: 0.5rem;
    min-width: 200px;
    z-index: 1001;
}

/* Navbar About submenu dropdown */
.navbar .nav-dropdown {
    position: relative;
}

.nav-menu li.nav-text-item.nav-item--has-dropdown {
    width: auto;
    min-width: 0;
}

.navbar .nav-dropdown .nav-text-link {
    display: inline-flex;
    align-items: center;
    -webkit-line-clamp: unset;
}

.auth-btn:hover {
    background: #4A4A4A;
}

/* .dropdown-logout-btn styles are now included in the unified rule above */

.auth-btn:active {
    background: #2A2A2A;
}

.auth-btn .dropdown-arrow {
    font-size: 0.5rem;
    margin-left: 0.25rem;
    opacity: 0.9;
    line-height: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(230, 126, 0, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 0, 0.4);
}

.btn-text {
    background: transparent;
    color: var(--text-white);
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    opacity: 0.8;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Carousel Section */
.hero-carousel {
    position: relative;
    background: var(--bg-lavender);
    min-height: 400px;
    overflow: hidden;
    margin-bottom: 0;
    margin-top: 60px;
}

/* Hero Single (one image, no slides) - same dark/blur style as event hero */
.hero-single {
    position: relative;
    background: var(--bg-lavender);
    min-height: 400px;
    overflow: hidden;
    margin-bottom: 0;
    margin-top: 60px;
}

.hero-single .hero-banner-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: brightness(0.5);
}

.hero-single::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.hero-single-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.hero-single-logo {
    width: min(160px, 48vw);
    height: auto;
    margin: 0 0 1.25rem;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.hero-single-title {
    margin: 0 0 0.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .hero-single-title {
        font-size: 1.9rem;
        line-height: 1.2;
    }
}

.hero-single-meta {
    margin: 0 0 0.5rem;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.08em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.hero-single-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-single-meta-item .bi {
    font-size: 1.1em;
    color: var(--primary-color);
}

.hero-single-watch-trailer {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.75rem;
    padding: 0.55rem 1.35rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-single-watch-trailer:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-single-watch-trailer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #000;
    flex-shrink: 0;
}

.hero-single-watch-trailer-icon .bi {
    font-size: 0.75rem;
    margin-left: 2px;
}

.hero-single-social {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    display: flex;
    gap: 0.5rem;
    z-index: 1;
}

.hero-single-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-single-social-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
    transform: translateY(-2px);
}

.hero-single-social-btn .bi {
    font-size: 1.25rem;
}

/* Hero trailer video modal */
.hero-trailer-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.hero-trailer-modal-box {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #000;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

.hero-trailer-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.hero-trailer-modal-close:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

.hero-trailer-modal-video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.hero-trailer-modal-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.carousel-container {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
}

.hero-slides-wrapper {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 400px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Carousel Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav-prev {
    left: 1rem;
}

.carousel-nav-next {
    right: 1rem;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.hero-banner-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-event-info {
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.event-logo {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.event-tagline {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.hero-event-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    color: var(--text-dark);
}

.sun-icon {
    color: #F59E0B;
    font-size: 2rem;
    display: inline-block;
    margin: 0 0.25rem;
}

.event-details {
    margin-bottom: 0.75rem;
}

.event-date {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.event-venue {
    font-size: 0.875rem;
    color: var(--text-light);
}

.event-support {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.event-partners {
    margin: 0.5rem 0;
    font-weight: 600;
}

.media-partners {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

.dress-code-badge {
    display: inline-block;
    background: rgba(230, 126, 0, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 0.5rem;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
}

.hero-person-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 0;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3), inset 0 0 8px rgba(255, 255, 255, 0.1);
}

.carousel-btn::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
}

.carousel-btn-left::before {
    border-width: 6px 8px 6px 0;
    border-color: transparent rgba(255, 255, 255, 0.8) transparent transparent;
    margin-left: -2px;
}

.carousel-btn-right::before {
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.8);
    margin-right: -2px;
}

.carousel-btn:hover {
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:hover::before {
    border-color: transparent rgba(255, 255, 255, 1) transparent transparent;
}

.carousel-btn-right:hover::before {
    border-color: transparent transparent transparent rgba(255, 255, 255, 1);
}

.carousel-btn-left {
    left: 20px;
}

.carousel-btn-right {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
}

/* Plain hero (single background image, no carousel) - same dark effect as event show hero */
.hero-plain {
    margin-top: 60px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-lavender, #f8f6fc);
}

.hero-plain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&h=640&fit=crop&q=90');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.55);
}

.hero-plain::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.hero-plain-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
    width: 100%;
    text-align: center;
    padding-inline: 1rem;
}

@media (max-width: 768px) {
    .hero-plain {
        min-height: 280px;
    }
    .hero-plain-title {
        font-size: 2.25rem;
    }
}

/* About BINA Page */
.about-bina-content {
    padding: 3rem 0 4rem;
    background: var(--bg-light-grey);
}

.about-bina-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

/* IBS Home: single column, no image */
.ibs-home-layout {
    grid-template-columns: 1fr;
}

.ibs-home-content .about-bina-text {
    text-align: justify;
}

.ibs-home-content .about-bina-paragraph {
    text-align: justify;
}

/* NextGen @ Bina: single column, no image */
.nextgen-bina-page-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.nextgen-bina-main {
    min-width: 0;
}

/* Allow sticky to work: content section and container must not clip (no overflow hidden between sticky and viewport) */
.nextgen-bina-content,
.nextgen-bina-content .container,
.nextgen-bina-page-layout {
    overflow: visible;
}

.nextgen-bina-sidebar {
    align-self: start;
}

/* JS adds .is-sticky-fixed on scroll; unsticks when footer in view so sidebar never exceeds footer. No internal scroll. */
.nextgen-bina-sticky-wrap.is-sticky-fixed {
    position: fixed;
    z-index: 100;
    top: 5rem;
    overflow: visible;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.ma-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem 2rem 1.5rem 2rem;
    box-shadow: 0 2px 12px rgba(80, 80, 120, 0.04);
    color: #22223b;
    transition: all 0.3s ease;
}

.ma-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ma-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #22223b;
    margin: 0 0 1.5rem;
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 0.75rem;
}

.objectives-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.objectives-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    font-size: 1.08rem;
    transition: transform 0.3s ease;
}

.objectives-list li:last-child {
    margin-bottom: 0;
}

.objectives-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(45deg, #ff9800, #ffb347);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.2);
    transition: all 0.3s ease;
}

.objectives-list li::after {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0.85rem;
    width: 0.5rem;
    height: 0.5rem;
    border: 2px solid white;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
}

.objectives-list li:hover {
    transform: translateX(5px);
}

.objectives-list li:hover::before {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.objectives-list-heading {
    font-weight: 600;
    color: var(--text-dark);
}

.objectives-list-desc {
    font-size: 0.95rem;
    margin-top: 0.25rem;
    line-height: 1.5;
    color: #4b5563;
}

.nextgen-bina-layout {
    grid-template-columns: 1fr;
}

.nextgen-bina-content .about-bina-text,
.nextgen-bina-content .about-bina-paragraph {
    text-align: justify;
}

.nextgen-bina-logo-block {
    margin-bottom: 1.25rem;
    text-align: center;
}

.nextgen-bina-logo-block .nextgen-bina-logo-img {
    width: auto;
    max-width: 340px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.nextgen-bina-logo-block:hover .nextgen-bina-logo-img {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.nextgen-bina-content .about-bina-heading {
    text-align: center;
}

.nextgen-bina-banner {
    margin: 2rem 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.nextgen-bina-banner:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.nextgen-bina-banner-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
    transition: transform 0.3s ease;
}

.nextgen-bina-banner:hover .nextgen-bina-banner-img {
    transform: translateY(-4px);
}

/* NextGen competition details (English & Malay) */
.nextgen-bina-competition {
    margin-top: 3rem;
}

.nextgen-bina-competition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nextgen-bina-poster-wrap {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nextgen-bina-poster-wrap:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.nextgen-bina-poster-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
    transition: transform 0.3s ease;
}

.nextgen-bina-poster-wrap:hover .nextgen-bina-poster-img {
    transform: translateY(-4px);
}

.nextgen-bina-register-center {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* NextGen Ready to Register section */
.nextgen-bina-register-section {
    margin-top: 3rem;
    padding: 0 1.5rem;
    text-align: center;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.nextgen-bina-register-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.nextgen-bina-register-btn-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0 0 1rem;
}

.nextgen-bina-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-orange);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 1rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nextgen-bina-register-btn:hover {
    background: var(--primary-dark, #e68900);
    color: #fff;
    transform: translateY(-2px);
}

.nextgen-bina-register-btn i {
    font-size: 1.125rem;
}

.nextgen-bina-register-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #9ca3af;
    margin: 1rem 0 0;
}

.nextgen-bina-competition-register {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-dark);
    margin: 0 0 0.5rem;
}

.nextgen-bina-competition-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--primary-orange);
    font-weight: 600;
    word-break: break-all;
}

.nextgen-bina-competition-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nextgen-bina-competition-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .nextgen-bina-page-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-bina-text {
    min-width: 0;
    text-align: right;
}

.about-bina-logo-block {
    text-align: left;
    margin-bottom: 1.5rem;
}

/* About page: center logo and "ABOUT BINA" header */
.about-bina-content .about-bina-logo-block {
    text-align: center;
}

.about-bina-content .about-bina-logo-block .about-bina-logo-img {
    margin-left: auto;
    margin-right: auto;
}

.about-bina-content .about-bina-heading {
    text-align: center;
}

.about-bina-content .about-bina-subheading {
    text-align: center;
}

.about-bina-logo-img {
    width: 11ch;
    max-width: 100%;
    height: auto;
    display: block;
}

.about-bina-year {
    display: inline-block;
    vertical-align: middle;
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-left: 0.5rem;
}

.about-bina-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin: 0.35rem 0 0;
}

.about-bina-heading {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: left;
}

.about-bina-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-dark);
    margin: 0 0 1.25rem;
    text-align: justify;
}

.about-bina-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1rem 0 0.5rem;
    text-align: left;
}

.about-bina-image-wrap {
    min-height: 0;
    align-self: stretch;
    display: flex;
    overflow: hidden;
    border-radius: 12px;
}

.about-bina-image {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-bina-image-wrap:hover .about-bina-image {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Career Spotlight @ Bina page */
.career-spotlight-content {
    padding: 3rem 0 4rem;
    background: var(--bg-light-grey);
}

.career-spotlight-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.career-spotlight-left {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.career-spotlight-logo-block {
    margin-bottom: 1rem;
    text-align: center;
}

.career-spotlight-logo-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.career-spotlight-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
}

.career-spotlight-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-dark);
    margin: 0 0 1.25rem;
    text-align: justify;
}

.career-spotlight-diagram-img {
    margin-top: 1.5rem;
    text-align: center;
}

.career-spotlight-diagram-img .career-spotlight-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.career-spotlight-diagram-img:hover .career-spotlight-img {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.career-spotlight-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.career-spotlight-photo {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.career-spotlight-photo:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.career-spotlight-photo .career-spotlight-img {
    transition: transform 0.3s ease;
}

.career-spotlight-photo:hover .career-spotlight-img {
    transform: translateY(-4px);
}

.career-spotlight-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.career-spotlight-photo-top .career-spotlight-img {
    aspect-ratio: 16 / 10;
}

.career-spotlight-photo-bottom .career-spotlight-img {
    aspect-ratio: 16 / 10;
}

@media (max-width: 768px) {
    .career-spotlight-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .career-spotlight-content {
        padding: 2rem 0 3rem;
    }

    .career-spotlight-title {
        font-size: 1.5rem;
    }

    .career-spotlight-right {
        order: -1;
    }
}

/* Career Spotlight - Objectives & Target Audiences section */
.career-spotlight-objectives-section {
    padding: 3rem 0 4rem;
    background: var(--bg-light-grey);
}

.career-spotlight-objectives-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.career-spotlight-objectives-col,
.career-spotlight-audiences-col {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    min-height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.25s ease;
    border: 2px solid transparent;
}

.career-spotlight-objectives-col:hover,
.career-spotlight-audiences-col:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 152, 0, 0.28);
}

.career-spotlight-objectives-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 1.5rem;
    letter-spacing: 0.02em;
}

.career-spotlight-objectives-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.career-spotlight-objective-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.career-spotlight-objective-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.career-spotlight-objective-content {
    min-width: 0;
}

.career-spotlight-objective-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.career-spotlight-objective-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    text-align: left;
    opacity: 0.9;
}

.career-spotlight-audiences-content {
    margin: 0;
}

.career-spotlight-audiences-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.career-spotlight-audiences-subtitle:not(:first-of-type) {
    margin-top: 1.25rem;
}

.career-spotlight-audiences-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.9;
}

.career-spotlight-audiences-list li {
    padding: 0.15rem 0;
}

@media (max-width: 768px) {
    .career-spotlight-objectives-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .career-spotlight-objectives-section {
        padding: 2rem 0 3rem;
    }

    .career-spotlight-objectives-col,
    .career-spotlight-audiences-col {
        padding: 1.5rem;
    }
}

/* Career Spotlight - MITEC venue & stats section */
.career-spotlight-mitec-section {
    padding: 3rem 0 4rem;
    background: var(--bg-light-grey);
}

.career-spotlight-mitec-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.career-spotlight-mitec-left {
    min-width: 0;
    text-align: center;
}

.career-spotlight-mitec-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.career-spotlight-mitec-detail {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0 0 0.25rem;
}

.career-spotlight-mitec-detail:last-of-type {
    margin-bottom: 1.5rem;
}

.career-spotlight-mitec-stats {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.career-spotlight-mitec-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.25s ease;
    border: 2px solid transparent;
}

.career-spotlight-mitec-stat:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 152, 0, 0.28);
}

.career-spotlight-mitec-stat-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--primary-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.career-spotlight-mitec-stat-content {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.5rem;
}

.career-spotlight-mitec-stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.career-spotlight-mitec-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.career-spotlight-mitec-right {
    min-width: 0;
}

.career-spotlight-mitec-photo {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.career-spotlight-mitec-photo:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.career-spotlight-mitec-photo .career-spotlight-mitec-img {
    transition: transform 0.3s ease;
}

.career-spotlight-mitec-photo:hover .career-spotlight-mitec-img {
    transform: translateY(-4px);
}

.career-spotlight-mitec-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

@media (max-width: 768px) {
    .career-spotlight-mitec-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .career-spotlight-mitec-section {
        padding: 2rem 0 3rem;
    }

    .career-spotlight-mitec-title {
        font-size: 2rem;
    }

    .career-spotlight-mitec-right {
        order: -1;
    }
}

/* Career Spotlight - Features section */
.career-spotlight-features-section {
    padding: 3rem 0 4rem;
    background: var(--bg-light-grey);
}

.career-spotlight-features-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 2.5rem;
    letter-spacing: 0.02em;
}

.career-spotlight-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.career-spotlight-feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.25s ease;
    border: 2px solid transparent;
}

.career-spotlight-feature-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 152, 0, 0.28);
}

.career-spotlight-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: var(--primary-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.career-spotlight-feature-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.35;
    margin: 0;
}

@media (max-width: 992px) {
    .career-spotlight-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .career-spotlight-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .career-spotlight-features-section {
        padding: 2rem 0 3rem;
    }

    .career-spotlight-features-title {
        font-size: 1.5rem;
    }
}

/* Career Spotlight - Setting-up Pavilion & Components */
.career-spotlight-pavilion-section {
    padding: 3rem 0 4rem;
    background: var(--bg-light-grey);
}

.career-spotlight-pavilion-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.career-spotlight-pavilion-left {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.career-spotlight-pavilion-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
}

.career-spotlight-pavilion-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-dark);
    margin: 0 0 1.25rem;
    text-align: justify;
}

.career-spotlight-pavilion-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
}

.career-spotlight-pavilion-img-wrap {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.career-spotlight-pavilion-img-wrap:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.career-spotlight-pavilion-img-wrap .career-spotlight-pavilion-img {
    transition: transform 0.3s ease;
}

.career-spotlight-pavilion-img-wrap:hover .career-spotlight-pavilion-img {
    transform: translateY(-4px);
}

.career-spotlight-pavilion-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

@media (max-width: 768px) {
    .career-spotlight-pavilion-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .career-spotlight-pavilion-section {
        padding: 2rem 0 3rem;
    }

    .career-spotlight-pavilion-title {
        font-size: 1.5rem;
    }

    .career-spotlight-pavilion-right {
        order: -1;
    }
}

/* Career Spotlight - Pocket Talk section */
.career-spotlight-pocket-section {
    padding: 3rem 0 4rem;
    background: var(--bg-light-grey);
}

.career-spotlight-pocket-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.career-spotlight-pocket-left {
    min-width: 0;
}

.career-spotlight-pocket-img-wrap {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.career-spotlight-pocket-img-wrap:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.career-spotlight-pocket-img-wrap .career-spotlight-pocket-img {
    transition: transform 0.3s ease;
}

.career-spotlight-pocket-img-wrap:hover .career-spotlight-pocket-img {
    transform: translateY(-4px);
}

.career-spotlight-pocket-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.career-spotlight-pocket-right {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.career-spotlight-pocket-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.career-spotlight-pocket-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-spotlight-pocket-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: justify;
}

.career-spotlight-pocket-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--primary-orange);
    border-radius: 50%;
}

.career-spotlight-pocket-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .career-spotlight-pocket-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .career-spotlight-pocket-section {
        padding: 2rem 0 3rem;
    }

    .career-spotlight-pocket-title {
        font-size: 1.5rem;
    }

    .career-spotlight-pocket-left {
        order: -1;
    }
}

/* Career Spotlight - Last Event Visual Highlights */
.career-spotlight-highlights-section {
    padding: 3rem 0 4rem;
    background: var(--bg-light-grey);
}

.career-spotlight-highlights-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 2.5rem;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.career-spotlight-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.career-spotlight-highlight-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.career-spotlight-highlight-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.career-spotlight-highlight-item .career-spotlight-highlight-img {
    transition: transform 0.3s ease;
}

.career-spotlight-highlight-item:hover .career-spotlight-highlight-img {
    transform: translateY(-4px);
}

.career-spotlight-highlight-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

@media (max-width: 992px) {
    .career-spotlight-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .career-spotlight-highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .career-spotlight-highlights-section {
        padding: 2rem 0 3rem;
    }

    .career-spotlight-highlights-title {
        font-size: 1.5rem;
    }
}

/* Career Spotlight - Collaboration Contribution & Benefits */
.career-spotlight-benefits-section {
    padding: 3rem 0 4rem;
    background: var(--bg-light-grey);
}

.career-spotlight-benefits-main-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 0.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.career-spotlight-benefits-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 2rem;
}

.career-spotlight-benefits-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.career-spotlight-benefits-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.career-spotlight-benefits-header-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 48px;
}

.career-spotlight-benefits-col-header {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 0.875rem 1rem;
    margin: 0;
    display: flex;
    align-items: center;
}

.career-spotlight-benefits-col-header:first-child {
    background: var(--primary-orange);
    color: #fff;
    justify-content: center;
    text-align: center;
}

.career-spotlight-benefits-desc-header {
    background: #fff;
    color: var(--text-dark);
    justify-content: center;
    text-align: center;
}

.career-spotlight-benefits-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid #e5e7eb;
}

.career-spotlight-benefit-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    background: var(--primary-orange);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 0.75rem 1rem;
    line-height: 1.3;
    text-align: center;
}

.career-spotlight-benefit-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    padding: 0.75rem 1.25rem;
    text-align: justify;
}

@media (max-width: 768px) {
    .career-spotlight-benefits-header-row,
    .career-spotlight-benefits-row {
        grid-template-columns: 1fr;
    }

    .career-spotlight-benefits-col-header:first-child,
    .career-spotlight-benefit-tag {
        border-radius: 0;
    }

    .career-spotlight-benefits-section {
        padding: 2rem 0 3rem;
    }

    .career-spotlight-benefits-main-title {
        font-size: 1.5rem;
    }
}

/* Summary of BINA 2025 - two platforms */
.about-bina-summary {
    margin-top: 4rem;
    padding-top: 3rem;
}

.about-bina-summary-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.about-bina-summary-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 2.5rem;
}

.about-bina-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-bina-summary-card {
    padding: 1.5rem 1.25rem;
    display: grid;
    grid-template-rows: 72px 1fr;
    gap: 1.25rem;
    align-items: start;
    justify-items: center;
    background: var(--text-white);
    border-radius: 12px;
    border: 1px solid rgba(255, 152, 0, 0.18);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.25s ease;
}

.about-bina-summary-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 152, 0, 0.28);
}

.about-bina-summary-card-logo {
    width: 100%;
    max-width: 280px;
    height: 100%;
    max-height: 72px;
    object-fit: contain;
    object-position: center center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
}

.about-bina-summary-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.about-bina-summary-card-title--orange {
    color: var(--primary-orange);
}

.about-bina-summary-card-title--teal {
    color: #0d9488;
}

.about-bina-summary-card-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.about-bina-summary-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
    justify-self: stretch;
    width: 100%;
}

/* Three Key Showcase */
.about-bina-showcase {
    margin-top: 4rem;
    padding-top: 3rem;
}

.about-bina-showcase-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 2.5rem;
}

.about-bina-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-bina-showcase-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--text-white);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 152, 0, 0.18);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.25s ease;
}

.about-bina-showcase-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 152, 0, 0.28);
}

.about-bina-showcase-logo-box {
    background: transparent;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    margin-bottom: 1.25rem;
    /* 72px content height + vertical padding = same visual size as summary logos */
    height: calc(72px + 2 * 1.25rem);
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-bina-showcase-logo-img {
    width: 100%;
    max-width: 280px;
    height: 100%;
    max-height: 72px;
    object-fit: contain;
    object-position: center top;
    display: block;
}

.about-bina-showcase-card-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
}

.about-bina-showcase-card-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    margin: 0.35rem 0 0;
    text-align: center;
}

.about-bina-showcase-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
}

/* MODULAR ASIA - Transforming ASEAN's Construction Landscape */
.about-modular-asia {
    margin-top: 4rem;
    padding-top: 3rem;
}

.about-modular-asia-panel {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    align-items: stretch;
}

.about-modular-asia-panel-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-modular-asia-panel-right {
    display: flex;
    flex-direction: column;
}

.about-modular-asia-logo {
    max-width: 280px;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.about-modular-asia-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.2;
}

.about-modular-asia-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0 0 1rem;
    text-align: justify;
}

.about-modular-asia-paragraph:last-child {
    margin-bottom: 0;
}

.about-modular-asia-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-modular-asia-showcase-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--bg-light-grey);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-modular-asia-showcase-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.about-modular-asia-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-modular-asia-video-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.about-modular-asia-play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--primary-orange);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-modular-asia-play-icon::after {
    content: '';
    position: absolute;
    left: 54%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-width: 10px 0 10px 16px;
    border-style: solid;
    border-color: transparent transparent transparent var(--text-white);
    margin-left: 2px;
}

/* Facility Management section - under MODULAR ASIA */
.about-facility-section {
    margin-top: 4rem;
    padding-top: 3rem;
}

.about-facility-panel {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.about-facility-panel-left {
    display: flex;
    flex-direction: column;
}

.about-facility-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0 0 1rem;
    text-align: justify;
}

.about-facility-paragraph:last-child {
    margin-bottom: 0;
}

.about-facility-panel-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-facility-logo {
    max-width: 280px;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.about-facility-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.2;
}

.about-facility-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-facility-showcase-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--bg-light-grey);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-facility-showcase-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.about-facility-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-facility-video-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.about-facility-play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--primary-orange);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-facility-play-icon::after {
    content: '';
    position: absolute;
    left: 54%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-width: 10px 0 10px 16px;
    border-style: solid;
    border-color: transparent transparent transparent var(--text-white);
    margin-left: 2px;
}

/* Our Audiences */
.about-audiences {
    margin-top: 4rem;
    padding-top: 3rem;
}

.about-audiences-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 2.5rem;
    line-height: 1.2;
}

.about-audiences-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-audiences-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    background: var(--text-white);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 152, 0, 0.18);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.25s ease;
}

.about-audiences-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 152, 0, 0.28);
}

.about-audiences-item-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.3;
}

.about-audiences-item-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.about-audiences-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc(50% - 1rem);
}

/* Unveil the Extraordinary at BINA 2025 */
.about-unveil {
    margin-top: 4rem;
    padding-top: 3rem;
    text-align: center;
}

.about-unveil-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 2.5rem;
    line-height: 1.25;
}

.about-unveil-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-unveil-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    background: var(--text-white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 152, 0, 0.18);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.25s ease;
}

.about-unveil-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 152, 0, 0.28);
}

.about-unveil-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: var(--primary-orange);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-unveil-icon svg {
    width: 32px;
    height: 32px;
}

.about-unveil-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

/* CCD and CPD Points Applied */
.about-ccd-cpd {
    margin-top: 4rem;
    padding-top: 3rem;
    text-align: center;
}

.about-ccd-cpd-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 2.5rem;
    line-height: 1.2;
}

.about-ccd-cpd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-ccd-cpd-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    background: var(--text-white);
    border-radius: 12px;
    padding: 2rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 152, 0, 0.18);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.25s ease;
}

.about-ccd-cpd-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 152, 0, 0.28);
}

.about-ccd-cpd-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: var(--primary-orange);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-ccd-cpd-icon svg {
    width: 28px;
    height: 28px;
}

.about-ccd-cpd-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.35;
    text-align: center;
}

@media (max-width: 992px) {
    .about-bina-showcase-grid {
        grid-template-columns: 1fr;
    }
    .about-bina-summary-grid {
        grid-template-columns: 1fr;
    }
    .about-modular-asia-showcase {
        grid-template-columns: 1fr;
    }
    .about-modular-asia-panel {
        grid-template-columns: 1fr;
    }
    .about-modular-asia-title {
        font-size: 1.125rem;
    }
    .about-facility-panel {
        grid-template-columns: 1fr;
    }
    .about-facility-showcase {
        grid-template-columns: 1fr;
    }
    .about-facility-title {
        font-size: 1.125rem;
    }
    .about-audiences-grid {
        grid-template-columns: 1fr;
    }
    .about-audiences-item:last-child {
        max-width: none;
    }
    .about-unveil-cards {
        grid-template-columns: 1fr;
    }
    .about-ccd-cpd-grid {
        grid-template-columns: 1fr;
    }
    .about-bina-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-bina-image-wrap {
        max-width: 400px;
        margin: 0 auto;
        min-height: 320px;
    }
    .about-bina-image {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .about-bina-content {
        padding: 2rem 0 3rem;
    }
    .about-bina-heading {
        font-size: 1.5rem;
    }
    .about-bina-paragraph {
        font-size: 0.9375rem;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 3rem 0 4rem;
    background: var(--bg-light-grey);
}

.gallery-heading {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 0.75rem;
    line-height: 1.15;
}

.gallery-lead {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 2.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    margin: 0;
}

.gallery-item-frame {
    background: var(--text-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gallery-item-frame:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.gallery-item-frame img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}

@media (max-width: 992px) {
    .gallery-heading {
        font-size: 2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 2rem 0 3rem;
    }
    .gallery-heading {
        font-size: 1.75rem;
    }
    .gallery-lead {
        font-size: 1rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .gallery-item-frame img {
        height: 220px;
    }
}

/* Countdown Section */
.countdown-section {
    background: var(--primary-color);
    padding: 1.5rem 0;
    color: var(--text-white);
}

.countdown-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.countdown-box {
    background: rgba(173, 216, 230, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    min-width: 50px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-flip {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--text-white);
    text-align: center;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.countdown-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
}

.countdown-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    opacity: 0.8;
}

.countdown-event-info {
    margin-top: 0.5rem;
}

.countdown-event-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-white);
}

.countdown-event-date {
    font-size: 0.875rem;
    opacity: 0.9;
    color: var(--text-white);
}

/* Main Content Section */
.main-content-section {
    padding: 0;
    background: var(--bg-light-grey);
    width: 100%;
    position: relative;
    overflow: visible;
    min-height: calc(100vh - 60px);
}

.content-layout {
    display: grid;
    grid-template-columns: 280px 1fr 320px;
    grid-template-rows: auto 1fr;
    gap: 0;
    background: var(--bg-light-grey);
    max-width: 100%;
    margin: 0;
    width: 100%;
    overflow: visible;
    min-height: calc(100vh - 60px);
    align-items: stretch;
}

/* Explicit placement: countdown + main in column 2 (middle), sidebars in 1 and 3 */
.sidebar-left {
    grid-column: 1;
    grid-row: 2;
}

.sidebar-right {
    grid-column: 3;
    grid-row: 2;
}

.countdown-in-layout {
    grid-column: 2;
    grid-row: 1;
}

.content-layout > .main-content {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
}

/* Sidebar */
.sidebar {
    background: var(--text-white);
    color: var(--text-dark);
    padding: 0;
    border-radius: 0;
    position: relative;
    align-self: stretch;
    overflow: visible;
    display: flex;
    flex-direction: row;
    min-height: calc(100vh - 60px);
    height: 100%;
}

.sidebar-left {
    background: var(--text-white);
    border-right: 1px solid var(--border-color);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05);
    padding: 0;
}

.sidebar-right {
    background: var(--text-white);
    border-left: 1px solid var(--border-color);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.05);
    overflow: visible;
}

.sidebar-right .sidebar-toggle-right {
    order: -1;
}

.sidebar-inner {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.sidebar-toggle {
    position: sticky;
    top: 72px;
    width: 24px;
    height: 56px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light-grey);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, width 0.2s ease;
    z-index: 2;
    flex-shrink: 0;
    align-self: center;
}

.sidebar-toggle:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.sidebar-toggle i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.sidebar-toggle-left {
    border-radius: 6px 0 0 6px;
    border-right: none;
}

.sidebar-toggle-right {
    border-radius: 0 6px 6px 0;
    border-left: none;
}

/* Collapsed state: layout grid (narrow strips) */
.content-layout--left-collapsed {
    grid-template-columns: 52px 1fr 320px;
}

.content-layout--right-collapsed {
    grid-template-columns: 280px 1fr 52px;
}

.content-layout--left-collapsed.content-layout--right-collapsed {
    grid-template-columns: 52px 1fr 52px;
}

/* Open (overlay) state: middle stays full width, sidebars overlay */
.content-layout--left-open {
    grid-template-columns: 0 1fr 52px;
}

.content-layout--right-open {
    grid-template-columns: 52px 1fr 0;
}

.content-layout--left-open.content-layout--right-open {
    grid-template-columns: 0 1fr 0;
}

.content-layout--left-open.content-layout--right-collapsed {
    grid-template-columns: 0 1fr 52px;
}

.content-layout--left-collapsed.content-layout--right-open {
    grid-template-columns: 52px 1fr 0;
}

/* Sidebar overlay: fixed on top of content */
.sidebar-left--overlay {
    position: fixed !important;
    left: 0;
    top: 60px;
    width: 280px;
    height: calc(100vh - 60px);
    z-index: 601;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
}

.sidebar-right--overlay {
    position: fixed !important;
    right: 0;
    top: 60px;
    width: 320px;
    height: calc(100vh - 60px);
    z-index: 601;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}

/* Collapsed state: hide sidebar content, show full-width toggle */
.sidebar-left--collapsed .sidebar-inner,
.sidebar-right--collapsed .sidebar-inner {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.sidebar-left--collapsed .sidebar-toggle-left,
.sidebar-right--collapsed .sidebar-toggle-right {
    width: 100%;
    height: 64px;
}

.sidebar-left--collapsed .sidebar-toggle-left i {
    transform: rotate(180deg);
}

.sidebar-right--collapsed .sidebar-toggle-right i {
    transform: rotate(180deg);
}

.sidebar-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    padding: 0.5rem 0.75rem;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    background: var(--bg-light-grey);
}

.sidebar-left .sidebar-title {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(230, 126, 0, 0.05);
    font-weight: 800;
}

.sidebar-right .sidebar-title {
    color: #6B46C1;
    border-bottom-color: #6B46C1;
}

.category-list {
    list-style: none;
    padding: 0.5rem 0.75rem;
    margin: 0;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0.5rem;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.category-item:hover {
    color: var(--primary-color);
    background: rgba(230, 126, 0, 0.08);
    border-left-color: var(--primary-color);
    padding-left: 1rem;
}

.category-item a.category-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    text-decoration: none;
    width: 100%;
}

.category-item.active {
    color: var(--primary-color);
    background: rgba(230, 126, 0, 0.08);
    border-left-color: var(--primary-color);
}

.category-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.category-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Calendar Widget */
.calendar-widget {
    color: var(--text-dark);
    padding: 0;
    border: 1px solid var(--primary-color);
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--text-white);
    margin: 1rem 1rem 0 1rem;
}

.calendar-header-section {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 1.25rem;
    position: relative;
    margin: 0;
    border-radius: 0.5rem 0.5rem 0 0;
}

.calendar-header-content {
    margin-bottom: 0.75rem;
}

.calendar-month-year {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--text-white);
    letter-spacing: -0.3px;
}

.calendar-day-name {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--text-white);
    opacity: 0.9;
}

.calendar-day-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-white);
    letter-spacing: -1px;
}

.calendar-nav-arrows {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.25rem;
}

.calendar-nav-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.upcoming-events-list {
    margin-top: 0;
    padding: 1rem;
    background: var(--text-white);
    border-top: 1px solid var(--primary-color);
}

.upcoming-event-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    background: transparent;
    border-radius: 0;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.upcoming-event-item:last-of-type {
    border-bottom: none;
}

.upcoming-event-item:hover {
    background: transparent;
}

.event-date-bar {
    background: rgba(230, 126, 0, 0.1);
    min-width: 50px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.event-day-abbr {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}

.event-day-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.upcoming-event-info {
    flex: 1;
    padding-left: 0.25rem;
    min-width: 0;
}

.upcoming-event-title {
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
    font-size: 0.85rem;
    line-height: 1.3;
}

.upcoming-event-details {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.event-location-icon,
.event-time-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    color: var(--primary-color);
    opacity: 1;
    flex-shrink: 0;
}

.event-location-icon svg,
.event-time-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.calendar-more-btn {
    width: 100%;
    margin: 0;
    padding: 0.6rem 1.25rem;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 0 0.5rem 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-more-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 0, 0.3);
}

/* Main Content - same font as event cards for consistency */
.main-content {
    background: var(--bg-light-grey);
    padding: 2.5rem 2.5rem 4.5rem 2.5rem;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* BINA 2025 Introduction Panel: images left, intro right */
.bina-intro-panel {
    margin-bottom: 3.5rem;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.bina-intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
}

.bina-intro-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bina-intro-image:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.bina-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bina-intro-image-main {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
}

.bina-intro-image-secondary {
    aspect-ratio: 4 / 3;
}

.bina-intro-image-tertiary {
    aspect-ratio: 4 / 3;
}

.bina-intro-content {
    min-width: 0;
}

.bina-intro-header {
    padding: 0 0 1.5rem 0;
    margin-bottom: 0;
}

.bina-intro-subheading {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.bina-intro-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-variant-numeric: lining-nums;
    font-feature-settings: "lnum" 1;
}

.bina-intro-lead {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-dark);
    margin: 0;
    max-width: 720px;
    font-weight: 400;
    text-align: justify;
}

/* Card section for BINA intro features */
.bina-intro-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
}

.bina-intro-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 1.75rem;
    background: var(--text-white);
    border: 1px solid rgba(255, 152, 0, 0.18);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.25s ease;
}

.bina-intro-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 152, 0, 0.28);
}

.bina-intro-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAEEDD;
    color: var(--primary-orange);
    border-radius: 12px;
    border: 1px solid rgba(255, 152, 0, 0.2);
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.bina-intro-card:hover .bina-intro-card-icon {
    background: linear-gradient(145deg, var(--primary-orange) 0%, var(--bg-dark-orange) 100%);
    color: var(--text-white);
    transform: scale(1.05);
}

.bina-intro-card-icon svg {
    display: block;
}

.bina-intro-card-content {
    flex: 1;
    min-width: 0;
}

.bina-intro-card-heading {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.bina-intro-card-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
    opacity: 0.9;
    text-align: justify;
}

.bina-intro-cta {
    padding: 2rem 0 0 0;
}

@media (max-width: 768px) {
    .bina-intro-cta {
        display: flex;
        justify-content: flex-end;
    }
}

.bina-intro-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--bg-dark-orange) 100%);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.25s ease, gap 0.25s ease;
    box-shadow: 0 3px 12px rgba(255, 152, 0, 0.35);
}

.bina-intro-read-more span {
    position: relative;
}

.bina-intro-read-more i {
    transition: transform 0.25s ease;
}

.bina-intro-read-more:hover {
    color: var(--text-white);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    transform: translateY(-1px);
    gap: 0.75rem;
}

.bina-intro-read-more:hover i {
    transform: translateX(3px);
}

/* Stats cards under introduction */
.bina-stats {
    margin-bottom: 3rem;
    width: 100%;
}

.bina-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bina-stat-card {
    background: var(--text-white);
    border: 1px solid rgba(255, 152, 0, 0.25);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.25s ease;
}

.bina-stat-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 152, 0, 0.35);
}

.bina-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.bina-stat-plus {
    color: var(--primary-orange);
    font-weight: 700;
}

.bina-stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6c757d;
}

.platform-intro {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.platform-intro p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.platform-logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
    font-family: 'Playfair Display', serif;
}

/* Events section: full black section with header + event cards inside */
.events-section {
    width: calc(100% + 5rem);
    max-width: none;
    margin-top: 0;
    margin-left: -2.5rem;
    margin-right: 0;
    box-sizing: border-box;
    background: #0d0d0d;
    padding: 2.5rem 2.5rem 3rem 2.5rem;
}

.events-section-header {
    color: var(--text-white);
    text-align: center;
    padding: 0 0 2rem 0;
    margin: 0;
}

.events-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-white);
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}

.events-section-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.events-section .events-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (max-width: 768px) {
    .events-section {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 2rem 1.25rem 2.5rem 1.25rem;
        border-radius: 1.5rem 1.5rem 0 0;
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
    }

    .events-section-title {
        font-size: 1.6rem;
        letter-spacing: 0.06em;
    }

    .events-section-subtitle {
        font-size: 0.85rem;
        padding: 0 0.25rem;
    }

    .events-section .events-list {
        gap: 1.5rem;
    }

    .event-item {
        margin: 0 0 1.5rem 0;
        border-radius: 1.25rem;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    }

    .event-item-image {
        border-radius: 1.25rem 1.25rem 0 0;
    }

    .event-item-content {
        padding: 1.25rem 1.1rem 1.5rem 1.1rem;
        min-height: auto;
    }

    .event-item-content h3 {
        font-size: 1.35rem;
        margin-bottom: 0.6rem;
    }

    .event-meta {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .event-description {
        margin-top: 0.6rem;
        font-size: 0.9rem;
    }
}

.events-section .event-loading p {
    color: rgba(255, 255, 255, 0.85);
}

/* Experience Our Offering - full width to left/right panels */
.offering-section {
    width: calc(100% + 5rem);
    max-width: none;
    margin-left: -2.5rem;
    margin-right: 0;
    margin-top: 0;
    box-sizing: border-box;
    background: var(--bg-light-grey);
    padding: 3rem 2.5rem 3.5rem 2.5rem;
}

.offering-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 2.5rem 0;
    line-height: 1.2;
}

.offering-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.offering-card {
    background: var(--text-white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.offering-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.offering-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-orange);
    color: var(--text-white);
    border-radius: 12px;
}

.offering-card-icon svg {
    display: block;
}

.offering-card-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.35;
}

/* Why should attend - full width, 2x2 cards */
.why-attend-section {
    width: calc(100% + 5rem);
    max-width: none;
    margin-left: -2.5rem;
    margin-right: 0;
    margin-top: 0;
    box-sizing: border-box;
    background: var(--bg-light-grey);
    padding: 3rem 2.5rem 3.5rem 2.5rem;
}

.why-attend-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.why-attend-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--primary-orange);
    text-align: center;
    margin: 0 0 2.5rem 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.why-attend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-attend-card {
    background: var(--text-white);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.why-attend-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.why-attend-card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    line-height: 1.35;
    text-align: center;
}

.why-attend-card-desc {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.65;
    opacity: 0.9;
    text-align: center;
}

/* Our Official Partners - below Why should attend (same gap as offering→why-attend) */
.official-partners-section {
    margin-top: 0;
    padding-top: 3rem;
    text-align: center;
}

.official-partners-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.official-partners-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--primary-orange);
    text-align: center;
    margin: 0 0 1.25rem 0;
    line-height: 1.5;
}

.official-partners-lead {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-dark);
    margin: 0 auto 1rem auto;
    max-width: 900px;
    opacity: 0.95;
}

.official-partners-lead:last-of-type {
    margin-bottom: 0;
}

/* Platinum Partner - single logo card */
.platinum-partner {
    margin-top: 2.5rem;
    padding-top: 2rem;
}

.platinum-partner-title {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #566479;
    text-align: center;
    margin: 0 0 1.25rem 0;
    line-height: 1.2;
}

.platinum-partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    max-width: 400px;
    margin: 0 auto;
}

.platinum-partner-card {
    background: var(--text-white);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.platinum-partner-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.platinum-partner-logo {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Community Partners - single logo card */
.community-partners {
    margin-top: 2.5rem;
    padding-top: 2rem;
}

.community-partners-title {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #566479;
    text-align: center;
    margin: 0 0 1.25rem 0;
    line-height: 1.2;
}

.community-partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    max-width: 400px;
    margin: 0 auto;
}

.community-partners-card {
    background: var(--text-white);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.community-partners-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.community-partners-logo {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.community-partners-slogan {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0.5rem 0 0 0;
    letter-spacing: 0.02em;
}

/* Impact Partner - grid of logo cards */
.impact-partners {
    margin-top: 2.5rem;
    padding-top: 2rem;
}

.impact-partners-title {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #566479;
    text-align: center;
    margin: 0 0 1.25rem 0;
    line-height: 1.2;
}

.impact-partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.impact-partners-card {
    background: var(--text-white);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    flex: 0 1 calc((100% - 6rem) / 7);
    min-width: 120px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.impact-partners-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.impact-partners-logo {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Partner categories row: Event, Media & Logistic, Affiliate */
.partner-categories-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.partner-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partner-category-title {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #566479;
    text-align: center;
    margin: 0 0 1.25rem 0;
    line-height: 1.2;
}

.partner-category-card {
    background: var(--text-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.partner-category-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.partner-category-logo {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Support By - logo cards */
.support-by {
    margin-top: 2.5rem;
    padding-top: 2rem;
}

.support-by-title {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #566479;
    text-align: center;
    margin: 0 0 1.25rem 0;
    line-height: 1.2;
}

.support-by-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
}

.support-by-card {
    background: var(--text-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.support-by-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.support-by-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.event-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.event-item-link:hover {
    text-decoration: none;
    color: inherit;
}

.event-item-link:hover .event-item {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.event-item {
    display: flex;
    gap: 0;
    padding: 0;
    margin: 0 0 2rem 0;
    border: none;
    border-radius: 0.5rem;
    background: var(--text-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    align-items: stretch;
}

.event-item:last-child {
    margin-bottom: 0;
}


.event-item-image {
    width: 350px;
    min-width: 350px;
    height: auto;
    min-height: 300px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0.5rem 0 0 0.5rem;
    transition: transform 0.3s ease;
    margin: 0;
    padding: 0;
    display: block;
    align-self: stretch;
}

.event-item:hover .event-item-image {
    transform: scale(1.02);
}

.event-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}

.event-item:hover .event-image {
    transform: scale(1.05);
}

.event-image-overlay {
    display: none;
}

.event-item-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.event-category-badge {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 0;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: none;
    font-family: 'Inter', sans-serif;
}

.event-item-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif;
}

.event-meta {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.event-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.event-meta-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.event-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
    font-weight: 400;
}

.event-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.event-price-info {
    display: flex;
    flex-direction: column;
}

.event-price-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.event-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    color: var(--text-white);
    padding: 2rem 0 0.75rem;
    margin-top: 0;
    position: relative;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-left {
    max-width: 350px;
}

.footer-logo-img {
    width: 100px;
    height: auto;
    margin-bottom: 0.75rem;
    filter: brightness(0) invert(1);
}

.footer-slogan {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.footer-company {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.4rem;
    font-family: 'Inter', sans-serif;
}

.footer-address {
    font-size: 0.8rem;
    color: var(--text-white);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon[aria-label="Facebook"] svg {
    fill: var(--primary-color);
}

.social-icon[aria-label="LinkedIn"] svg {
    fill: var(--primary-color);
}

.footer-middle {
    max-width: 300px;
}

.footer-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.contact-icon-wrapper {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon {
    width: 14px;
    height: 14px;
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-white);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.contact-value {
    font-size: 0.85rem;
    color: var(--text-white);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.contact-value a {
    color: var(--text-white);
    text-decoration: none;
}

.contact-value:hover {
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: none;
    color: var(--text-white);
}

.footer-right {
    max-width: 400px;
}

.footer-newsletter {
    margin-bottom: 1.5rem;
}

.newsletter-form {
    margin-top: 0.75rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.6rem 0.85rem;
    border: none;
    border-radius: 0.4rem;
    background: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-btn {
    padding: 0.6rem 1.25rem;
    border: none;
    border-radius: 0.4rem;
    background: var(--text-white);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: transform 0.2s ease;
}

.newsletter-btn:hover {
    transform: scale(1.05);
}

.footer-newsletter-logo {
    display: block;
    margin-top: 1.25rem;
    max-width: 100%;
    height: auto;
}

.footer-title-quick {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.quick-link-btn {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s ease;
}

.quick-link-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.footer-partner-logos {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.partner-logo {
    background: var(--text-white);
    padding: 0.75rem 1.25rem;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.partner-logo-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
}

.partner-logo-text-lower {
    font-size: 1.1rem;
    text-transform: lowercase;
}

.partner-logo-text-country {
    font-size: 0.75rem;
    font-weight: 600;
}

.partner-logo-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 1.5rem 0 0.75rem;
}

.footer-visitor-stats {
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 0.5rem;
}

.visitor-stats-content {
    display: inline-block;
}

.visitor-stats-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visitor-stats-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.visitor-stat-item {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
}

.visitor-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
}

.visitor-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
}

.footer-bottom {
    text-align: center;
    padding-top: 0.75rem;
    color: var(--text-white);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-layout {
        grid-template-columns: 200px 1fr 250px;
    }

    .content-layout--left-collapsed {
        grid-template-columns: 52px 1fr 250px;
    }

    .content-layout--right-collapsed {
        grid-template-columns: 200px 1fr 52px;
    }

    .content-layout--left-collapsed.content-layout--right-collapsed {
        grid-template-columns: 52px 1fr 52px;
    }

    .content-layout--left-open,
    .content-layout--left-open.content-layout--right-collapsed {
        grid-template-columns: 0 1fr 52px;
    }

    .content-layout--right-open,
    .content-layout--left-collapsed.content-layout--right-open {
        grid-template-columns: 52px 1fr 0;
    }

    .content-layout--left-open.content-layout--right-open {
        grid-template-columns: 0 1fr 0;
    }

    .sidebar-left--overlay {
        width: 200px;
    }

    .sidebar-right--overlay {
        width: 250px;
    }
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        max-width: 100%;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-partner-logos {
        flex-direction: column;
        align-items: flex-start;
    }

    .content-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr auto;
    }

    .content-layout.content-layout--left-collapsed,
    .content-layout.content-layout--right-collapsed {
        grid-template-columns: 1fr;
    }

    .countdown-in-layout {
        grid-column: 1;
        grid-row: 1;
    }

    .content-layout > .main-content {
        grid-column: 1;
        grid-row: 2;
    }

    .sidebar-left,
    .sidebar-right {
        display: none;
    }

    .bina-intro-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bina-intro-images {
        max-width: 480px;
        margin: 0 auto 0 0;
    }

    .bina-intro-title {
        font-size: 2rem;
    }

    .bina-intro-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
    }

    .bina-intro-card-icon {
        width: 48px;
        height: 48px;
    }

    .bina-intro-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .bina-stats-grid {
        gap: 1rem;
    }

    .bina-stat-number {
        font-size: 2rem;
    }

    .offering-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .offering-title {
        font-size: 1.25rem;
    }

    .why-attend-grid {
        grid-template-columns: 1fr;
    }

    .why-attend-title {
        font-size: 1.25rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none;
    }

    .search-bar {
        flex-direction: column;
    }

    .search-input-wrapper,
    .search-filter,
    .date-filter-wrapper {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }

    /* Hide mobile header logo by default (show only when menu is open) */
    .nav-brand {
        display: none;
    }

    .navbar.navbar--menu-open .nav-brand {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        inset: 60px 0 auto 0;
        background: #0d0d0d;
        padding: 12px 20px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-4px);
        transition: max-height 0.25s ease, opacity 0.2s ease, visibility 0.2s ease, transform 0.25s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu.is-open {
        max-height: 60vh;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        overflow: visible;
    }

    /* Account dropdown: same behaviour as About dropdown on small screens */
    .nav-auth .auth-buttons-group .dropdown {
        overflow: visible;
    }

    .nav-auth .auth-buttons-group .dropdown-menu {
        left: 0;
        right: auto;
        min-width: 200px;
    }

    .nav-menu li {
        width: 100%;
    }

    /* Hide duplicate logo from the dropdown menu on mobile */
    .nav-menu-logo {
        display: none;
    }

    .nav-menu li a:not(.cart-toggle):not(.auth-btn),
    .nav-menu li.nav-text-item a.nav-text-link {
        display: block;
        max-width: 100%;
        width: 100%;
        text-align: left;
        -webkit-line-clamp: unset;
        white-space: nowrap !important;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Hide manual line breaks inside nav for mobile/tablet so labels stay on one line */
    .nav-menu br {
        display: none;
    }

    .nav-category-group {
        width: 100%;
    }

    .nav-category-list {
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: flex-start;
    }

    .nav-category-list .nav-category-link {
        text-align: left;
        max-width: 100%;
    }

    .nav-auth {
        margin-top: 0.5rem;
        width: 100%;
    }

    .auth-buttons-group {
        width: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 0;
        background: transparent;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        border: none;
    }

    .auth-btn-account {
        width: auto;
        max-width: none;
        margin: 0;
        border-radius: 999px;
        background: #3A3A3A;
    }
}

@media (max-width: 768px) {
    .hero-event-title {
        font-size: 2.5rem;
    }

    .sun-icon {
        font-size: 2rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .event-item {
        flex-direction: column;
    }

    .event-item-image {
        width: 100%;
        height: 200px;
    }

    .bina-intro-panel {
        gap: 1.5rem;
    }

    .bina-intro-images {
        max-width: 100%;
    }

    .bina-intro-title {
        font-size: 1.75rem;
    }

    .bina-intro-lead {
        font-size: 1rem;
    }

    .bina-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bina-stat-card {
        padding: 1.25rem 1rem;
    }

    .bina-stat-number {
        font-size: 2rem;
    }

    .offering-section {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 2rem 1.25rem 2.5rem 1.25rem;
    }

    .offering-card {
        padding: 1.5rem 1.25rem;
    }

    .offering-title {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .why-attend-section {
        padding: 2rem 2.5rem 2.5rem 2.5rem;
    }

    .why-attend-title {
        font-size: 1.125rem;
    }

    .why-attend-subtitle {
        margin-bottom: 1.5rem;
    }

    .why-attend-card {
        padding: 1.5rem 1.25rem;
    }

    .official-partners-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .official-partners-title {
        font-size: 1.375rem;
    }

    .official-partners-lead {
        font-size: 0.9375rem;
    }

    .support-by-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .support-by-card {
        min-height: 100px;
        padding: 1.25rem;
    }

    .support-by-logo {
        max-height: 60px;
    }

    .community-partners-card {
        min-height: 90px;
        padding: 1.25rem 1.5rem;
    }

    .community-partners-logo {
        max-height: 60px;
    }

    .community-partners-slogan {
        font-size: 0.75rem;
    }

    .impact-partners-card {
        min-height: 80px;
        padding: 0.75rem 1rem;
        flex-basis: calc((100% - 2.25rem) / 4);
        min-width: 0;
    }

    .impact-partners-logo {
        max-height: 50px;
    }

    .partner-categories-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .partner-category-card {
        min-height: 90px;
        padding: 1.25rem;
    }

    .partner-category-logo {
        max-height: 60px;
    }
}

/* Event Show Page */
.event-hero {
    margin-top: 60px;
    margin-bottom: 0;
    position: relative;
}

.event-hero .hero-banner-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    filter: brightness(0.3);
}

.event-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.event-action-buttons-overlay {
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    z-index: 10;
    margin-bottom: 0;
}

.event-action-buttons-overlay .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.event-action-buttons-overlay .action-buttons-group {
    justify-content: flex-start;
    padding-left: 0;
    margin-left: 0;
}

.event-action-buttons-overlay .btn-buy-ticket {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.event-action-buttons {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: sticky;
    top: 60px;
    z-index: 100;
    margin-top: 0;
}

.action-buttons-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-buy-ticket {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: var(--text-white);
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.btn-buy-ticket:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.4);
    color: var(--text-white);
}

.btn-buy-ticket.disabled {
    background: #9CA3AF;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.btn-buy-ticket.disabled:hover {
    background: #9CA3AF;
    transform: none;
    box-shadow: none;
    color: var(--text-white);
}

.btn-retrieve-ticket {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: #4CAF50;
    color: var(--text-white);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-retrieve-ticket:hover {
    background: #388E3C;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
    color: var(--text-white);
}

.event-show-container {
    background: transparent;
    min-height: calc(100vh - 60px);
    padding: 0;
    padding-top: 0rem;
    padding-bottom: 3rem;
    margin-top: -320px;
    position: relative;
    z-index: 5;
}

@media (max-width: 992px) {
    .event-show-container {
        margin-top: -120px;
    }
}

@media (max-width: 768px) {
    .event-show-container {
        margin-top: -300px;
        padding-top: 0;
    }

    .event-show-content {
        padding: 0 1.25rem 1.5rem 1.25rem;
    }

    .event-show-title {
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        padding: 1rem 1.25rem;
        width: calc(100% + 2.5rem);
        font-size: 1.25rem;
    }

    .event-hero .hero-banner-image {
        min-height: 280px;
    }
}

.event-show-content {
    background: var(--text-white);
    border-radius: 0.25rem;
    padding: 0 2.5rem 2.5rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 1200px;
    margin: 0 auto;
}

.event-show-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    padding: 1rem 2.5rem;
    border-bottom: 2px solid var(--border-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
    letter-spacing: -0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: block;
    width: calc(100% + 5rem);
}

.event-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
    justify-content: center;
}

.event-tab {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
}

.event-tab svg {
    width: 16px;
    height: 16px;
}

.event-tab:hover {
    color: var(--primary-color);
}

.event-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

@media (max-width: 768px) {
    .event-tabs {
        justify-content: space-between;
        flex-wrap: nowrap;
        overflow: hidden;
        white-space: nowrap;
        gap: 0;
        padding-bottom: 0.25rem;
    }

    .event-tab {
        flex: 1 1 0;
        min-width: 0;
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content-placeholder {
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    width: 100%;
    grid-column: 1 / -1;
}

/* Schedule Section */
.schedule-content {
    width: 100%;
    grid-column: 1 / -1;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.schedule-session-header {
    background: var(--primary-color);
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 2rem 0 1.5rem 0;
    display: inline-block;
    max-width: 800px;
    width: 100%;
    text-align: left;
}

.schedule-session-header:first-child {
    margin-top: 0;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
    max-width: 800px;
    width: 100%;
}

.schedule-time {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    min-width: 90px;
    flex-shrink: 0;
    padding-top: 0.25rem;
    text-align: left;
}

.schedule-line {
    width: 3px;
    background: var(--primary-color);
    flex-shrink: 0;
    min-height: 60px;
    border-radius: 2px;
}

.schedule-details {
    flex: 1;
    padding-bottom: 0.5rem;
    text-align: left;
}

.schedule-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    text-align: left;
}

.schedule-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0.5rem 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    text-align: left;
}

.schedule-personnel {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0.5rem 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    text-align: left;
}

.schedule-personnel strong {
    font-weight: 600;
}

/* Personnel Section */
.personnel-content {
    width: 100%;
    grid-column: 1 / -1;
}

.personnel-role-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.personnel-role-badge-host {
    background: #4B5563;
}

.personnel-role-badge-moderator {
    background: #4B5563;
}

.personnel-role-badge-speaker {
    background: #4B5563;
}

.personnel-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    padding: 0.5rem 0;
}

.personnel-card {
    background: #FFFFFF;
    border-radius: 0.25rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 calc(20% - 1rem);
    min-width: 200px;
    max-width: 250px;
}

.personnel-image-link {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.personnel-image-link:hover {
    transform: scale(1.05);
}

.personnel-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.75rem;
    background: var(--bg-light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
}

.personnel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.personnel-image-placeholder {
    background: var(--bg-light-grey);
    color: var(--text-light);
}

.personnel-image-placeholder svg {
    width: 40px;
    height: 40px;
}

.personnel-info {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.personnel-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.personnel-position {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin: 0.25rem 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.4;
}

.personnel-company {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0.25rem 0 0 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.event-main-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.event-poster-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-poster-container {
    position: relative;
    width: 100%;
    border-radius: 0.25rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.poster-slides-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
}

.poster-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
}

.poster-slide.active {
    opacity: 1;
    z-index: 1;
}

.event-poster-image {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
}

/* Poster Carousel Navigation Arrows */
.poster-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.poster-carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.poster-carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.poster-carousel-nav-prev {
    left: 0.75rem;
}

.poster-carousel-nav-next {
    right: 0.75rem;
}

.poster-carousel-nav svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.event-poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.5) 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--text-white);
}

.poster-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.75rem;
    display: inline-block;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
}

.poster-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
    margin: 1rem 0;
}

.poster-date,
.poster-venue {
    font-size: 0.95rem;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.sponsors-section {
    padding: 1.5rem;
    background: var(--bg-light-grey);
    border-radius: 0.5rem;
}

.sponsors-label {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
}

.sponsors-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.sponsor-logo {
    padding: 0.5rem 1rem;
    background: var(--text-white);
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
}

.event-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--text-white);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.info-card-title svg {
    color: var(--primary-color);
}

.qr-code-section {
    text-align: center;
}

.qr-code-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    background: var(--bg-light-grey);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.qr-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.share-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.share-link:hover {
    text-decoration: underline;
}

.share-url {
    font-size: 0.75rem;
    color: var(--text-light);
    word-break: break-all;
    font-family: monospace;
}

/* Scan and Share Card - Redesigned */
.scan-share-card {
    background: #FFFFFF;
    border-radius: 0.25rem;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qr-code-container {
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: 100%;
}

.qr-code-wrapper {
    width: 120px;
    height: 100%;
    background: var(--text-white);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: var(--text-dark);
    margin: 0 auto;
}

.qr-code-wrapper canvas,
.qr-code-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.scan-share-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-start;
}

.scan-share-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.scan-share-text {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.scan-share-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.scan-share-link:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.scan-share-link svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.scan-share-url {
    font-size: 0.75rem;
    color: var(--text-dark);
    word-break: break-all;
    font-family: 'Inter', sans-serif;
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
}

/* Location Card */
.location-card {
    background: #FFFFFF;
    border-radius: 0.25rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: -0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    justify-content: flex-start;
}

.location-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.location-icon svg {
    width: 24px;
    height: 24px;
}

.location-content {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.location-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: left;
}

.location-info-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: -0.5rem;
}

.location-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.location-info-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.location-info-icon svg {
    width: 20px;
    height: 20px;
}

.location-info-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.location-info-tag {
    color: #6B7280;
    font-style: italic;
    font-weight: 400;
}

.location-address {
    font-size: 0.85rem;
    color: #6B7280;
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Event content cards grid (e.g. "Explore Our Technology Categories" style) */
.event-cards-section {
    width: 100%;
    margin-top: 48px;
    margin-bottom: 48px;
}

.event-cards-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 1.5rem auto;
}

.event-cards-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.event-cards-subheading {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.event-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.event-content-card {
    background: #f5f5f5;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.event-content-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.event-content-card-description {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .event-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Important points / content list section (below content cards) */
.event-content-list-section {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 0;
}

.event-content-list-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.event-content-list-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-align: center;
}

.event-content-list {
    display: inline-block;
    margin: 0 auto;
    padding-left: 1.5rem;
    list-style: disc;
    text-align: left;
}

.event-content-list li {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.event-content-list li:last-child {
    margin-bottom: 0;
}

/* Admin-inserted content between poster/sidebar and ticket section */
.event-middle-content {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 48px;
    margin-bottom: 0;
}

.event-middle-content-inner {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    max-width: 1000px;
    text-align: center;
    box-sizing: border-box;
}

.event-middle-content-inner img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.25rem;
    border-radius: 0.5rem;
}

.event-middle-content-inner p {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center !important;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-middle-content-inner p:first-of-type {
    margin-top: 0;
}

/* Ensure nested blocks (e.g. from pasted content) don't constrain width */
.event-middle-content-inner div {
    max-width: 100%;
}

.event-middle-content-inner h1,
.event-middle-content-inner h2,
.event-middle-content-inner h3 {
    margin-left: auto;
    margin-right: auto;
}

/* Ticket Information Section */
.event-tickets-section {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.event-tickets-inner {
    width: 100%;
    max-width: 800px; /* match Tentative tab content width */
    padding-top: 2.5rem;
    border-top: 1px solid #E5E7EB;
}

.ticket-information-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.ticket-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.ticket-information-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.ticket-info-header {
    background: var(--primary-color);
    color: #fff;
    border-radius: 0.25rem; /* match .scan-share-card */
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 18px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* match .scan-share-card */
}

.ticket-info-label {
    opacity: 0.95;
    margin-right: 6px;
}

.ticket-info-value {
    font-weight: 500;
}

.event-tickets-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.ticket-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 0.25rem; /* match .scan-share-card */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* match .scan-share-card */
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ticket-card:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    transform: translateY(-2px);
}

.ticket-card-v2 {
    padding: 0;
}

.ticket-card-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 20px 20px 12px 20px;
    align-items: center; /* center ticket name and image vertically */
}

.ticket-top-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #1F2937;
}

.ticket-quantity-discount-table {
    margin: 12px 0;
    width: 100%;
}

.quantity-discount-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.875rem;
    background: #fff;
    border: 1px solid #E5E7EB;
}

.quantity-discount-table thead {
    background: #F9FAFB;
}

.quantity-discount-table th {
    padding: 8px 12px;
    text-align: center;
    font-weight: 600;
    color: #374151;
    font-size: 0.8rem;
    border-bottom: 1px solid #E5E7EB;
    border-right: 1px solid #E5E7EB;
}

.quantity-discount-table th:last-child {
    border-right: none;
}

.quantity-discount-table td {
    padding: 8px 12px;
    text-align: center;
    color: #4B5563;
    border-bottom: 1px solid #E5E7EB;
    border-right: 1px solid #E5E7EB;
}

.quantity-discount-table td:last-child {
    border-right: none;
}

.quantity-discount-table tbody tr:last-child td {
    border-bottom: none;
}

.ticket-top-bullets {
    margin: 10px 0 0 0;
    padding-left: 16px;
    color: #4B5563;
    font-size: 15px;
    line-height: 1.7;
}

.ticket-card-divider {
    border-top: 1px dashed #E5E7EB;
    margin: 0 20px;
}

.ticket-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px 18px 20px;
    gap: 1rem;
}

.ticket-bottom-price {
    font-weight: 400;
    font-size: 0.9rem;
    color: #111827;
    white-space: nowrap;
    text-align: left;
}

.ticket-bottom-qty {
    margin-left: auto;
}

.ticket-bottom-remark {
    margin-left: 8px;
    color: #9CA3AF;
    font-weight: 500;
    font-size: 13px;
    white-space: nowrap;
}

.ticket-card-image {
    width: 132px;
    height: 86px;
    background: #111827;
    border-radius: 0.25rem; /* match .scan-share-card */
    overflow: hidden;
    flex: 0 0 auto;
}

.ticket-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ticket-qty-select {
    width: 92px;
    height: 40px;
    border: 1px solid #E5E7EB;
    border-radius: 0.25rem; /* match ticket card rounded size */
    padding: 0 10px;
    background: #fff;
    color: #111827;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.ticket-qty-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 152, 0, 0.1);
}

.ticket-qty-select:disabled {
    background: #F3F4F6;
    color: #9CA3AF;
    cursor: not-allowed;
    opacity: 0.6;
}

.ticket-qty-status {
    color: #DC2626;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Buy Ticket Section */
.buy-ticket-section {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.buy-ticket-section .btn-buy-ticket {
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.buy-ticket-section .btn-buy-ticket.disabled {
    background: #9CA3AF;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none !important;
    border: none;
}

.buy-ticket-section .btn-buy-ticket.disabled:hover {
    background: #9CA3AF;
    transform: none;
    box-shadow: none !important;
    color: var(--text-white);
}

.buy-ticket-disclaimer {
    font-size: 0.8rem;
    color: #9CA3AF;
    text-align: center;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.buy-ticket-disclaimer.buy-ticket-login-message {
    color: #DC2626;
}

/* More Info Section */
.more-info-section {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.more-info-title {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.more-info-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.more-info-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.more-info-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.more-info-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .more-info-buttons {
        flex-direction: column;
        width: 100%;
    }
    .more-info-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ticket-card-top {
        grid-template-columns: 1fr;
    }
    .ticket-card-image {
        width: 100%;
        height: 160px;
    }
    .ticket-card-bottom {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .ticket-bottom-qty {
        margin-top: 8px;
    }
}

.location-map-btn {
    flex-shrink: 0;
    padding: 0.4rem 1rem;
    border-radius: 0.5rem;
    background: var(--primary-color);
    color: #FFFFFF;
    font-size: 0.875rem;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.2s ease, transform 0.1s ease;
    min-width: 60px;
    cursor: pointer;
}

.location-map-btn:hover {
    background: var(--primary-dark);
    color: #FFFFFF;
    text-decoration: none;
    transform: scale(1.02);
}

.location-map-btn:active {
    transform: scale(0.98);
}

.location-map-btn:focus {
    outline: none;
    box-shadow: none;
}

/* Share Location Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.share-location-modal {
    background: #FFFFFF;
    border-radius: 0.75rem;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.share-location-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.share-location-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.share-location-pin-icon {
    flex-shrink: 0;
}

.share-location-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.modal-close-btn {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.modal-close-btn:hover {
    color: #1F2937;
}

.share-location-body {
    padding: 1.5rem;
}

.share-location-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.share-location-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #FFFFFF;
}

.share-location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #FFFFFF;
    text-decoration: none;
}

.share-location-btn:active {
    transform: translateY(0);
}

.share-location-btn-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.share-location-btn-waze {
    background: #4A90E2;
}

.share-location-btn-waze:hover {
    background: #357ABD;
}

.share-location-btn-google {
    background: #34A853;
}

.share-location-btn-google:hover {
    background: #2E8E47;
}

.venue-details {
    margin-top: 0.5rem;
}

.venue-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.venue-address {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.btn-map {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background: var(--primary-dark);
    color: var(--text-white);
}

.event-datetime {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.event-price-display {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.event-description-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.event-tags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.event-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-light-grey);
    color: var(--text-dark);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.floating-actions {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    z-index: 1000;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.5);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 1024px) {
    .event-main-layout {
        grid-template-columns: 1fr;
    }
    
    .event-show-title {
        font-size: 2rem;
    }
    
    .poster-title {
        font-size: 2.5rem;
    }
}

/* Auth Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--bg-light-grey);
}

.auth-card {
    background: var(--text-white);
    border-radius: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 100%;
    max-width: 420px;
    position: relative;
}

.auth-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.auth-back-btn:hover {
    color: var(--primary-color);
}

.auth-back-btn svg {
    width: 18px;
    height: 18px;
}

.auth-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.auth-logo {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.auth-logo-img {
    height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.auth-subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

.required-asterisk {
    color: #dc2626;
    font-weight: 600;
}

.password-requirement {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.form-group-checkbox {
    margin-bottom: 0;
}

.form-group.form-group-remember-row {
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.5rem;
    width: 100%;
}

.form-group-remember-row .checkbox-label {
    margin-bottom: 0;
}

.form-group-remember-row .auth-forgot-link {
    flex-shrink: 0;
    margin-left: auto;
}

.auth-forgot-link {
    font-size: 0.875rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.auth-forgot-link:hover {
    text-decoration: underline;
}

.auth-message {
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1rem;
}

.auth-message-success {
    background: #dcfce7;
    color: #166534;
}

.auth-message-error {
    background: #fee2e2;
    color: #991b1b;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.checkbox-text {
    font-weight: 400;
    color: var(--text-dark);
}

.alert {
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

.alert-error {
    background-color: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.alert-success {
    background-color: #d1fae5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.error-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.error-list li {
    margin-bottom: 0.25rem;
}

.error-list li:last-child {
    margin-bottom: 0;
}

.form-input.error {
    border-color: #dc2626;
}

.form-input.error:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.field-error {
    display: block;
    font-size: 0.75rem;
    color: #dc2626;
    margin-top: 0.25rem;
    font-family: 'Inter', sans-serif;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem 1.25rem;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    min-width: 300px;
    max-width: 400px;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    background: #10b981;
}

.toast-error {
    background: #dc2626;
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.toast-icon {
    color: var(--text-white);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.toast-message {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
}

.toast-messages {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

@media (max-width: 768px) {
    .toast {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }

    .toast.show {
        transform: translateY(0);
    }
}

.form-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--text-white);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper .form-input {
    padding-right: 2.75rem;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.password-toggle:focus {
    outline: none;
}

.eye-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form-checkbox-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.form-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.form-link:hover {
    text-decoration: underline;
}

.btn-auth-primary {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.25rem;
}

.btn-auth-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.4);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0 0.5rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light, #e5e7eb);
}

.auth-divider-text {
    font-size: 0.875rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.btn-auth-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    background: var(--text-white);
    color: var(--text-dark);
    border: 1px solid var(--border-light, #e5e7eb);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.25rem;
}

.btn-auth-google:hover {
    background: var(--bg-light-grey);
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-auth-google-icon {
    flex-shrink: 0;
}

.auth-footer {
    margin-top: 1rem;
    text-align: center;
}

.auth-footer-text {
    font-size: 0.875rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .auth-card {
        padding: 2rem 1.5rem;
    }
    
    .auth-title {
        font-size: 1.75rem;
    }
}

/* ——— BINA: Modular Asia Exhibition 2026 ——— */
.modular-asia-hero {
    margin-top: 60px;
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.modular-asia-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920&h=800&fit=crop&q=85');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    filter: saturate(1.1);
}

.modular-asia-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.55) 0%, rgba(22, 33, 62, 0.88) 100%);
    pointer-events: none;
}

.modular-asia-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    padding: 3rem 1.25rem 3.5rem;
    text-align: center;
}

.modular-asia-hero-badge {
    display: inline-flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 auto 1.25rem;
    max-width: 100%;
    box-sizing: border-box;
}

.modular-asia-hero-badge-dot {
    display: block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 0.35em;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 12px rgba(255, 152, 0, 0.8);
}

.modular-asia-hero-badge-label {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
    line-height: 1.45;
}

.modular-asia-hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin: 0 0 1rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.modular-asia-hero-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin: 0 auto 1.75rem;
    line-height: 1.65;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.modular-asia-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.modular-asia-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--text-white);
    backdrop-filter: blur(8px);
}

.modular-asia-meta-chip i {
    color: var(--primary-light);
}

.modular-asia-glance {
    margin-top: -2.5rem;
    position: relative;
    z-index: 2;
    padding-bottom: 0.5rem;
}

.modular-asia-glance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.modular-asia-glance-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem 1.35rem;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(229, 231, 235, 0.9);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.modular-asia-glance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
}

.modular-asia-glance-card--accent {
    background: linear-gradient(145deg, #fff9f0 0%, #fff 100%);
    border-color: rgba(255, 152, 0, 0.35);
}

.modular-asia-glance-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.35rem;
}

.modular-asia-glance-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.modular-asia-glance-note {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.45;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.modular-asia-intro {
    padding: 3rem 0 2rem;
    background: var(--bg-light-grey);
}

.modular-asia-intro-inner {
    max-width: 820px;
    margin: 0 auto;
}

.modular-asia-section-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}

.modular-asia-section-title--center {
    text-align: center;
}

.modular-asia-section-title--light {
    color: rgba(255, 255, 255, 0.98);
}

.modular-asia-section-sub {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    color: var(--text-light);
    margin: -0.5rem 0 2rem;
    font-size: 1rem;
}

.modular-asia-intro-text {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.75;
    margin: 0 0 1.1rem;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.modular-asia-programs {
    padding: 2.5rem 0 3.5rem;
    background: #fff;
}

.modular-asia-program-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.modular-asia-program-card {
    position: relative;
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    background: linear-gradient(180deg, #fafafa 0%, #fff 40%);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modular-asia-program-card:hover {
    border-color: rgba(255, 152, 0, 0.45);
    box-shadow: 0 8px 28px rgba(255, 152, 0, 0.12);
}

.modular-asia-program-card--wide {
    grid-column: 1 / -1;
    background: linear-gradient(120deg, #fffbf5 0%, #fff 55%);
}

.modular-asia-program-num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.08em;
    margin-bottom: 0.65rem;
}

.modular-asia-program-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.65rem;
    line-height: 1.35;
}

.modular-asia-program-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.modular-asia-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.modular-asia-inline-link:hover {
    gap: 0.55rem;
    color: var(--primary-color);
}

.modular-asia-visit {
    padding: 0 0 3.5rem;
    background: #fff;
}

.modular-asia-visit-panel {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    align-items: stretch;
    border-radius: 1.25rem;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a5f 0%, #0d2137 100%);
    color: #fff;
    box-shadow: 0 20px 50px rgba(13, 33, 55, 0.35);
}

.modular-asia-visit-text {
    padding: 2.25rem 2rem 2.25rem 2.25rem;
}

.modular-asia-visit-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin: 0 0 0.5rem;
}

.modular-asia-visit-title {
    font-size: 1.45rem;
    font-weight: 800;
    margin: 0 0 1.25rem;
    line-height: 1.3;
}

.modular-asia-visit-list {
    margin: 0 0 1rem;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    font-size: 0.98rem;
}

.modular-asia-visit-list li {
    margin-bottom: 0.35rem;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.modular-asia-visit-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 1.25rem;
    line-height: 1.55;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.modular-asia-register-block {
    margin-top: 0.25rem;
}

.modular-asia-register-hint {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem;
    line-height: 1.5;
}

.modular-asia-visit-text .nextgen-bina-register-btn.modular-asia-register-btn {
    width: 100%;
    max-width: 22rem;
    box-sizing: border-box;
}

.modular-asia-register-footnote {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 1rem 0 0;
    line-height: 1.45;
}

.modular-asia-visit-aside {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.modular-asia-visit-stat {
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modular-asia-visit-stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.25rem;
}

.modular-asia-visit-stat-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.modular-asia-partners {
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
}

.modular-asia-partners-lead {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto 1.75rem;
    font-size: 0.98rem;
    line-height: 1.6;
}

.modular-asia-partners-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.modular-asia-partner-chip {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
}

@media (max-width: 992px) {
    .modular-asia-glance-grid {
        grid-template-columns: 1fr;
    }

    .modular-asia-program-grid {
        grid-template-columns: 1fr;
    }

    .modular-asia-program-card--wide {
        grid-column: auto;
    }

    .modular-asia-visit-panel {
        grid-template-columns: 1fr;
    }

    .modular-asia-visit-aside {
        flex-direction: row;
        flex-wrap: wrap;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .modular-asia-visit-stat {
        flex: 1 1 140px;
    }
}

@media (max-width: 768px) {
    .modular-asia-hero-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 576px) {
    .modular-asia-hero {
        min-height: 360px;
    }

    .modular-asia-hero-meta {
        flex-direction: column;
        align-items: stretch;
    }

    .modular-asia-meta-chip {
        justify-content: center;
    }
}

