/* ======================================
   ICBEA - International Construction Brand Excellence Award
   Gold & Black Premium Theme
   Matching mciea.my layout structure
   ====================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Brand Palette (Based on New Logo) */
    --primary: #10455B;
    --primary-light: #1D6381;
    --primary-dark: #083040;
    --secondary: #8BC34A;
    --secondary-light: #A4D468;
    --secondary-dark: #6B9E35;
    --primary-glow: rgba(16, 69, 91, 0.25);
    --secondary-glow: rgba(139, 195, 74, 0.25);

    /* Assigning legacy variables to new palette (Teal & Green) */
    --gold: #10455B;
    /* Primary Teal */
    --gold-light: #8BC34A;
    /* Secondary Green */
    --gold-dark: #083040;
    /* Darker Teal */
    --gold-darker: #05212C;
    --gold-glow: rgba(16, 69, 91, 0.25);
    --secondary: #8BC34A;
    --secondary-glow: rgba(139, 195, 74, 0.25);

    /* New Light Green Theme (Hijau Cair) */
    --black: #EDF7ED;
    /* Very Light Green/Mint for main backgrounds */
    --black-light: #E1F0E1;
    /* Slightly deeper light green */
    --black-mid: #FFFFFF;
    /* White for cards to pop on light green */
    --dark-gray: #10455B;
    /* Dark Teal for headings/text */
    --gray: #4A635D;
    --light-gray: #A8BCC5;

    /* Text Colors for Light Theme */
    --text-primary: #10455B;
    /* Dark Teal for readability */
    --text-muted: #4A635D;
    /* Muted teal-green */

    /* Light backgrounds */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --cream: #F1F5F9;

    /* Danger/Red Palette (For CTAs) */
    --danger: #D32F2F;
    --danger-light: #EF5350;
    --danger-dark: #B71C1C;
    --danger-glow: rgba(211, 47, 47, 0.3);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 50%, var(--secondary) 100%);
    --gradient-gold-horizontal: linear-gradient(90deg, var(--secondary), var(--secondary-light), var(--secondary));
    --gradient-brand: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-red: linear-gradient(135deg, var(--danger) 0%, var(--danger-light) 100%);
    --gradient-dark: linear-gradient(180deg, #EDF7ED 0%, #E1F0E1 100%);

    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Outfit', sans-serif;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======== RESET ======== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ======================================
   NAVIGATION
   ====================================== */
.navbar-icbea {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s var(--ease);
}

.navbar-icbea.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(16, 69, 91, 0.1);
}

.navbar-brand-icbea {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo {
    height: 54px;
    width: auto;
    transition: all 0.3s var(--ease);
}

.navbar-icbea.scrolled .navbar-logo {
    height: 44px;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-bifa {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.navbar-brand-text small {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-top: 2px;
    opacity: 0.9;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .navbar-icbea .container {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 1400px;
        /* Allow for more horizontal space if screen is wide */
    }

    .navbar-collapse {
        flex-wrap: nowrap !important;
    }

    .navbar-nav {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 6px !important;
        /* Reduced gap for a more compact look */
        margin-left: 70px !important;
        /* Preserved breathing room between logo and HOME */
    }

    .nav-link-icbea {
        font-family: var(--font-accent);
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--text-primary) !important;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        padding: 8px 8px !important;
        /* Reduced horizontal padding */
        transition: all 0.3s ease;
        position: relative;
        white-space: nowrap !important;
    }

    .nav-link-icbea::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--secondary);
        transition: width 0.3s var(--ease);
    }

    .nav-link-icbea:hover,
    .nav-link-icbea.active {
        color: var(--secondary) !important;
    }

    .nav-link-icbea:hover::after,
    .nav-link-icbea.active::after {
        width: 60%;
    }
}

.nav-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--gradient-gold);
    color: var(--white) !important;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.nav-btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--secondary-glow);
    color: var(--white) !important;
}

/* Download Dropdown Styling - Distinctive Platinum Elevation (Redesigned) */
.premium-dropdown {
    min-width: 360px;
    padding: 15px 12px;
    border-radius: 24px;
    border: 1px solid rgba(16, 69, 91, 0.1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    box-shadow:
        0 20px 50px rgba(16, 69, 91, 0.2),
        0 10px 20px rgba(16, 69, 91, 0.1);
    margin-top: 5px !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px) scale(0.98);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    position: relative;
    cursor: default;
}

/* Hover Bridge - Prevents dropdown from disappearing when moving mouse from button to menu */
.premium-dropdown::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
    z-index: -1;
}

@media (min-width: 992px) {
    .download-dropdown-wrapper:hover .premium-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        transition-delay: 0s;
    }

    /* Add slight delay when leaving to prevent flickering */
    .download-dropdown-wrapper .premium-dropdown {
        transition-delay: 0.1s;
    }
}

.premium-dropdown-header {
    padding: 10px 15px 15px;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 12px;
}

.premium-dropdown-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(16, 69, 91, 0.1), transparent);
}

.premium-dropdown .premium-dropdown-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-radius: 16px;
    transition: all 0.3s var(--ease);
    border: 1px solid transparent;
    white-space: normal;
    position: relative;
    margin-bottom: 6px;
    text-decoration: none;
}

.premium-dropdown .premium-dropdown-item:not(.disabled-item):hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(139, 195, 74, 0.2);
    transform: translateX(4px);
    box-shadow: 0 8px 15px rgba(16, 69, 91, 0.05);
}

.premium-dropdown .premium-dropdown-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
    background: rgba(16, 69, 91, 0.05);
    color: var(--primary);
}

.premium-dropdown .premium-dropdown-item:not(.disabled-item):hover .premium-dropdown-icon {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 20px var(--secondary-glow);
}

.premium-dropdown .premium-dropdown-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.premium-dropdown .premium-dropdown-title {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    transition: color 0.3s ease;
}

.premium-dropdown .premium-dropdown-item:not(.disabled-item):hover .premium-dropdown-title {
    color: var(--secondary-dark);
}

.premium-dropdown .premium-dropdown-meta {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-dropdown .premium-dropdown-action {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(16, 69, 91, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.8rem;
    transition: all 0.3s var(--ease);
    opacity: 0;
    transform: translateX(-10px);
}

.premium-dropdown .premium-dropdown-item:not(.disabled-item):hover .premium-dropdown-action {
    opacity: 1;
    transform: translateX(0);
    background: rgba(139, 195, 74, 0.1);
    color: var(--secondary);
}

.premium-dropdown .premium-dropdown-item:not(.disabled-item):active {
    transform: scale(0.97) translateX(4px);
}

.premium-dropdown .premium-dropdown-divider {
    margin: 8px 15px;
    opacity: 0.05;
    border-top: 1px solid var(--primary);
}

.premium-dropdown .disabled-item {
    opacity: 0.5;
    cursor: not-allowed;
}

.premium-dropdown .premium-dropdown-badge {
    font-size: 0.6rem;
    font-weight: 800;
    background: var(--primary);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 100px;
    display: inline-block;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-btn-download.dropdown-toggle::after {
    display: none;
}

.nav-btn-register {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    background: var(--gradient-red);
    color: var(--white) !important;
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    transition: all 0.4s var(--ease);
    box-shadow: 0 6px 20px var(--danger-glow);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 3s infinite;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(211, 47, 47, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

.nav-btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: 0.6s;
    transform: skewX(-20deg);
}

.nav-btn-register:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 30px var(--danger-glow);
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--danger-dark) 0%, var(--danger) 100%);
    animation: none;
}

.nav-btn-register:hover::before {
    left: 150%;
}

/* Update mobile navigation buttons */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        margin: 15px -15px 0;
        padding: 25px;
        border-radius: 25px;
        box-shadow: 0 15px 40px rgba(16, 69, 91, 0.15);
        border: 1px solid rgba(139, 195, 74, 0.1);
    }

    .navbar-nav {
        gap: 15px !important;
        padding: 10px 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .nav-link-icbea {
        padding: 10px 0 !important;
        font-size: 0.9rem;
    }

    .nav-btn-download,
    .nav-btn-register {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 20px;
        margin: 5px auto;
    }

    .nav-item.dropdown {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .register-dropdown,
    .premium-dropdown {
        position: static !important;
        width: 100%;
        max-width: 320px;
        transform: none !important;
        margin: 10px auto 0 !important;
        box-shadow: none;
        border: 1px solid rgba(211, 47, 47, 0.1);
        display: none;
    }

    .premium-dropdown {
        border: 1px solid rgba(139, 195, 74, 0.1);
    }

    .download-dropdown-wrapper.show .premium-dropdown,
    .nav-item.dropdown.show .register-dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

/* Registration Dropdown Styling */
.register-dropdown {
    min-width: 300px;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid rgba(139, 195, 74, 0.2);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(16, 69, 91, 0.15);
    margin-top: 15px !important;
    border-top: 4px solid var(--danger);
}

.register-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 12px;
    transition: all 0.3s var(--ease);
    border: 1px solid transparent;
    white-space: normal;
}

.register-dropdown .dropdown-item:hover {
    background: rgba(211, 47, 47, 0.05);
    border-color: rgba(211, 47, 47, 0.1);
    transform: translateX(5px);
}

.register-dropdown .dropdown-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

.register-dropdown .dropdown-icon.forum {
    background: rgba(16, 69, 91, 0.1);
    color: var(--primary);
}

.register-dropdown .dropdown-icon.award {
    background: rgba(139, 195, 74, 0.1);
    color: var(--secondary);
}

.register-dropdown .dropdown-item:hover .dropdown-icon.forum {
    background: var(--primary);
    color: var(--white);
}

.register-dropdown .dropdown-item:hover .dropdown-icon.award {
    background: var(--secondary);
    color: var(--white);
}

.register-dropdown .dropdown-content {
    display: flex;
    flex-direction: column;
}

.register-dropdown .dropdown-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 2px;
}

.register-dropdown .dropdown-desc {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.register-dropdown .dropdown-divider {
    margin: 10px 0;
    opacity: 0.1;
}

/* Dropdown Animation */
.animate {
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }
}

.slideIn {
    animation-name: slideIn;
}

/* Remove caret from dropdown toggle */
.nav-btn-register.dropdown-toggle::after {
    display: none;
}

.navbar-toggler-icbea {
    border: 1px solid var(--gold);
    padding: 5px 9px;
}

.navbar-toggler-icbea .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2310455B' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ======================================
   HERO SECTION — Split layout, trophy right
   ====================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--black);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../assets/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    /* Melaraskan kepekatan (opacity) supaya tidak terlalu terang */
    pointer-events: none;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(21, 69, 91, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(21, 69, 91, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(16, 69, 91, 0.1);
    border: 1px solid rgba(139, 195, 74, 0.25);
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 8vw, 3.6rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
    padding-top: 50px;
    text-shadow: 0 4px 15px rgba(16, 69, 91, 0.05);
}

.hero-title .gold {
    background: linear-gradient(135deg, #1D6381 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    margin: 25px 0 35px;
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 5px;
    background: var(--gradient-gold);
    border-radius: 10px;
}

.hero-subtitle span {
    display: block;
    font-size: 1rem;
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 6px;
    border: none;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--secondary-glow);
    color: var(--white);
    opacity: 0.95;
}

.hero-btn.register {
    background: var(--gradient-red);
    box-shadow: 0 6px 20px var(--danger-glow);
}

.hero-btn.register:hover {
    background: linear-gradient(135deg, var(--danger-dark) 0%, var(--danger) 100%);
    box-shadow: 0 12px 30px var(--danger-glow);
}

.hero-btn-container {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

/* Hero Event Info - Advanced Premium Enhancement */
.hero-event-info-wrapper {
    margin-bottom: 45px;
    max-width: 720px;
    filter: drop-shadow(0 20px 40px rgba(16, 69, 91, 0.15));
    transition: all 0.4s var(--ease);
    position: relative;
    z-index: 10;
}

.hero-event-info-wrapper:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 25px 50px rgba(16, 69, 91, 0.2));
}

.hero-event-info {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* Background Pattern Decoration */
.hero-event-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

/* Soft Glow Accents */
.hero-event-info::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

@media (min-width: 992px) {
    .hero-event-info {
        flex-direction: row;
        border-radius: 20px 0 0 20px;
        clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 50%, calc(100% - 40px) 100%, 0 100%);
        padding-right: 35px;
    }
}

.hei-left,
.hei-right {
    position: relative;
    z-index: 1;
}

.hei-left {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .hei-left {
        padding-right: 20px;
    }
}

.hei-right {
    padding: 25px;
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .hei-right {
        padding-left: 20px;
    }
}

.hei-vertical-divider {
    display: none;
}

@media (min-width: 992px) {
    .hei-vertical-divider {
        display: block;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
        margin: 20px 0;
    }
}

/* Left Section: Date & Location */
.hei-date-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hei-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hei-date-section .hei-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.hei-left-divider {
    width: 50px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 10px;
    margin: 18px 0 18px 0;
    box-shadow: 0 2px 8px var(--secondary-glow);
}

.hei-location-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.hei-location-section .hei-icon-wrap {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    color: var(--danger-light);
    box-shadow: none;
    background: rgba(211, 47, 47, 0.15);
    border-color: rgba(211, 47, 47, 0.2);
    flex-shrink: 0;
}

.hei-location-section .hei-text {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Navigation Buttons Styling - Refined Compact Version */
.hei-navigation-btns {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    position: relative;
    z-index: 5;
}

.hei-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: white !important;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hei-nav-btn i,
.btn-icon-img {
    font-size: 0.8rem;
    width: 13px;
    height: 13px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hei-nav-btn.waze {
    background: linear-gradient(135deg, #33CCFF 0%, #17BAEF 100%);
}

.hei-nav-btn.google {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
}

.hei-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.hei-nav-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .hei-navigation-btns {
        margin-top: 20px;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
        gap: 12px;
    }

    .hei-nav-btn {
        padding: 10px 22px;
        font-size: 0.75rem;
        flex: 1;
        max-width: 170px;
        justify-content: center;
        border-radius: 10px;
    }

    .hei-nav-btn i,
    .btn-icon-img {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .hei-navigation-btns {
        gap: 8px;
    }

    .hei-nav-btn {
        padding: 10px 15px;
        font-size: 0.68rem;
        letter-spacing: 0.5px;
    }

    .hei-nav-btn i,
    .btn-icon-img {
        width: 14px;
        height: 14px;
    }
}

/* Right Section: Programme Schedule */
.hei-event-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 8px 0;
    transition: all 0.3s var(--ease);
}

.hei-event-row:hover .hei-event-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--secondary);
    color: white;
    box-shadow: 0 8px 20px var(--secondary-glow);
    border-color: transparent;
}

.hei-event-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.hei-event-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hei-event-title {
    font-family: var(--font-heading);
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.hei-title-prefix {
    font-size: 0.65rem;
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1px;
}

.hei-title-main {
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.hei-event-time {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.hei-horizontal-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    margin: 10px 0;
}

/* ==============================================
   PREMIUM DESKTOP ENHANCEMENTS FOR HERO EVENT INFO
   ============================================== */
@media (min-width: 992px) {
    /* 1. Sophisticated Card Container Refinement */
    .hero-event-info {
        background: linear-gradient(135deg, rgba(8, 48, 64, 0.95) 0%, rgba(16, 69, 91, 0.9) 100%);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        box-shadow: 
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            inset 0 0 30px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-right: none; /* Due to clip-path on right */
    }
    
    /* Elegant Glowing Accent Top Border */
    .hero-event-info-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 25px;
        right: 65px; /* Leave space for clip-path */
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, var(--secondary) 20%, var(--secondary-light) 50%, var(--secondary) 80%, transparent 100%);
        z-index: 20;
        opacity: 0.9;
        box-shadow: 0 1px 12px var(--secondary-glow);
    }

    /* 2. Left Section - Refined Layering */
    .hei-left {
        position: relative;
        /* Subtle inner highlight to create depth */
        box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.06);
    }

    /* 3. Right Section - Clean & Elegant */
    .hei-right {
        position: relative;
    }

    /* 4. Vertical Divider - Sophisticated Minimalist */
    .hei-vertical-divider {
        display: block;
        width: 1px;
        background: linear-gradient(to bottom, 
            rgba(255, 255, 255, 0.0), 
            rgba(255, 255, 255, 0.1) 20%, 
            rgba(255, 255, 255, 0.2) 50%, 
            rgba(255, 255, 255, 0.1) 80%, 
            rgba(255, 255, 255, 0.0) 100%
        );
        margin: 25px 0;
        position: relative;
    }
    
    /* 5. Event Rows - Premium Card-in-Card Effect */
    .hei-event-row {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        padding: 10px 16px;
        margin: 0 -12px; /* Pulls out slightly to give card shape without altering parent width */
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .hei-event-row:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(139, 195, 74, 0.4);
        box-shadow: 
            0 12px 30px -5px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    
    /* Icon Styling in Rows */
    .hei-event-icon {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
        color: var(--secondary);
        box-shadow: 
            0 4px 10px rgba(0, 0, 0, 0.2), 
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            inset 0 0 0 1px rgba(255, 255, 255, 0.05);
        transition: all 0.4s var(--ease);
    }
    
    .hei-event-row:hover .hei-event-icon {
        background: var(--gradient-gold);
        color: white;
        box-shadow: 0 6px 15px var(--secondary-glow);
        transform: scale(1.05);
        border-color: transparent;
    }

    /* 6. Refined Typography & Dividers */
    .hei-date-section .hei-text {
        text-shadow: 0 2px 15px rgba(255, 255, 255, 0.2);
        letter-spacing: 0.5px;
    }

    .hei-horizontal-divider {
        margin: 6px 0;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.08) 20%, 
            rgba(255, 255, 255, 0.08) 80%, 
            transparent 100%
        );
    }
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Hero Editorial Content Block - Premium Redesign */
.hero-premium-content {
    flex: 1.2;
    /* Give slightly more weight to the text side */
    position: relative;
    z-index: 5;
}

.editorial-hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 35px 45px;
    /* Reduced vertical padding */
    box-shadow:
        0 20px 50px rgba(16, 69, 91, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.editorial-hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(16, 69, 91, 0.12);
}

.decorative-b {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 13rem;
    /* Slightly smaller */
    font-family: var(--font-heading);
    font-weight: 900;
    color: rgba(16, 69, 91, 0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.editorial-content {
    position: relative;
    z-index: 1;
}

/* Architectural Hero Heading Redesign */
.premium-heading-architectural {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
}

.premium-heading-architectural .heading-sub {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--secondary);
    margin-bottom: 6px;
    padding-left: 3px;
    display: block;
}

.premium-heading-architectural .heading-main {
    position: relative;
    display: block;
    line-height: 0.85;
}

.premium-heading-architectural .text-fill {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 900;
    color: var(--primary);
    position: relative;
    z-index: 2;
    letter-spacing: -1.5px;
}

.premium-heading-architectural .text-outline {
    position: absolute;
    top: -5px;
    left: 6px;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(16, 69, 91, 0.08);
    z-index: 1;
    letter-spacing: -1.5px;
    user-select: none;
    pointer-events: none;
}

.premium-heading-architectural .heading-main::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: -15px;
    width: 80px;
    height: 10px;
    background: var(--secondary);
    opacity: 0.15;
    z-index: 0;
    border-radius: 2px;
}

.editorial-accent-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 10px;
    margin-bottom: 25px;
    /* Tighter spacing */
}

.editorial-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Reduced gap */
}

.editorial-paragraphs .premium-text {
    font-size: 0.98rem;
    line-height: 1.6;
    /* Tighter line height */
    color: var(--text-primary);
    opacity: 0.9;
    margin-bottom: 0;
}

.highlight-marker {
    display: inline;
    background-color: rgba(139, 195, 74, 0.1);
    color: var(--primary);
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 3px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    margin: 0 1px;
    transition: all 0.3s var(--ease);
}

.highlight-marker.secondary {
    background-color: rgba(212, 166, 53, 0.1);
}

.editorial-hero-card:hover .highlight-marker {
    background-color: rgba(139, 195, 74, 0.2);
}

.editorial-hero-card:hover .highlight-marker.secondary {
    background-color: rgba(212, 166, 53, 0.2);
}

.premium-text.emphasis {
    position: relative;
    padding-left: 20px;
    font-style: italic;
    font-weight: 700;
    color: var(--primary);
    margin: 8px 0;
    /* Reduced margin */
    border: none;
}

.premium-text.emphasis::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 3px;
    background: var(--secondary);
    border-radius: 10px;
}

.signature-statement {
    margin-top: 30px;
    padding: 24px 35px 24px 65px;
    /* Increased left padding for icon, right for balance */
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 15px 35px rgba(16, 69, 91, 0.2);
    overflow: hidden;
    /* Contain the decoration */
}

.signature-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    /* Center vertically */
    width: 32px;
    height: 32px;
    background: var(--gradient-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    box-shadow: 0 4px 12px var(--secondary-glow);
    z-index: 2;
}

.signature-quote-decoration {
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    font-family: var(--font-heading);
}

.signature-statement p {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 0;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .editorial-hero-card {
        padding: 40px 35px;
    }

    .editorial-hero-card .premium-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 991px) {
    .hero-premium-content {
        margin-top: 40px;
        width: 100%;
    }

    .editorial-hero-card {
        background: rgba(255, 255, 255, 0.9);
    }
}

.hero-image img {
    max-height: 550px;
    width: auto;
    filter: drop-shadow(0 20px 60px rgba(212, 166, 53, 0.25));
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 69, 91, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 1.4rem;
}

.hero-scroll span {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* Hero Countdown Timer */
.hero-countdown-container {
    margin-bottom: 40px;
    max-width: fit-content;
}

.countdown-box {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 195, 74, 0.5);
    border-radius: 20px;
    padding: 20px 25px;
    box-shadow: 0 20px 50px rgba(16, 69, 91, 0.15), 0 0 30px rgba(139, 195, 74, 0.1);
    transition: all 0.3s var(--ease);
    animation: boxPulse 4s infinite ease-in-out;
}

@keyframes boxPulse {

    0%,
    100% {
        box-shadow: 0 20px 50px rgba(16, 69, 91, 0.15), 0 0 30px rgba(139, 195, 74, 0.1);
    }

    50% {
        box-shadow: 0 20px 60px rgba(16, 69, 91, 0.2), 0 0 45px rgba(139, 195, 74, 0.25);
    }
}

.countdown-box:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--secondary);
    box-shadow: 0 25px 60px rgba(16, 69, 91, 0.2), 0 0 40px rgba(139, 195, 74, 0.3);
    animation-play-state: paused;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    width: 110px;
    flex: 0 0 110px;
}

.countdown-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    display: block;
    font-variant-numeric: tabular-nums;
    width: 100%;
    text-align: center;
}

.countdown-label {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.countdown-divider {
    width: 2px;
    height: 55px;
    background: linear-gradient(to bottom, transparent, rgba(16, 69, 91, 0.2), transparent);
}

.countdown-info {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.5px;
    opacity: 0.9;
    padding-left: 5px;
}

.countdown-info i {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hero-countdown-container {
        margin: 0 auto 30px;
    }

    .countdown-item {
        min-width: 65px;
        padding: 8px 12px;
    }

    .countdown-value {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }

    .countdown-divider {
        height: 30px;
    }
}

/* ======================================
   SECTION COMMON — light background sections
   ====================================== */
.section-light {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.section-cream {
    padding: 100px 0;
    background: var(--off-white);
}

.section-dark {
    padding: 100px 0;
    background: var(--black);
    color: var(--text-primary);
}

.section-gold-bg {
    padding: 100px 0;
    background: var(--black-light);
    position: relative;
    overflow: hidden;
}

.section-gold-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(16, 69, 91, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(139, 195, 74, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.section-title .gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-dark .section-title {
    color: var(--text-primary);
}

.section-light .section-title,
.section-cream .section-title {
    color: var(--text-primary);
}

.gold-line {
    width: 70px;
    height: 3px;
    background: var(--secondary);
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: var(--text-muted);
}

/* ======================================
   WHY ENTER SECTION
   ====================================== */
.why-enter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(16, 69, 91, 0.15);
    border-color: rgba(139, 195, 74, 0.3);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(16, 69, 91, 0.1), rgba(139, 195, 74, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.why-card:hover .why-icon {
    background: var(--secondary);
}

.why-icon i {
    font-size: 1.6rem;
    color: var(--gold);
    transition: color 0.3s;
}

.why-card:hover .why-icon i {
    color: var(--black);
}

.why-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ======================================
   AWARDS CATEGORIES
   ====================================== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.award-card {
    background: var(--black-mid);
    border: 1px solid rgba(139, 195, 74, 0.12);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.4s var(--ease);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.award-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.award-card:hover {
    border-color: rgba(139, 195, 74, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(5, 26, 34, 0.4);
}

.award-card:hover::after {
    transform: scaleX(1);
}

.award-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 69, 91, 0.1);
    border: 1px solid rgba(139, 195, 74, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.award-card:hover .award-icon {
    background: var(--secondary);
    border-color: transparent;
}

.award-icon i {
    font-size: 1.4rem;
    color: var(--gold);
    transition: color 0.3s;
}

.award-card:hover .award-icon i {
    color: var(--black);
}

.award-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.award-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ======================================
   SUBMISSION PROCEDURE
   ====================================== */
.procedure-steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.procedure-step {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 14px;
    transition: all 0.3s var(--ease);
}

.procedure-step:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 25px rgba(212, 166, 53, 0.08);
    transform: translateX(6px);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-number span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
}

.step-content h4 {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ======================================
   CEREMONY / INCENTIVES SECTION
   ====================================== */
.ceremony-section {
    padding: 100px 0 80px;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.ceremony-top-header {
    text-align: center;
    margin-bottom: 50px;
}

.ceremony-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.ceremony-main-title .gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ceremony-date-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 400;
}

.ceremony-date-text strong {
    font-weight: 700;
}

/* Incentives Header */
.incentives-header {
    text-align: center;
    margin-bottom: 60px;
}

.incentives-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.incentives-title .gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.incentives-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Trophy + Incentive Cards Layout */
.trophy-incentives-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Incentive Columns */
.incentive-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Incentive Card */
.incentive-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 10px 0;
    transition: all 0.3s var(--ease);
}

.incentive-card:hover {
    transform: translateY(-2px);
}

/* Left cards — content then check */
.incentive-card-left {
    text-align: right;
    justify-content: flex-end;
}

.incentive-card-left .incentive-card-content {
    order: 1;
}

.incentive-card-left .incentive-check {
    order: 2;
}

/* Right cards — check then content */
.incentive-card-right {
    text-align: left;
    justify-content: flex-start;
}

.incentive-card-right .incentive-check {
    order: 1;
}

.incentive-card-right .incentive-card-content {
    order: 2;
}

/* Checkmark Circle */
.incentive-check {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 166, 53, 0.35);
    flex-shrink: 0;
    margin-top: 4px;
    transition: all 0.3s var(--ease);
}

.incentive-card:hover .incentive-check {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(212, 166, 53, 0.5);
}

.incentive-check i {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
}

/* Card Content */
.incentive-card-content h5 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.incentive-card-content p {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Center Trophy */
.trophy-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.trophy-img {
    max-height: 480px;
    width: auto;
    filter: drop-shadow(0 30px 60px rgba(16, 69, 91, 0.2));
    animation: trophyFloat 5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.trophy-glow-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 69, 91, 0.06) 0%, transparent 70%);
    z-index: 1;
}

@keyframes trophyFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* ======================================
   GALLERY / CAROUSEL
   ====================================== */
.carousel-item img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 14px;
}

.carousel-inner {
    border-radius: 14px;
    overflow: hidden;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(16, 69, 91, 0.25);
    border-radius: 50%;
    border: 1px solid var(--secondary);
    padding: 10px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gold);
    border: none;
    opacity: 0.35;
}

.carousel-indicators .active {
    opacity: 1;
}

/* ======================================
   CONTACT SECTION — Dark gold background
   ====================================== */
.contact-section {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold-horizontal);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-block h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.contact-info-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 69, 91, 0.1);
    border: 1px solid rgba(139, 195, 74, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    color: var(--gold);
    font-size: 1rem;
}

.contact-detail-text h5 {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 2px;
}

.contact-detail-text p,
.contact-detail-text a {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

.contact-detail-text a:hover {
    color: var(--gold);
}

.contact-people h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.person-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 166, 53, 0.1);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s var(--ease);
}

.person-card:hover {
    border-color: rgba(139, 195, 74, 0.3);
    background: rgba(16, 69, 91, 0.06);
    transform: translateX(5px);
}

.person-avatar {
    width: 46px;
    height: 46px;
    background: rgba(16, 69, 91, 0.15);
    border: 1px solid rgba(139, 195, 74, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.person-avatar i {
    color: var(--gold);
}

.person-info h5 {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 3px;
}

.person-info a {
    font-size: 0.82rem;
    color: var(--gold);
}

.person-info a:hover {
    color: var(--gold-light);
}

/* ======================================
   FOOTER
   ====================================== */
.footer {
    background: var(--primary-dark);
    padding: 80px 0 30px;
    color: var(--white);
    border-top: 1px solid rgba(139, 195, 74, 0.1);
}

.footer-brand-container {
    margin-bottom: 30px;
}

.footer-logo-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-main {
    height: 140px;
    width: auto;
}

.logo-divider {
    width: 1px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
}

.footer-logo-secondary {
    height: 125px;
    width: auto;
    opacity: 0.95;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 90%;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s var(--ease);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 18px;
    display: flex;
    align-items: center;
}

.footer-links li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.8;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s var(--ease);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--secondary);
    font-size: 1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--gold);
}

.whatsapp-link {
    display: inline-block;
    font-weight: 700;
    color: var(--white) !important;
}

.footer-bottom {
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ======================================
   ANIMATIONS
   ====================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ======================================
   FORUM TOPICS & SPEAKERS (Programme Highlights)
   ====================================== */
.forum-topics-section {
    padding: 120px 0;
    background: var(--black);
    /* Mint Light Green */
    position: relative;
    overflow: hidden;
}

/* Background Decoration for the section */
.forum-topics-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.forum-tracks-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

.forum-track-card {
    display: flex;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(16, 69, 91, 0.06);
    border: 1px solid rgba(139, 195, 74, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.forum-track-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 80px rgba(16, 69, 91, 0.12);
    border-color: rgba(139, 195, 74, 0.3);
}

.forum-track-card.track-reverse {
    flex-direction: row-reverse;
}

/* Left Side - Info */
.track-info {
    flex: 0 0 38%;
    padding: 70px 50px;
    background: var(--primary);
    /* Dark Teal */
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.track-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.3;
    mix-blend-mode: luminosity;
    pointer-events: none;
}

.track-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--primary) 20%, rgba(16, 69, 91, 0.4) 100%);
}

.track-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0, 0.2, 1);
}

.forum-track-card:hover .track-bg-image img {
    transform: scale(1.15) rotate(1deg);
}

.track-reverse .track-info {
    background: var(--primary-dark);
}

.track-reverse .track-bg-image::after {
    background: linear-gradient(to bottom right, var(--primary-dark) 20%, rgba(5, 33, 44, 0.4) 100%);
}

/* Architectural Shape Background */
.track-info::before {
    content: 'B';
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-family: var(--font-heading);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.track-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--secondary);
    opacity: 0.3;
    margin-bottom: 25px;
    display: block;
    position: relative;
    z-index: 2;
}

.track-topic {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.track-topic::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin-top: 25px;
    border-radius: 2px;
}

/* Right Side - Speakers */
.track-speakers {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    gap: 45px;
    background: linear-gradient(135deg, #ffffff 0%, #fcfdfc 100%);
}

.role-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.role-label i {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Keynote Speaker Block */
.speaker-block.keynote {
    padding: 35px 40px;
    background: rgba(139, 195, 74, 0.03);
    border-left: 5px solid var(--secondary);
    border-radius: 0 20px 20px 0;
    box-shadow: 5px 5px 20px rgba(139, 195, 74, 0.03);
    position: relative;
}

.speaker-block.keynote::before {
    content: '\f10d';
    /* Quote icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    color: var(--secondary);
    opacity: 0.05;
}

.speaker-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.2;
}

.speaker-title {
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.session-theme {
    margin-top: 20px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    color: var(--primary);
    line-height: 1.7;
    position: relative;
    padding-left: 15px;
}

.session-theme::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: rgba(16, 69, 91, 0.1);
}

/* Grid Layout for Moderator & Panelists */
.speakers-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 50px;
}

.panelists-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.panelists-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    padding-left: 0;
    transition: all 0.3s var(--ease);
}

.panelists-list li strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.2px;
}

.panelists-list li span {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Reverse Responsive Fix */
@media (max-width: 991px) {

    .forum-track-card,
    .forum-track-card.track-reverse {
        flex-direction: column;
    }

    .track-info {
        padding: 50px 40px;
    }

    .track-speakers {
        padding: 50px 40px;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ======================================
   AWARD CATEGORIES REDESIGN
   ====================================== */
.awards-redesign-section {
    position: relative;
    overflow: hidden;
}

.awards-zone-header {
    text-align: center;
    margin-bottom: 60px;
}

.zone-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16, 69, 91, 0.08);
    border: 1px solid rgba(139, 195, 74, 0.2);
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.zone-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 4px;
}

.zone-count {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.zone-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Zone A: Company Awards */
.company-awards-zone {
    padding: 100px 0;
    background: var(--black-mid);
    /* Pure White */
    position: relative;
}

.company-awards-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.editorial-column {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 1px solid rgba(16, 69, 91, 0.08);
    padding-left: 30px;
}

.editorial-column:first-child {
    border-left: none;
    padding-left: 0;
}

.category-item-editorial {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(16, 69, 91, 0.04);
    transition: all 0.3s var(--ease);
}

.category-item-editorial:last-child {
    border-bottom: none;
}

.item-number {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--gold-light);
    opacity: 0.6;
    margin-top: 2px;
}

.item-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    transition: all 0.3s var(--ease);
}

.category-item-editorial:hover {
    padding-left: 10px;
    background: linear-gradient(to right, rgba(139, 195, 74, 0.05), transparent);
}

.category-item-editorial:hover .item-text {
    color: var(--secondary-dark);
}

/* Zone B: Individual Awards */
.individual-awards-zone {
    padding: 100px 0;
    background: var(--black);
    /* Light Cream/Green */
    position: relative;
}

.individual-awards-flow-layout {
    margin-top: 60px;
}

.flow-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-item-flow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid rgba(139, 195, 74, 0.15);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 15px rgba(16, 69, 91, 0.03);
}

.category-item-flow i {
    font-size: 0.85rem;
    color: var(--secondary);
    transition: all 0.3s var(--ease);
}

.category-item-flow span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

.category-item-flow:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--secondary);
    box-shadow: 0 10px 25px rgba(16, 69, 91, 0.1);
    background: var(--primary);
}

.category-item-flow:hover span,
.category-item-flow:hover i {
    color: var(--white);
}

/* ======================================
   LEGACY GALLERY
   ====================================== */
.legacy-gallery-section {
    padding: 100px 0;
    background: var(--black-mid);
    position: relative;
    overflow: hidden;
}

.marquee-wrapper {
    overflow: hidden;
    padding: 10px 0;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 20px;
    width: max-content;
}

.marquee-item {
    width: 350px;
    height: 230px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(16, 69, 91, 0.1);
    border: 1px solid rgba(139, 195, 74, 0.2);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.marquee-item:hover img {
    transform: scale(1.1);
}

.marquee-left {
    animation: marqueeLeft 60s linear infinite;
}

.marquee-right {
    animation: marqueeRight 60s linear infinite;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 991px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        padding-bottom: 40px;
        gap: 30px;
    }

    .hero-premium-content {
        margin-top: 10px;
        padding: 25px 20px;
        text-align: left;
    }

    .hero-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }

    .hero-event-info-wrapper {
        order: 1;
        margin-bottom: 25px !important;
        width: 100%;
        max-width: 100%;
    }

    .hei-event-title {
        flex-direction: row !important;
        align-items: center;
        gap: 6px;
        justify-content: center;
    }

    .hero-countdown-container {
        order: 2;
        margin-bottom: 40px !important;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-title {
        order: 3;
        margin-bottom: 15px !important;
        padding-top: 0 !important;
    }

    .hero-text .hero-btn-container {
        order: 5;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px !important;
    }

    .hero-text h4 {
        order: 4;
        font-size: 1rem !important;
        margin-bottom: 25px !important;
        line-height: 1.5;
        text-align: center;
        padding-left: 0 !important;
    }

    .hero-text h4::before {
        display: none !important;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.95rem;
        text-align: center;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }

    .hero-image img {
        max-height: 300px;
    }

    .why-enter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .trophy-incentives-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .incentive-card-left {
        text-align: left;
        justify-content: flex-start;
        flex-direction: row-reverse;
    }

    .trophy-center {
        order: -1;
    }

    .trophy-img {
        max-height: 350px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .forum-track-card,
    .forum-track-card.track-reverse {
        flex-direction: column;
    }

    .track-info {
        padding: 40px 30px;
    }

    .track-topic {
        font-size: 1.5rem;
    }

    .track-speakers {
        padding: 40px 30px;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    /* Award Categories Mobile */
    .company-awards-editorial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .editorial-column {
        border-left: none;
        padding-left: 0;
    }

    .category-item-editorial {
        padding: 15px 0;
    }

    .item-text {
        font-size: 0.95rem;
    }

    .individual-awards-zone {
        padding: 60px 0;
    }

    .category-item-flow {
        padding: 10px 20px;
    }

    .category-item-flow span {
        font-size: 0.85rem;
    }

    /* Gallery Mobile */
    .marquee-item {
        width: 250px;
        height: 180px;
    }
}

@media (max-width: 767px) {

    /* ===== MOBILE AUDIT: GLOBAL OVERFLOW LOCK ===== */
    html,
    body {
        overflow-x: hidden;
    }

    * {
        max-width: 100vw;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    /* ===== NAVIGATION ===== */
    .navbar-brand-text small {
        display: none;
    }

    .navbar-brand-text {
        font-size: 1rem;
    }

    .navbar-logo {
        height: 38px !important;
    }

    /* ===== MACRO SPACING: Section gaps standardised to 40-50px ===== */
    .section-light,
    .section-cream,
    .section-dark,
    .ceremony-section,
    .contact-section {
        padding: 45px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-gold-bg {
        padding: 45px 0;
    }

    .forum-topics-section {
        padding: 50px 0;
    }

    .forum-tracks-container {
        gap: 35px;
        margin-top: 35px;
    }

    .legacy-gallery-section {
        padding: 45px 0 30px 0;
    }

    .vvip-architectural-section {
        padding: 45px 0;
    }

    .vvip-main-showcase {
        gap: 60px;
    }

    .ceremony-top-header {
        margin-bottom: 30px;
    }

    .incentives-header {
        margin-bottom: 35px;
    }

    /* ===== TYPOGRAPHY SCALING ===== */
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .hero-glow {
        width: 250px;
        height: 250px;
    }

    .section-title {
        font-size: 1.4rem;
        line-height: 1.25;
        letter-spacing: 0.3px;
    }

    .section-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
        text-wrap: balance;
    }

    .ceremony-main-title {
        font-size: 1.4rem;
        line-height: 1.25;
    }

    .incentives-title {
        font-size: 1.15rem;
    }

    .header-title {
        font-size: 1.6rem;
        line-height: 1.15;
    }

    .header-label {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    .header-subtitle {
        font-size: 0.9rem;
    }

    .zone-title {
        font-size: 1.4rem;
    }

    .zone-description {
        font-size: 0.9rem;
    }

    /* Paragraph standardisation */
    .why-card p,
    .award-info p,
    .step-content p,
    .incentive-card-content p,
    .contact-info-block p,
    .editorial-paragraphs .premium-text,
    .ceremony-date-text {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    /* Headings in cards */
    .why-card h4 {
        font-size: 1rem;
    }

    .award-info h4 {
        font-size: 1rem;
    }

    .incentive-card-content h5 {
        font-size: 0.95rem;
    }

    .contact-info-block h3 {
        font-size: 1.35rem;
    }

    .contact-people h4 {
        font-size: 1.1rem;
    }

    /* ===== OVERFLOW PREVENTION ===== */
    .track-topic,
    .speaker-name,
    .panelists-list li strong,
    .content-name,
    .item-name,
    .gallery-title {
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }

    /* ===== WHY PARTICIPATE ===== */
    .why-enter-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-card {
        padding: 28px 22px;
    }

    /* ===== FORUM TOPICS ===== */
    .forum-track-card {
        border-radius: 20px;
    }

    .track-info {
        padding: 30px 22px;
    }

    .track-number {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .track-topic {
        font-size: 1.15rem;
        line-height: 1.3;
    }

    .track-topic::after {
        margin-top: 15px;
    }

    .track-speakers {
        padding: 28px 22px;
        gap: 30px;
    }

    .speaker-block.keynote {
        padding: 22px 20px;
        border-radius: 0 14px 14px 0;
    }

    .speaker-name {
        font-size: 1.05rem;
    }

    .speaker-title {
        font-size: 0.85rem;
    }

    .session-theme {
        font-size: 0.95rem;
    }

    .panelists-list li strong {
        font-size: 0.95rem;
    }

    .panelists-list li span {
        font-size: 0.82rem;
    }

    .speakers-grid {
        gap: 25px;
    }

    /* ===== CEREMONY / INCENTIVES ===== */
    .hero-image img {
        max-height: 250px;
    }

    .trophy-img {
        max-height: 220px;
    }

    .trophy-incentives-layout {
        gap: 25px;
    }

    .incentive-card {
        gap: 12px;
    }

    .incentive-check {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    /* ===== AWARD CATEGORIES ===== */
    .company-awards-zone {
        padding: 45px 0;
    }

    .individual-awards-zone {
        padding: 45px 0;
    }

    .category-item-flow {
        padding: 10px 16px;
    }

    .category-item-flow span {
        font-size: 0.8rem;
    }

    /* ===== GALLERY ===== */
    .carousel-item img {
        height: 220px;
        border-radius: 10px;
    }

    .marquee-item {
        width: 200px;
        height: 140px;
        border-radius: 10px;
    }

    /* ===== CONTACT ===== */
    .contact-grid {
        gap: 30px;
    }

    .contact-detail {
        gap: 12px;
    }

    .contact-detail-icon {
        width: 44px;
        height: 44px;
    }

    .person-card {
        padding: 14px 16px;
    }

    /* ===== PROCEDURE STEPS ===== */
    .procedure-step {
        flex-direction: column;
        text-align: center;
        padding: 22px 20px;
        gap: 16px;
    }

    .step-number {
        width: 48px;
        height: 48px;
    }

    .step-number span {
        font-size: 1.2rem;
    }

    /* ===== FOOTER ===== */
    .footer {
        padding: 45px 0 25px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-heading {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer-heading::after {
        bottom: -8px;
    }

    .footer-links a {
        font-size: 0.88rem;
    }

    .footer-description {
        font-size: 0.88rem;
        max-width: 100%;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 0.78rem;
        text-align: center;
    }

    .footer-logo-main {
        height: 90px;
    }

    .footer-logo-secondary {
        height: 80px;
    }

    /* ===== TOUCH ERGONOMICS ===== */
    .hero-btn,
    .nav-btn-download,
    .nav-btn-register,
    .cta-editorial-button,
    .cta-refined-button {
        min-height: 48px;
    }

    /* ===== COUNTDOWN ===== */
    .countdown-box {
        padding: 15px 10px;
    }

    .countdown-item {
        width: auto;
        flex: 1;
        padding: 5px;
    }

    .countdown-value {
        font-size: 1.6rem;
    }

    .countdown-label {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }

    .countdown-divider {
        height: 28px;
    }

    /* ===== EDITORIAL HERO CARD ===== */
    .editorial-hero-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .decorative-b {
        font-size: 7rem;
        top: -10px;
        right: -10px;
    }

    .premium-heading-architectural .text-fill,
    .premium-heading-architectural .text-outline {
        font-size: 1.6rem;
    }

    .editorial-accent-line {
        margin-bottom: 18px;
    }

    .signature-statement {
        margin-top: 20px;
        padding: 20px 20px 20px 50px;
        border-radius: 14px;
    }

    .signature-statement p {
        font-size: 0.9rem;
    }

    .signature-icon {
        width: 28px;
        height: 28px;
        left: 14px;
        font-size: 0.65rem;
    }

    /* ===== VVIP SHOWCASE ===== */
    .showcase-img {
        height: 320px;
    }

    .block-2 .showcase-img {
        height: 280px;
    }

    .content-name {
        font-size: 1.2rem;
    }

    .block-2 .content-name {
        font-size: 1.1rem;
    }

    .content-tag {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .content-title {
        font-size: 0.88rem;
    }

    /* ===== GALLERY ITEMS ===== */
    .gallery-item,
    .tier-supporting {
        grid-column: span 12;
    }

    .item-img-box {
        height: 280px;
    }

    .item-img-box.small {
        height: 220px;
    }

    .item-name {
        font-size: 0.92rem;
    }

    .item-role {
        font-size: 0.72rem;
    }
}

/* ======================================
   VVIP GUEST OF HONOR SECTION
   ====================================== */
/* ======================================
   VVIP ARCHITECTURAL SHOWCASE
   ====================================== */
.vvip-architectural-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

/* Custom Section Header */
.vvip-custom-header {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.header-line {
    width: 100px;
    height: 8px;
    background: var(--primary);
    margin-bottom: 12px;
}

.header-main-content {
    flex-grow: 1;
}

.header-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.header-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.header-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0;
}

.header-badge {
    text-align: right;
    border-left: 1px solid rgba(16, 69, 91, 0.1);
    padding-left: 40px;
}

.header-badge .year {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
}

.header-badge .edition {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--secondary);
}

/* Main Showcase Blocks */
.vvip-main-showcase {
    display: flex;
    flex-direction: column;
    gap: 120px;
    position: relative;
    z-index: 1;
}

.showcase-block {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    gap: 30px;
}

.showcase-visual {
    grid-column: span 7;
    position: relative;
    z-index: 1;
}

.visual-frame {
    position: relative;
    border-radius: 8px;
    overflow: visible;
    /* Changed to show decorations */
    box-shadow: 0 30px 60px rgba(16, 69, 91, 0.12);
}

.frame-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 4px solid var(--secondary);
    border-left: 4px solid var(--secondary);
    z-index: -1;
    opacity: 0.3;
}

.block-2 .frame-decoration {
    left: auto;
    right: -20px;
    border-left: none;
    border-right: 4px solid var(--secondary);
}

.showcase-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: 50% 20%;
    display: block;
    border-radius: 8px;
    transition: transform 1.5s var(--ease);
}

.showcase-block:hover .showcase-img {
    transform: scale(1.02);
}

.showcase-content {
    grid-column: span 5;
    padding: 60px 50px;
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(16, 69, 91, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(16, 69, 91, 0.05);
    position: relative;
    z-index: 10;
    overflow: hidden;
    /* For background number */
}

.content-bg-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(16, 69, 91, 0.03);
    line-height: 1;
    z-index: -1;
    pointer-events: none;
    user-select: none;
}

.block-2 .content-bg-number {
    right: auto;
    left: -10px;
}

.content-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary);
    opacity: 0.2;
}

.content-accent-line.right {
    left: auto;
    right: 0;
}

.block-1 .showcase-content {
    margin-left: -100px;
}

.block-2 .showcase-content {
    margin-right: -100px;
}

/* ── Protocol Hierarchy Refinements ── */
.block-2 .showcase-img {
    height: 420px;
}

.block-2 .showcase-content {
    transform: scale(0.9);
    transform-origin: center right;
    padding: 40px 45px;
}

.block-3 .showcase-img {
    height: 350px;
}

.block-3 .showcase-content {
    transform: scale(0.85);
    transform-origin: center left;
    padding: 30px 40px;
    margin-left: -80px;
}

.content-tag {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.content-tag::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(16, 69, 91, 0.1), transparent);
}

.block-2 .content-tag::after {
    display: none;
}

.block-2 .content-tag::before {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(270deg, rgba(16, 69, 91, 0.1), transparent);
}

.content-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 20px;
}

.block-2 .content-name {
    font-size: 1.8rem;
}

.block-3 .content-name {
    font-size: 1.6rem;
}

.content-separator {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin-bottom: 25px;
    border-radius: 2px;
}

.content-title {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 0;
}

.content-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-top: 25px;
    font-weight: 400;
}

/* Honor Roll Gallery */
.vvip-honor-roll-gallery {
    position: relative;
    z-index: 1;
}

.gallery-header {
    display: flex;
    align-items: center;
    gap: 30px;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 0;
    white-space: nowrap;
}

.gallery-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(16, 69, 91, 0.2), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.gallery-item {
    grid-column: span 4;
}

.tier-supporting {
    grid-column: span 3;
}

.item-inner {
    background: var(--white);
    border: 1px solid rgba(16, 69, 91, 0.05);
    padding: 20px;
    height: 100%;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.gallery-item:hover .item-inner {
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(16, 69, 91, 0.05);
    transform: translateY(-5px);
}

.item-img-box {
    width: 100%;
    height: 340px;
    /* Increased from 280px */
    overflow: hidden;
    margin-bottom: 20px;
    background: #f8f8f8;
}

.item-img-box.small {
    height: 250px;
    /* Increased from 220px */
}

.item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    /* Prioritize upper center (face region) */
    transition: all 0.6s var(--ease);
}

.gallery-item:hover .item-img {
    transform: scale(1.05);
}

.item-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.item-role {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0;
    text-wrap: balance;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .header-title {
        font-size: 2.5rem;
    }

    .showcase-content {
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .vvip-architectural-section {
        padding: 80px 0;
    }

    .vvip-custom-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .header-badge {
        border-left: none;
        border-top: 1px solid rgba(16, 69, 91, 0.1);
        padding-left: 0;
        padding-top: 20px;
        text-align: left;
        width: 100%;
    }

    .showcase-block {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .showcase-visual {
        width: 100%;
    }

    .showcase-img {
        height: 400px;
    }

    .showcase-content {
        width: 90%;
        margin: -60px auto 0 !important;
        padding: 30px;
        text-align: center;
    }

    /* Reset secondary hierarchy scaling on mobile — stacked layout doesn't benefit from scale */
    .block-2 .showcase-content {
        transform: none;
        transform-origin: unset;
    }

    .block-2 .showcase-img {
        height: 360px;
    }

    .block-2 .content-name {
        font-size: 1.5rem;
    }

    .content-separator {
        margin-left: auto;
        margin-right: auto;
    }

    .text-end {
        text-align: center !important;
    }

    .visual-accent-text {
        display: none;
    }

    .gallery-item,
    .tier-supporting {
        grid-column: span 6;
    }
}

@media (max-width: 767px) {
    .header-title {
        font-size: 2rem;
    }

    .gallery-item,
    .tier-supporting {
        grid-column: span 12;
    }
}

/* ==========================================================================
   DESKTOP GRID ALIGNMENT & TYPOGRAPHY WRAP FIX
   ========================================================================== */
@media (min-width: 1024px) {
    .gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(12, 1fr) !important;
        align-items: stretch !important;
        gap: 30px !important;
    }

    .gallery-item {
        display: flex !important;
        flex-direction: column !important;
    }

    .item-inner {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 1 auto !important;
        height: 100% !important;
        padding: 25px 20px !important;
    }

    .item-img-box.small {
        height: 130px !important;
        flex: 0 0 130px !important;
        /* Force fixed smaller height and prevent shrinking */
        flex-shrink: 0 !important;
        margin-bottom: 20px !important;
        background: transparent !important;
        display: block !important;
    }

    .item-img-box.small .item-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        /* Match top-tier members for uniformity */
        object-position: 50% 20% !important;
        /* Focus on the face area */
    }

    /* Target only the bottom 4 cards for text flexibility and consistency */
    .tier-supporting .item-info {
        flex: 1 0 auto !important;
        /* Allow growing, prevent shrinking */
        min-height: 90px !important;
        /* Reduced baseline for better fit */
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding-top: 0 !important;
        width: 100% !important;
    }

    .item-info {
        flex: 1 1 auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding-top: 0 !important;
        width: 100% !important;
    }

    .item-role {
        max-width: 100% !important;
        padding-right: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        display: block !important;
        text-wrap: wrap !important;
        line-height: 1.5 !important;
    }
}


