/* =====================================================
   IBS GLOBAL – LUXURY BLUE & GOLD THEME
===================================================== */

:root {
    --primary-blue: #06162c;
    --deep-blue: #020b18;
    --royal-blue: #0a2b52;
    --soft-blue: #123d6c;

    --gold: #d5aa54;
    --light-gold: #f2d58c;
    --dark-gold: #9f7429;

    --white: #ffffff;
    --soft-white: #edf4fc;
    --muted-text: #aebed1;

    --border-gold: rgba(213, 170, 84, 0.28);
    --glass-blue: rgba(7, 29, 55, 0.82);

    --heading-font: "Cinzel", serif;
    --body-font: "Manrope", sans-serif;

    --header-width: 1420px;
    --header-height: 88px;

    --transition: 0.35s ease;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--deep-blue);
    color: var(--white);
    font-family: var(--body-font);
    line-height: 1.6;
}

body.menu-open,
body.panel-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

ul {
    list-style: none;
}

.header-container {
    width: min(100% - 40px, var(--header-width));
    margin-inline: auto;
}


/* =====================================================
   LUXURY TOP BAR
===================================================== */

.luxury-topbar {
    position: relative;
    z-index: 1002;
    min-height: 38px;
    color: var(--muted-text);
    background:
        linear-gradient(
            90deg,
            #020916 0%,
            #071b34 50%,
            #020916 100%
        );
    border-bottom: 1px solid rgba(213, 170, 84, 0.16);
}

.luxury-topbar::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: min(75%, 900px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(242, 213, 140, 0.7),
        transparent
    );
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.topbar-contact,
.topbar-right,
.topbar-social {
    display: flex;
    align-items: center;
}

.topbar-contact {
    gap: 14px;
}

.topbar-contact a,
.topbar-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color var(--transition);
}

.topbar-contact a:hover {
    color: var(--light-gold);
}

.topbar-contact i,
.topbar-location i {
    color: var(--gold);
    font-size: 11px;
}

.topbar-divider {
    width: 1px;
    height: 13px;
    background: rgba(255, 255, 255, 0.15);
}

.topbar-right {
    gap: 15px;
}

.follow-text {
    color: #8297ae;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.topbar-social {
    gap: 4px;
}

.topbar-social a {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 50%;
    color: #a5b5c7;
    font-size: 11px;
    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.topbar-social a:hover {
    color: var(--light-gold);
    border-color: var(--border-gold);
    background: rgba(213, 170, 84, 0.09);
    transform: translateY(-2px);
}


/* =====================================================
   MAIN HEADER
===================================================== */

.main-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    height: var(--header-height);
    background:
        linear-gradient(
            90deg,
            rgba(3, 14, 29, 0.98),
            rgba(7, 30, 57, 0.96),
            rgba(3, 14, 29, 0.98)
        );
    border-bottom: 1px solid rgba(213, 170, 84, 0.18);
    transition:
        height var(--transition),
        background var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.main-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 5%,
        rgba(213, 170, 84, 0.52) 50%,
        transparent 95%
    );
}

.main-header.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    height: 74px;
    background: rgba(3, 17, 35, 0.94);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: headerSlideDown 0.4s ease;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}


/* =====================================================
   LOGO
===================================================== */

.header-logo {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: 145px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-logo img {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 145px;
    height: 70px;
    object-fit: contain;
    filter:
        drop-shadow(0 3px 10px rgba(0, 0, 0, 0.4))
        drop-shadow(0 0 10px rgba(213, 170, 84, 0.16));
    transition:
        filter var(--transition),
        transform var(--transition);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 42%;
    width: 92px;
    height: 52px;
    border-radius: 50%;
    opacity: 0.4;
    transform: translate(-50%, -50%);
    background: rgba(213, 170, 84, 0.18);
    filter: blur(23px);
    transition: opacity var(--transition);
}

.header-logo:hover img {
    transform: translateY(-2px) scale(1.025);
    filter:
        drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45))
        drop-shadow(0 0 14px rgba(242, 213, 140, 0.35));
}

.header-logo:hover .logo-glow {
    opacity: 0.75;
}


/* =====================================================
   MAIN NAVIGATION
===================================================== */

.main-navigation {
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-menu {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    position: relative;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 13px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #c7d3e0;
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.035em;
    white-space: nowrap;
    cursor: pointer;
    transition: color var(--transition);
}

.nav-link::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 17px;
    width: 0;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        var(--dark-gold),
        var(--light-gold)
    );
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--light-gold);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: calc(100% - 26px);
}

.dropdown-trigger i {
    color: var(--gold);
    font-size: 8px;
    transition: transform var(--transition);
}

.has-dropdown:hover .dropdown-trigger i,
.has-dropdown.dropdown-open .dropdown-trigger i {
    transform: rotate(180deg);
}


/* =====================================================
   LUXURY EVENTS DROPDOWN
===================================================== */

.has-dropdown::after {
    content: "";
    position: absolute;
    top: 70%;
    left: -25px;
    width: 390px;
    height: 35px;
    pointer-events: none;
}

.has-dropdown:hover::after,
.has-dropdown.dropdown-open::after {
    pointer-events: auto;
}

.luxury-dropdown {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    width: 365px;
    padding: 16px;
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, 15px);
    background:
        linear-gradient(
            145deg,
            rgba(9, 40, 74, 0.99),
            rgba(2, 14, 29, 0.99)
        );
    border: 1px solid rgba(213, 170, 84, 0.32);
    border-radius: 5px;
    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.luxury-dropdown::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 13px;
    height: 13px;
    transform: translateX(-50%) rotate(45deg);
    background: #092647;
    border-top: 1px solid rgba(213, 170, 84, 0.32);
    border-left: 1px solid rgba(213, 170, 84, 0.32);
}

.has-dropdown:hover .luxury-dropdown,
.has-dropdown.dropdown-open .luxury-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.dropdown-heading {
    position: relative;
    margin-bottom: 10px;
    padding: 4px 8px 14px;
    border-bottom: 1px solid rgba(213, 170, 84, 0.18);
}

.dropdown-heading::after {
    content: "";
    position: absolute;
    left: 8px;
    bottom: -1px;
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.dropdown-heading span {
    display: block;
    margin-bottom: 2px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.dropdown-heading strong {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.dropdown-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 51px;
    margin-top: 3px;
    padding: 7px 9px;
    border: 1px solid transparent;
    border-radius: 3px;
    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.dropdown-link:hover {
    background: rgba(213, 170, 84, 0.08);
    border-color: rgba(213, 170, 84, 0.17);
    transform: translateX(3px);
}

.dropdown-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--light-gold);
    border: 1px solid rgba(213, 170, 84, 0.28);
    border-radius: 50%;
    background: rgba(213, 170, 84, 0.08);
    font-size: 12px;
    transition:
        background var(--transition),
        color var(--transition);
}

.dropdown-link:hover .dropdown-icon {
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
}

.dropdown-link > span:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.dropdown-link strong {
    overflow: hidden;
    color: #edf4fc;
    font-size: 11px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-link small {
    color: #8197ad;
    font-size: 9px;
}


/* =====================================================
   HEADER ACTIONS
===================================================== */

.header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 9px;
}

.header-search-btn {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(213, 170, 84, 0.25);
    border-radius: 50%;
    outline: 0;
    color: var(--light-gold);
    background: rgba(213, 170, 84, 0.05);
    cursor: pointer;
    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.header-search-btn:hover {
    color: var(--primary-blue);
    background: var(--light-gold);
    transform: rotate(7deg);
}

.header-cta {
    position: relative;
    isolation: isolate;
    min-height: 41px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    overflow: hidden;
    padding: 0 19px;
    border: 1px solid var(--gold);
    border-radius: 2px;
    color: #06162c;
    background: linear-gradient(
        135deg,
        #f3dc9c,
        #d5aa54 52%,
        #b58130
    );
    box-shadow: 0 8px 22px rgba(213, 170, 84, 0.15);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.header-cta::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    transform: skewX(-25deg);
    background: rgba(255, 255, 255, 0.5);
    transition: left 0.65s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(213, 170, 84, 0.3);
}

.header-cta:hover::before {
    left: 145%;
}

.header-cta i {
    font-size: 9px;
    transition: transform var(--transition);
}

.header-cta:hover i {
    transform: translateX(3px);
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.mobile-menu-btn {
    width: 42px;
    height: 42px;
    display: none;
    place-items: center;
    align-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(213, 170, 84, 0.3);
    border-radius: 3px;
    outline: 0;
    background: rgba(213, 170, 84, 0.06);
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 19px;
    height: 1px;
    display: block;
    background: var(--light-gold);
    transition:
        transform var(--transition),
        opacity var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* =====================================================
   SEARCH PANEL
===================================================== */

.search-panel {
    position: fixed;
    z-index: 2000;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transition:
        visibility var(--transition),
        opacity var(--transition);
}

.search-panel.active {
    visibility: visible;
    opacity: 1;
}

.search-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 7, 17, 0.84);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.search-panel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 330px;
    padding: 70px 20px 55px;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(20, 73, 123, 0.65),
            transparent 50%
        ),
        linear-gradient(
            135deg,
            #061a34,
            #020b18
        );
    border-bottom: 1px solid rgba(213, 170, 84, 0.35);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45);
    transform: translateY(-100%);
    transition: transform 0.45s ease;
}

.search-panel.active .search-panel-content {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: 25px;
    right: max(25px, calc((100% - 1380px) / 2));
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    outline: 0;
    color: var(--light-gold);
    background: transparent;
    cursor: pointer;
    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.search-close:hover {
    color: var(--primary-blue);
    background: var(--light-gold);
    transform: rotate(90deg);
}

.search-label {
    display: block;
    margin-bottom: 5px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.search-panel-content h2 {
    margin-bottom: 25px;
    font-family: var(--heading-font);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 600;
}

.website-search-form {
    width: min(100%, 700px);
    display: flex;
    margin-inline: auto;
    border-bottom: 1px solid rgba(213, 170, 84, 0.55);
}

.website-search-form input {
    flex: 1;
    min-width: 0;
    padding: 14px 3px;
    border: 0;
    outline: 0;
    color: var(--white);
    background: transparent;
    font-size: clamp(15px, 2vw, 20px);
}

.website-search-form input::placeholder {
    color: #7f94aa;
}

.website-search-form button {
    flex: 0 0 50px;
    border: 0;
    outline: 0;
    color: var(--light-gold);
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    transition: transform var(--transition);
}

.website-search-form button:hover {
    transform: translateX(4px);
}

.popular-searches {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 17px;
    margin-top: 22px;
    color: #8195aa;
    font-size: 11px;
}

.popular-searches span {
    color: var(--gold);
}

.popular-searches a:hover {
    color: var(--light-gold);
}


/* =====================================================
   FLOATING ACTION DOCK
===================================================== */

.floating-action-dock {
    position: fixed;
    z-index: 1200;
    right: 22px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-action {
    position: relative;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid;
    border-radius: 50%;
    outline: 0;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    font-size: 17px;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        opacity var(--transition),
        visibility var(--transition);
}

.floating-action:hover {
    transform: translateY(-3px) scale(1.04);
}

.whatsapp-action {
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #2ad96b, #0c9e47);
}

.whatsapp-action:hover {
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.36);
}

.chatbot-action {
    border-color: rgba(242, 213, 140, 0.75);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
    color: var(--primary-blue);
}

.chatbot-action:hover {
    box-shadow: 0 12px 30px rgba(213, 170, 84, 0.4);
}

.chatbot-pulse {
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(213, 170, 84, 0.55);
    border-radius: 50%;
    animation: chatbotPulse 2.2s infinite;
}

@keyframes chatbotPulse {
    0% {
        opacity: 0.8;
        transform: scale(0.86);
    }

    70%,
    100% {
        opacity: 0;
        transform: scale(1.25);
    }
}

.back-to-top {
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    border-color: rgba(213, 170, 84, 0.42);
    background: rgba(7, 31, 59, 0.94);
    backdrop-filter: blur(10px);
}

.back-to-top.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    color: var(--primary-blue);
    background: var(--light-gold);
}

.floating-tooltip {
    position: absolute;
    top: 50%;
    right: calc(100% + 13px);
    width: max-content;
    padding: 6px 10px;
    visibility: hidden;
    opacity: 0;
    transform: translate(8px, -50%);
    color: var(--soft-white);
    background: #071c35;
    border: 1px solid rgba(213, 170, 84, 0.22);
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    pointer-events: none;
    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.floating-action:hover .floating-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translate(0, -50%);
}


/* =====================================================
   AI CHATBOT WINDOW
===================================================== */

.ibs-chatbot {
    position: fixed;
    z-index: 1500;
    right: 82px;
    bottom: 78px;
    width: min(370px, calc(100vw - 30px));
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    transform-origin: right bottom;
    background:
        linear-gradient(
            145deg,
            rgba(10, 43, 80, 0.99),
            rgba(2, 14, 29, 0.99)
        );
    border: 1px solid rgba(213, 170, 84, 0.4);
    border-radius: 14px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.ibs-chatbot.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    min-height: 69px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 15px;
    background:
        linear-gradient(
            90deg,
            rgba(213, 170, 84, 0.15),
            rgba(255, 255, 255, 0.02)
        );
    border-bottom: 1px solid rgba(213, 170, 84, 0.22);
}

.chatbot-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-brand-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
}

.chatbot-brand strong {
    display: block;
    font-family: var(--heading-font);
    font-size: 13px;
    letter-spacing: 0.03em;
}

.chatbot-brand span {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
    color: #8fa4b9;
    font-size: 9px;
}

.chatbot-brand span i {
    width: 6px;
    height: 6px;
    display: block;
    border-radius: 50%;
    background: #31dc79;
    box-shadow: 0 0 7px rgba(49, 220, 121, 0.8);
}

.chatbot-header > button {
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(213, 170, 84, 0.2);
    border-radius: 50%;
    outline: 0;
    color: #b3c0ce;
    background: transparent;
    cursor: pointer;
    transition:
        color var(--transition),
        transform var(--transition);
}

.chatbot-header > button:hover {
    color: var(--light-gold);
    transform: rotate(90deg);
}

.chatbot-messages {
    min-height: 275px;
    max-height: 380px;
    overflow-y: auto;
    padding: 20px 16px;
}

.bot-message {
    max-width: 84%;
    padding: 11px 13px;
    color: #dce7f3;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 3px 12px 12px 12px;
    font-size: 11px;
    line-height: 1.7;
}

.chatbot-quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    margin-top: 15px;
}

.chatbot-quick-links a {
    padding: 9px 8px;
    border: 1px solid rgba(213, 170, 84, 0.2);
    border-radius: 4px;
    color: #c7d4e1;
    background: rgba(213, 170, 84, 0.05);
    text-align: center;
    font-size: 9px;
    font-weight: 600;
    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.chatbot-quick-links a:hover {
    color: var(--light-gold);
    border-color: rgba(213, 170, 84, 0.5);
    background: rgba(213, 170, 84, 0.1);
}

.chatbot-input-area {
    display: flex;
    gap: 8px;
    padding: 11px;
    background: rgba(0, 7, 16, 0.4);
    border-top: 1px solid rgba(213, 170, 84, 0.18);
}

.chatbot-input-area input {
    flex: 1;
    min-width: 0;
    height: 42px;
    padding: 0 13px;
    border: 1px solid rgba(213, 170, 84, 0.18);
    border-radius: 4px;
    outline: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    font-size: 11px;
}

.chatbot-input-area input:focus {
    border-color: rgba(213, 170, 84, 0.55);
}

.chatbot-input-area input::placeholder {
    color: #71869b;
}

.chatbot-input-area button {
    flex: 0 0 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 4px;
    outline: 0;
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
    cursor: pointer;
    transition: transform var(--transition);
}

.chatbot-input-area button:hover {
    transform: translateY(-2px);
}


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 1180px) {

    .main-navigation {
        position: fixed;
        z-index: 1001;
        top: 0;
        right: 0;
        width: min(390px, 88vw);
        height: 100vh;
        align-items: flex-start;
        overflow-y: auto;
        padding: 105px 24px 35px;
        visibility: hidden;
        opacity: 0;
        transform: translateX(100%);
        background:
            radial-gradient(
                circle at 100% 0,
                rgba(27, 86, 141, 0.4),
                transparent 40%
            ),
            linear-gradient(
                160deg,
                #082746,
                #020b18 72%
            );
        border-left: 1px solid rgba(213, 170, 84, 0.28);
        box-shadow: -25px 0 60px rgba(0, 0, 0, 0.45);
        transition:
            transform 0.4s ease,
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .main-navigation.active {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu {
        width: 100%;
        height: auto;
        display: block;
    }

    .nav-item {
        width: 100%;
        height: auto;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .nav-link {
        width: 100%;
        height: auto;
        justify-content: space-between;
        padding: 14px 3px;
        font-size: 12px;
    }

    .nav-link::before {
        display: none;
    }

    .luxury-dropdown {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        visibility: visible;
        opacity: 1;
        padding: 0;
        border: 0;
        box-shadow: none;
        transform: none;
        background: transparent;
        pointer-events: auto;
        transition: max-height 0.45s ease;
    }

    .luxury-dropdown::before,
    .has-dropdown::after {
        display: none;
    }

    .has-dropdown:hover .luxury-dropdown {
        transform: none;
    }

    .has-dropdown.dropdown-open .luxury-dropdown {
        max-height: 650px;
        padding: 8px 0 14px;
        transform: none;
    }

    .dropdown-heading {
        display: none;
    }

    .dropdown-link {
        padding-left: 8px;
    }

    .mobile-menu-btn {
        position: relative;
        z-index: 1002;
        display: grid;
    }

}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 767px) {

    :root {
        --header-height: 72px;
    }

    .header-container {
        width: min(100% - 24px, var(--header-width));
    }

    .luxury-topbar {
        min-height: 35px;
    }

    .topbar-inner {
        min-height: 35px;
    }

    .topbar-contact {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
    }

    .topbar-contact a {
        font-size: 9px;
    }

    .topbar-divider,
    .topbar-right,
    .desktop-only {
        display: none;
    }

    .main-header.header-sticky {
        height: 66px;
    }

    .header-logo,
    .header-logo img {
        max-width: 115px;
    }

    .header-logo img {
        height: 58px;
    }

    .header-cta {
        min-height: 37px;
        padding: 0 12px;
        font-size: 8px;
    }

    .header-cta i {
        display: none;
    }

    .header-search-btn {
        display: none;
    }

    .mobile-menu-btn {
        width: 38px;
        height: 38px;
    }

    .main-navigation {
        width: min(345px, 90vw);
        padding: 90px 20px 30px;
    }

    .search-panel-content {
        min-height: 310px;
        padding-top: 80px;
    }

    .popular-searches {
        gap: 7px 12px;
    }

    .floating-action-dock {
        right: 13px;
        bottom: 16px;
        gap: 8px;
    }

    .floating-action {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .floating-tooltip {
        display: none;
    }

    .ibs-chatbot {
        right: 15px;
        bottom: 70px;
        width: calc(100vw - 30px);
    }

    .chatbot-messages {
        min-height: 240px;
        max-height: 330px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .topbar-contact a:first-child span {
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .header-logo,
    .header-logo img {
        max-width: 100px;
    }

    .header-cta {
        padding: 0 9px;
    }

    .chatbot-quick-links {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   ACCESSIBILITY
===================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--light-gold);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}

/* =====================================================
   PREMIUM VIDEO HERO
===================================================== */

.home-hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100svh - 126px);
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--deep-blue);
}


/* =====================================================
   HERO BACKGROUND VIDEO
===================================================== */

.home-hero-video {
    position: absolute;
    z-index: -6;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Main dark blue overlay */

.home-hero-overlay {
    position: absolute;
    z-index: -5;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(1, 10, 23, 0.66) 0%,
            rgba(3, 20, 40, 0.66) 38%,
            rgba(3, 20, 40, 0.56) 67%,
            rgba(1, 9, 20, 0.66) 100%
        );
}


/* Bottom and top gradient */

.home-hero-gradient {
    position: absolute;
    z-index: -4;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(2, 11, 24, 0.5) 0%,
            transparent 24%,
            transparent 68%,
            rgba(2, 11, 24, 0.94) 100%
        );
}


/* Luxury pattern */

.home-hero-pattern {
    position: absolute;
    z-index: -3;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(
            rgba(213, 170, 84, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(213, 170, 84, 0.08) 1px,
            transparent 1px
        );
    background-size: 90px 90px;
    mask-image:
        linear-gradient(
            90deg,
            black,
            transparent 70%
        );
    -webkit-mask-image:
        linear-gradient(
            90deg,
            black,
            transparent 70%
        );
}


/* Golden glow */

.home-hero-glow {
    position: absolute;
    z-index: -2;
    top: 8%;
    left: 18%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    opacity: 0.18;
    background: rgba(213, 170, 84, 0.35);
    filter: blur(120px);
    pointer-events: none;
}


/* =====================================================
   DECORATIVE GOLD LINES
===================================================== */

.hero-decoration {
    position: absolute;
    z-index: -1;
    width: 1px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(213, 170, 84, 0.55),
        transparent
    );
    pointer-events: none;
}

.hero-decoration-left {
    top: 12%;
    left: 3.2%;
    height: 64%;
}

.hero-decoration-right {
    top: 20%;
    right: 3.2%;
    height: 50%;
}

.hero-decoration-left::before,
.hero-decoration-right::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 7px;
    height: 7px;
    transform: translateX(-50%) rotate(45deg);
    border: 1px solid var(--gold);
    background: var(--primary-blue);
}

.hero-decoration-left::before {
    top: 0;
}

.hero-decoration-right::before {
    bottom: 0;
}


/* =====================================================
   HERO CONTAINER
===================================================== */

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(330px, 0.75fr);
    align-items: center;
    gap: clamp(50px, 6vw, 100px);
    padding-top: 75px;
    padding-bottom: 110px;
}


/* =====================================================
   LEFT HERO CONTENT
===================================================== */

.hero-main-content {
    max-width: 790px;
}


/* Eyebrow */

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: var(--light-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.eyebrow-line {
    position: relative;
    width: 62px;
    height: 1px;
    flex: 0 0 62px;
    background: linear-gradient(
        90deg,
        var(--dark-gold),
        var(--light-gold)
    );
}

.eyebrow-line::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -3px;
    width: 6px;
    height: 6px;
    transform: translateY(-50%) rotate(45deg);
    background: var(--light-gold);
}


/* Hero title */

.hero-title {
    max-width: 820px;
    margin-bottom: 22px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(42px, 5.2vw, 76px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.hero-title span {
    display: block;
    margin-top: 7px;
    color: transparent;
    background: linear-gradient(
        90deg,
        #f7e3ad 0%,
        #d5aa54 50%,
        #b78231 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
}


/* Hero description */

.hero-description {
    max-width: 690px;
    margin-bottom: 31px;
    color: #c1cfdd;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
}


/* =====================================================
   HERO EVENT DETAILS
===================================================== */

.hero-event-details {
    width: max-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding: 13px 20px;
    background:
        linear-gradient(
            90deg,
            rgba(13, 53, 94, 0.55),
            rgba(5, 26, 51, 0.35)
        );
    border: 1px solid rgba(213, 170, 84, 0.22);
    border-radius: 4px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 12px 30px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.hero-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    color: var(--light-gold);
    border: 1px solid rgba(213, 170, 84, 0.27);
    border-radius: 50%;
    background: rgba(213, 170, 84, 0.07);
    font-size: 12px;
}

.detail-content {
    display: flex;
    flex-direction: column;
}

.detail-content small {
    margin-bottom: 1px;
    color: #8197ae;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.detail-content strong {
    color: #edf4fb;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.hero-detail-divider {
    width: 1px;
    height: 35px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(213, 170, 84, 0.35),
        transparent
    );
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
}

.hero-btn {
    position: relative;
    isolation: isolate;
    min-height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    overflow: hidden;
    padding: 0 25px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.hero-btn-gold {
    color: var(--primary-blue);
    border: 1px solid var(--light-gold);
    background: linear-gradient(
        135deg,
        #f5e0a7,
        #d4a84f 55%,
        #a9792b
    );
    box-shadow: 0 12px 28px rgba(213, 170, 84, 0.2);
}

.hero-btn-gold::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: -120%;
    width: 65%;
    height: 100%;
    transform: skewX(-23deg);
    background: rgba(255, 255, 255, 0.5);
    transition: left 0.7s ease;
}

.hero-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 17px 36px rgba(213, 170, 84, 0.34);
}

.hero-btn-gold:hover::before {
    left: 145%;
}

.hero-btn-outline {
    color: var(--soft-white);
    border: 1px solid rgba(213, 170, 84, 0.44);
    background: rgba(4, 24, 47, 0.44);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-btn-outline i {
    color: var(--light-gold);
    font-size: 15px;
}

.hero-btn-outline:hover {
    color: var(--light-gold);
    border-color: var(--light-gold);
    background: rgba(213, 170, 84, 0.08);
    transform: translateY(-3px);
}

.hero-btn i {
    transition: transform var(--transition);
}

.hero-btn:hover i.fa-arrow-right {
    transform: translateX(4px);
}


/* =====================================================
   TRUST NOTE
===================================================== */

.hero-trust-note {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 25px;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars span {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    margin-left: -7px;
    color: var(--light-gold);
    border: 2px solid #071b34;
    border-radius: 50%;
    background: linear-gradient(
        145deg,
        #123d6c,
        #06182f
    );
    font-size: 9px;
}

.trust-avatars span:first-child {
    margin-left: 0;
}

.hero-trust-note p {
    max-width: 330px;
    color: #8fa2b5;
    font-size: 9px;
    line-height: 1.55;
}


/* =====================================================
   FEATURED EVENT CARD
===================================================== */

.hero-featured-card {
    position: relative;
    width: min(100%, 410px);
    justify-self: end;
    overflow: hidden;
    padding: 25px;
    background:
        linear-gradient(
            145deg,
            rgba(11, 48, 88, 0.88),
            rgba(3, 17, 34, 0.94)
        );
    border: 1px solid rgba(213, 170, 84, 0.34);
    border-radius: 8px;
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.featured-card-border {
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(213, 170, 84, 0.09);
    border-radius: 4px;
    pointer-events: none;
}

.featured-card-shine {
    position: absolute;
    top: -100px;
    right: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    opacity: 0.18;
    background: var(--gold);
    filter: blur(65px);
    pointer-events: none;
}


/* Card top */

.featured-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 12px;
}

.featured-label {
    color: var(--gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.featured-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #b9c8d6;
    font-size: 8px;
    font-weight: 600;
}

.featured-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34dc7e;
    box-shadow: 0 0 8px rgba(52, 220, 126, 0.8);
    animation: statusPulse 1.8s infinite;
}

@keyframes statusPulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}


/* Logo */

.featured-event-logo {
    position: relative;
    z-index: 2;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.featured-event-logo img {
    width: auto;
    max-width: 140px;
    height: 86px;
    object-fit: contain;
    filter:
        drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35))
        drop-shadow(0 0 13px rgba(213, 170, 84, 0.2));
}


/* Card content */

.featured-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.event-edition {
    display: block;
    margin-bottom: 8px;
    color: var(--light-gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.featured-card-content h2 {
    margin-bottom: 12px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 600;
    line-height: 1.35;
}

.featured-card-content h2 span {
    display: block;
    color: var(--light-gold);
}

.featured-card-content p {
    max-width: 310px;
    margin-inline: auto;
    color: #aebfd0;
    font-size: 10px;
    line-height: 1.7;
}


/* Date box */

.featured-date-box {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    margin-top: 18px;
    padding: 12px 14px;
    border-top: 1px solid rgba(213, 170, 84, 0.2);
    border-bottom: 1px solid rgba(213, 170, 84, 0.2);
    background: rgba(213, 170, 84, 0.05);
}

.date-number {
    color: var(--light-gold);
    font-family: var(--heading-font);
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.date-info {
    display: flex;
    flex-direction: column;
}

.date-info strong {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 600;
}

.date-info span {
    color: #8ca1b6;
    font-size: 8px;
    letter-spacing: 0.05em;
}

.date-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--light-gold);
    border: 1px solid rgba(213, 170, 84, 0.3);
    border-radius: 50%;
    font-size: 13px;
}


/* Highlights */

.featured-highlights {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 17px;
}

.featured-highlights div {
    padding: 0 6px;
    text-align: center;
    border-right: 1px solid rgba(213, 170, 84, 0.15);
}

.featured-highlights div:last-child {
    border-right: 0;
}

.featured-highlights strong,
.featured-highlights span {
    display: block;
}

.featured-highlights strong {
    color: #edf4fb;
    font-size: 9px;
    font-weight: 700;
}

.featured-highlights span {
    margin-top: 2px;
    color: #758ca3;
    font-size: 7px;
}


/* Card button */

.featured-card-button {
    position: relative;
    z-index: 2;
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
    border: 1px solid var(--light-gold);
    border-radius: 2px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.featured-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(213, 170, 84, 0.28);
}


/* =====================================================
   HERO BOTTOM BAR
===================================================== */

.hero-bottom-bar {
    position: absolute;
    z-index: 5;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 70px;
    display: flex;
    align-items: center;
    background: linear-gradient(
        90deg,
        rgba(2, 12, 26, 0.9),
        rgba(7, 32, 60, 0.72),
        rgba(2, 12, 26, 0.9)
    );
    border-top: 1px solid rgba(213, 170, 84, 0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.hero-scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #93a7bb;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.hero-scroll-link:hover {
    color: var(--light-gold);
}

.scroll-mouse {
    position: relative;
    width: 22px;
    height: 34px;
    border: 1px solid rgba(213, 170, 84, 0.62);
    border-radius: 15px;
}

.scroll-mouse i {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 2px;
    height: 6px;
    border-radius: 2px;
    transform: translateX(-50%);
    background: var(--light-gold);
    animation: scrollMouse 1.8s infinite;
}

@keyframes scrollMouse {
    0% {
        opacity: 0;
        transform: translate(-50%, -2px);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 9px);
    }
}

.hero-keywords {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #8399ae;
    font-family: var(--heading-font);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-keywords i {
    width: 4px;
    height: 4px;
    transform: rotate(45deg);
    background: var(--gold);
}


/* =====================================================
   LIGHTWEIGHT HERO ENTRANCE ANIMATION
===================================================== */

.hero-eyebrow,
.hero-title,
.hero-description,
.hero-event-details,
.hero-buttons,
.hero-trust-note {
    opacity: 0;
    transform: translateY(18px);
    animation: heroReveal 0.75s ease forwards;
}

.hero-eyebrow {
    animation-delay: 0.08s;
}

.hero-title {
    animation-delay: 0.16s;
}

.hero-description {
    animation-delay: 0.24s;
}

.hero-event-details {
    animation-delay: 0.32s;
}

.hero-buttons {
    animation-delay: 0.4s;
}

.hero-trust-note {
    animation-delay: 0.48s;
}

.hero-featured-card {
    opacity: 0;
    transform: translateX(24px);
    animation: heroCardReveal 0.85s 0.3s ease forwards;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroCardReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =====================================================
   HERO RESPONSIVE – LARGE TABLET
===================================================== */

@media (max-width: 1180px) {

    .home-hero {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns:
            minmax(0, 1.1fr)
            minmax(315px, 0.9fr);
        gap: 42px;
        padding-top: 75px;
        padding-bottom: 115px;
    }

    .hero-title {
        font-size: clamp(40px, 5vw, 60px);
    }

    .hero-event-details {
        gap: 12px;
        padding: 12px 14px;
    }

    .detail-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .hero-featured-card {
        padding: 21px;
    }

}


/* =====================================================
   HERO RESPONSIVE – TABLET
===================================================== */

@media (max-width: 900px) {

    .home-hero-overlay {
        background: rgba(2, 14, 29, 0.86);
    }

    .home-hero-gradient {
        background:
            linear-gradient(
                180deg,
                rgba(2, 11, 24, 0.3),
                rgba(2, 11, 24, 0.7) 55%,
                rgba(2, 11, 24, 0.97)
            );
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-top: 75px;
        padding-bottom: 120px;
    }

    .hero-main-content {
        max-width: 760px;
    }

    .hero-featured-card {
        width: min(100%, 570px);
        justify-self: start;
    }

    .hero-decoration-right {
        display: none;
    }

}


/* =====================================================
   HERO RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 767px) {

    .home-hero {
        min-height: calc(100svh - 107px);
    }

    .home-hero-video {
        object-position: center;
    }

    .home-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(1, 10, 22, 0.77),
                rgba(2, 16, 34, 0.88) 45%,
                rgba(2, 11, 24, 0.97)
            );
    }

    .home-hero-pattern {
        background-size: 60px 60px;
    }

    .home-hero-glow {
        top: 6%;
        left: -40%;
        width: 380px;
        height: 380px;
    }

    .hero-container {
        display: block;
        padding-top: 58px;
        padding-bottom: 108px;
    }

    .hero-eyebrow {
        gap: 10px;
        margin-bottom: 17px;
        font-size: 8px;
        letter-spacing: 0.17em;
    }

    .eyebrow-line {
        width: 38px;
        flex-basis: 38px;
    }

    .hero-title {
        margin-bottom: 18px;
        font-size: clamp(36px, 11vw, 51px);
        line-height: 1.12;
    }

    .hero-description {
        margin-bottom: 25px;
        font-size: 12px;
        line-height: 1.75;
    }

    .hero-event-details {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 26px;
        padding: 5px 15px;
    }

    .hero-detail-item {
        padding: 10px 0;
    }

    .hero-detail-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(213, 170, 84, 0.3),
            transparent
        );
    }

    .detail-content strong {
        font-size: 10px;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-btn {
        width: 100%;
        min-height: 49px;
    }

    .hero-trust-note {
        align-items: flex-start;
        margin-top: 20px;
    }

    .hero-featured-card {
        width: 100%;
        margin-top: 45px;
        padding: 19px 16px;
    }

    .featured-card-top {
        align-items: flex-start;
    }

    .featured-event-logo {
        min-height: 78px;
    }

    .featured-event-logo img {
        height: 76px;
    }

    .featured-card-content h2 {
        font-size: 19px;
    }

    .featured-highlights {
        gap: 3px;
    }

    .featured-highlights div {
        padding: 0 3px;
    }

    .hero-bottom-bar {
        min-height: 64px;
    }

    .hero-bottom-inner {
        justify-content: center;
    }

    .hero-keywords {
        display: none;
    }

    .hero-decoration-left {
        left: 9px;
        opacity: 0.55;
    }

}


/* =====================================================
   HERO RESPONSIVE – SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .hero-container {
        padding-top: 45px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-eyebrow span:last-child {
        font-size: 7px;
    }

    .hero-trust-note p {
        font-size: 8px;
    }

    .featured-status {
        max-width: 90px;
        text-align: right;
    }

    .featured-date-box {
        gap: 10px;
        padding-inline: 10px;
    }

    .date-number {
        font-size: 30px;
    }

    .date-icon {
        width: 32px;
        height: 32px;
    }

}
/* =====================================================
   UPCOMING GLOBAL EVENTS
===================================================== */

.upcoming-events {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 115px 0 105px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(18, 61, 108, 0.35),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #031225 0%,
            #061a34 48%,
            #020d1d 100%
        );
}


/* Top luxury line */

.upcoming-events::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(85%, 1100px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(213, 170, 84, 0.65),
        transparent
    );
}


/* Background grid pattern */

.upcoming-events::after {
    content: "";
    position: absolute;
    z-index: -3;
    inset: 0;
    opacity: 0.13;
    background-image:
        linear-gradient(
            rgba(213, 170, 84, 0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(213, 170, 84, 0.07) 1px,
            transparent 1px
        );
    background-size: 80px 80px;
    pointer-events: none;
}


/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.events-bg-glow {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(110px);
}

.events-glow-left {
    top: 18%;
    left: -170px;
    width: 420px;
    height: 420px;
    opacity: 0.22;
    background: #174f87;
}

.events-glow-right {
    right: -170px;
    bottom: 5%;
    width: 420px;
    height: 420px;
    opacity: 0.12;
    background: var(--gold);
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    position: relative;
    z-index: 2;
    width: min(100%, 780px);
    margin: 0 auto 58px;
    text-align: center;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.section-line {
    position: relative;
    width: 50px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold)
    );
}

.section-line:last-child {
    background: linear-gradient(
        90deg,
        var(--gold),
        transparent
    );
}

.section-heading h2 {
    margin-bottom: 17px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.17;
    letter-spacing: -0.02em;
}

.section-heading h2 span {
    display: block;
    margin-top: 4px;
    color: transparent;
    background: linear-gradient(
        90deg,
        #f5dfa4,
        #d5aa54,
        #b78131
    );
    background-clip: text;
    -webkit-background-clip: text;
}

.section-heading > p {
    max-width: 670px;
    margin-inline: auto;
    color: #9fb1c3;
    font-size: 13px;
    line-height: 1.85;
}


/* =====================================================
   EVENTS GRID
===================================================== */

.events-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}


/* =====================================================
   GLOBAL EVENT CARD
===================================================== */

.global-event-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(10, 43, 80, 0.94),
            rgba(3, 18, 36, 0.98)
        );
    border: 1px solid rgba(213, 170, 84, 0.21);
    border-radius: 7px;
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    transition:
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.global-event-card::before {
    content: "";
    position: absolute;
    z-index: 5;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        var(--dark-gold),
        var(--light-gold),
        var(--dark-gold)
    );
    transition: width 0.5s ease;
}

.global-event-card:hover {
    border-color: rgba(213, 170, 84, 0.5);
    transform: translateY(-8px);
    box-shadow:
        0 34px 70px rgba(0, 0, 0, 0.38),
        0 0 28px rgba(213, 170, 84, 0.07);
}

.global-event-card:hover::before {
    width: 72%;
}

.global-event-card.featured-event {
    border-color: rgba(213, 170, 84, 0.42);
}


/* =====================================================
   EVENT IMAGE
===================================================== */

.event-image {
    position: relative;
    height: 255px;
    display: block;
    overflow: hidden;
    background: #071a31;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.6s ease;
}

.global-event-card:hover .event-image img {
    transform: scale(1.07);
    filter: saturate(1.08);
}

.event-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(2, 12, 25, 0.1) 0%,
            rgba(2, 12, 25, 0.15) 42%,
            rgba(3, 18, 36, 0.98) 100%
        );
}


/* Event country */

.event-country {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    color: #f0f5fa;
    background: rgba(3, 20, 39, 0.75);
    border: 1px solid rgba(213, 170, 84, 0.28);
    border-radius: 30px;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.event-country i {
    color: var(--light-gold);
}


/* Featured badge */

.event-featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 7px 10px;
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        #f2d58c,
        #c79338
    );
    border-radius: 2px;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.22);
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}


/* Image arrow */

.event-image-arrow {
    position: absolute;
    right: 17px;
    bottom: 17px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    opacity: 0;
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
    border-radius: 50%;
    transform: translateY(10px);
    transition:
        opacity var(--transition),
        transform var(--transition);
}

.global-event-card:hover .event-image-arrow {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   EVENT CARD CONTENT
===================================================== */

.event-card-content {
    position: relative;
    padding: 0 24px 25px;
}


/* Date tab */

.event-card-date {
    position: relative;
    width: max-content;
    min-width: 140px;
    min-height: 67px;
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: -32px;
    margin-bottom: 20px;
    padding: 9px 15px;
    background:
        linear-gradient(
            145deg,
            #123f6d,
            #071d38
        );
    border: 1px solid rgba(213, 170, 84, 0.44);
    border-radius: 4px;
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.3);
}

.event-card-date strong {
    color: var(--light-gold);
    font-family: var(--heading-font);
    font-size: 31px;
    font-weight: 700;
    line-height: 1;
}

.event-card-date > span {
    display: flex;
    flex-direction: column;
    padding-left: 11px;
    border-left: 1px solid rgba(213, 170, 84, 0.25);
}

.event-card-date b {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 11px;
    font-weight: 600;
}

.event-card-date small {
    margin-top: 1px;
    color: #8da2b7;
    font-size: 8px;
    letter-spacing: 0.08em;
}


/* London date */

.london-date strong {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    font-size: 18px;
}


/* Category */

.event-card-category {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
    color: var(--gold);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.event-card-category i {
    width: 4px;
    height: 4px;
    transform: rotate(45deg);
    background: var(--gold);
}


/* Event title */

.event-card-content h3 {
    min-height: 78px;
    margin-bottom: 12px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(18px, 1.6vw, 23px);
    font-weight: 600;
    line-height: 1.4;
}

.event-card-content h3 span {
    display: block;
    color: var(--light-gold);
}


/* Event description */

.event-card-content > p {
    min-height: 92px;
    color: #9eb0c2;
    font-size: 10px;
    line-height: 1.8;
}


/* =====================================================
   EVENT HIGHLIGHTS
===================================================== */

.event-card-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 17px;
    padding-top: 16px;
    border-top: 1px solid rgba(213, 170, 84, 0.15);
}

.event-card-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 8px;
    color: #aebfd0;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    font-size: 7px;
    font-weight: 600;
}

.event-card-highlights i {
    color: var(--gold);
}


/* =====================================================
   EVENT CARD FOOTER
===================================================== */

.event-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 21px;
}

.event-details-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--light-gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.event-details-link i {
    font-size: 8px;
    transition: transform var(--transition);
}

.event-details-link:hover {
    color: var(--white);
}

.event-details-link:hover i {
    transform: translateX(4px);
}

.event-nomination-link {
    padding: 8px 10px;
    color: #c8d4e0;
    border: 1px solid rgba(213, 170, 84, 0.28);
    border-radius: 2px;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.event-nomination-link:hover {
    color: var(--primary-blue);
    background: var(--light-gold);
    border-color: var(--light-gold);
}


/* =====================================================
   BOTTOM CTA
===================================================== */

.events-bottom-cta {
    position: relative;
    z-index: 2;
    min-height: 115px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    overflow: hidden;
    margin-top: 55px;
    padding: 25px 32px;
    background:
        linear-gradient(
            100deg,
            rgba(13, 53, 94, 0.84),
            rgba(4, 23, 45, 0.9)
        );
    border: 1px solid rgba(213, 170, 84, 0.28);
    border-radius: 5px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.events-bottom-cta::before {
    content: "";
    position: absolute;
    top: -90px;
    right: 10%;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    opacity: 0.17;
    background: var(--gold);
    filter: blur(60px);
    pointer-events: none;
}

.events-bottom-cta > div {
    position: relative;
}

.events-bottom-cta > div > span {
    display: block;
    margin-bottom: 4px;
    color: var(--light-gold);
    font-family: var(--heading-font);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600;
}

.events-bottom-cta p {
    color: #9fb2c5;
    font-size: 10px;
}

.events-contact-button {
    position: relative;
    flex: 0 0 auto;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 19px;
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
    border: 1px solid var(--light-gold);
    border-radius: 2px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.events-contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(213, 170, 84, 0.25);
}

.events-contact-button i {
    transition: transform var(--transition);
}

.events-contact-button:hover i {
    transform: translateX(4px);
}


/* =====================================================
   EVENTS RESPONSIVE – TABLET
===================================================== */

@media (max-width: 1100px) {

    .events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .global-event-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 13px);
        justify-self: center;
    }

    .event-card-content h3,
    .event-card-content > p {
        min-height: auto;
    }

}


/* =====================================================
   EVENTS RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 767px) {

    .upcoming-events {
        padding: 80px 0 72px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-eyebrow {
        gap: 9px;
        font-size: 7px;
        letter-spacing: 0.18em;
    }

    .section-line {
        width: 32px;
    }

    .section-heading h2 {
        font-size: clamp(29px, 8.5vw, 40px);
    }

    .section-heading > p {
        font-size: 11px;
        line-height: 1.75;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .global-event-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .event-image {
        height: 240px;
    }

    .event-card-content {
        padding: 0 18px 22px;
    }

    .event-card-date {
        margin-bottom: 17px;
    }

    .event-card-content h3 {
        min-height: auto;
        font-size: 20px;
    }

    .event-card-content > p {
        min-height: auto;
        font-size: 9px;
    }

    .event-image-arrow {
        opacity: 1;
        transform: translateY(0);
    }

    .events-bottom-cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin-top: 38px;
        padding: 22px 20px;
    }

    .events-contact-button {
        width: 100%;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .event-image {
        height: 220px;
    }

    .event-country {
        top: 12px;
        left: 12px;
    }

    .event-featured-badge {
        top: 12px;
        right: 12px;
    }

    .event-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-nomination-link {
        width: 100%;
        padding: 10px;
        text-align: center;
    }

}

/* =====================================================
   ABOUT IBS GLOBAL
===================================================== */

.home-about {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 125px 0 110px;
    background:
        radial-gradient(
            circle at 12% 30%,
            rgba(17, 62, 108, 0.26),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #020c1b 0%,
            #061a34 48%,
            #020b18 100%
        );
}


/* Luxury top line */

.home-about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(88%, 1250px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(213, 170, 84, 0.48),
        transparent
    );
}


/* Background name */

.about-bg-text {
    position: absolute;
    z-index: -3;
    top: 42px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    color: transparent;
    font-family: var(--heading-font);
    font-size: clamp(85px, 13vw, 210px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-align: center;
    white-space: nowrap;
    -webkit-text-stroke: 1px rgba(213, 170, 84, 0.045);
    pointer-events: none;
}


/* Background glow */

.about-gold-glow {
    position: absolute;
    z-index: -2;
    right: -170px;
    bottom: 12%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    opacity: 0.12;
    background: var(--gold);
    filter: blur(120px);
    pointer-events: none;
}


/* =====================================================
   ABOUT CONTAINER
===================================================== */

.about-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(350px, 0.86fr)
        minmax(0, 1.14fr);
    align-items: center;
    gap: clamp(60px, 7vw, 105px);
}


/* =====================================================
   LEFT IMAGE COMPOSITION
===================================================== */

.about-visual {
    position: relative;
    width: min(100%, 530px);
    padding: 18px 22px 30px 15px;
}


/* Main image frame */

.about-image-frame {
    position: relative;
    height: 610px;
    overflow: hidden;
    background: #071b34;
    border: 1px solid rgba(213, 170, 84, 0.34);
    border-radius: 4px;
    box-shadow:
        0 35px 75px rgba(0, 0, 0, 0.36),
        18px 18px 0 rgba(13, 50, 89, 0.28);
}

.about-image-frame::before {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 10px;
    border: 1px solid rgba(242, 213, 140, 0.14);
    border-radius: 2px;
    pointer-events: none;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.7s ease;
}

.about-visual:hover .about-image-frame img {
    transform: scale(1.045);
    filter: saturate(1.08);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(2, 12, 26, 0.04) 35%,
            rgba(2, 13, 27, 0.22) 60%,
            rgba(2, 13, 27, 0.94) 100%
        );
}


/* Gold frame line */

.about-frame-line {
    position: absolute;
    z-index: 4;
    top: 28px;
    right: -14px;
    width: 1px;
    height: 68%;
    background: linear-gradient(
        180deg,
        transparent,
        var(--light-gold),
        transparent
    );
}

.about-frame-line::before,
.about-frame-line::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 7px;
    height: 7px;
    transform: translateX(-50%) rotate(45deg);
    background: var(--gold);
}

.about-frame-line::before {
    top: 0;
}

.about-frame-line::after {
    bottom: 0;
}


/* Image caption */

.about-image-caption {
    position: absolute;
    z-index: 4;
    left: 29px;
    bottom: 28px;
    padding-left: 14px;
    border-left: 2px solid var(--gold);
}

.about-image-caption span,
.about-image-caption strong {
    display: block;
}

.about-image-caption span {
    margin-bottom: 2px;
    color: var(--light-gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.about-image-caption strong {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
}


/* =====================================================
   FLOATING LOGO CARD
===================================================== */

.about-logo-card {
    position: absolute;
    z-index: 6;
    top: 70px;
    right: -25px;
    width: 150px;
    min-height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    padding: 15px;
    background:
        linear-gradient(
            145deg,
            rgba(15, 57, 99, 0.95),
            rgba(3, 18, 36, 0.97)
        );
    border: 1px solid rgba(213, 170, 84, 0.48);
    border-radius: 5px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4);
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.about-logo-card::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(213, 170, 84, 0.1);
    border-radius: 2px;
    pointer-events: none;
}

.about-logo-glow {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 85px;
    height: 70px;
    border-radius: 50%;
    transform: translateX(-50%);
    opacity: 0.26;
    background: var(--gold);
    filter: blur(30px);
}

.about-logo-card img {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 105px;
    height: 85px;
    object-fit: contain;
    filter:
        drop-shadow(0 7px 12px rgba(0, 0, 0, 0.4))
        drop-shadow(0 0 8px rgba(213, 170, 84, 0.22));
}

.about-logo-card span {
    position: relative;
    z-index: 2;
    margin-top: 5px;
    color: var(--light-gold);
    font-size: 6px;
    font-weight: 800;
    line-height: 1.55;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =====================================================
   ACHIEVEMENT BADGE
===================================================== */

.about-achievement {
    position: absolute;
    z-index: 6;
    right: -7px;
    bottom: 65px;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background:
        linear-gradient(
            105deg,
            #e6c373,
            #b88331
        );
    border: 1px solid var(--light-gold);
    border-radius: 3px;
    box-shadow: 0 15px 36px rgba(0, 0, 0, 0.34);
}

.achievement-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: grid;
    place-items: center;
    color: var(--light-gold);
    background: var(--primary-blue);
    border-radius: 50%;
    font-size: 14px;
}

.about-achievement strong,
.about-achievement span {
    display: block;
    color: var(--primary-blue);
}

.about-achievement strong {
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 700;
}

.about-achievement span {
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}


/* =====================================================
   DECORATIVE CORNERS
===================================================== */

.about-corner {
    position: absolute;
    z-index: 7;
    width: 40px;
    height: 40px;
    pointer-events: none;
}

.corner-top-left {
    top: 0;
    left: 0;
    border-top: 1px solid var(--light-gold);
    border-left: 1px solid var(--light-gold);
}

.corner-bottom-right {
    right: 0;
    bottom: 12px;
    border-right: 1px solid var(--light-gold);
    border-bottom: 1px solid var(--light-gold);
}


/* =====================================================
   RIGHT ABOUT CONTENT
===================================================== */

.about-content {
    position: relative;
    padding: 15px 0;
}


/* Eyebrow */

.about-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
}

.about-eyebrow > span {
    position: relative;
    width: 57px;
    height: 1px;
    background: linear-gradient(
        90deg,
        var(--dark-gold),
        var(--light-gold)
    );
}

.about-eyebrow > span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -3px;
    width: 6px;
    height: 6px;
    transform: translateY(-50%) rotate(45deg);
    background: var(--light-gold);
}

.about-eyebrow small {
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}


/* Heading */

.about-content > h2 {
    max-width: 700px;
    margin-bottom: 22px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.about-content > h2 span {
    display: block;
    margin-top: 4px;
    color: transparent;
    background: linear-gradient(
        90deg,
        #f4dda0,
        #d5aa54,
        #b67f2d
    );
    background-clip: text;
    -webkit-background-clip: text;
}


/* Paragraphs */

.about-intro {
    margin-bottom: 13px;
    color: #c8d4e0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.88;
}

.about-description {
    color: #899eb3;
    font-size: 11px;
    line-height: 1.85;
}


/* =====================================================
   ABOUT FEATURES
===================================================== */

.about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 31px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 105px;
    padding: 16px 14px;
    background:
        linear-gradient(
            135deg,
            rgba(16, 58, 101, 0.43),
            rgba(5, 25, 48, 0.35)
        );
    border: 1px solid rgba(213, 170, 84, 0.14);
    border-radius: 3px;
    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.about-feature:hover {
    background:
        linear-gradient(
            135deg,
            rgba(20, 70, 120, 0.57),
            rgba(5, 25, 48, 0.45)
        );
    border-color: rgba(213, 170, 84, 0.4);
    transform: translateY(-3px);
}

.about-feature-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: grid;
    place-items: center;
    color: var(--light-gold);
    background: rgba(213, 170, 84, 0.07);
    border: 1px solid rgba(213, 170, 84, 0.28);
    border-radius: 50%;
    font-size: 12px;
    transition:
        color var(--transition),
        background var(--transition);
}

.about-feature:hover .about-feature-icon {
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
}

.about-feature h3 {
    margin-bottom: 5px;
    color: var(--soft-white);
    font-family: var(--heading-font);
    font-size: 12px;
    font-weight: 600;
}

.about-feature p {
    color: #8196aa;
    font-size: 8px;
    line-height: 1.65;
}


/* =====================================================
   ABOUT BUTTONS
===================================================== */

.about-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.about-btn-primary {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 23px;
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
    border: 1px solid var(--light-gold);
    border-radius: 2px;
    box-shadow: 0 12px 28px rgba(213, 170, 84, 0.15);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.about-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 17px 34px rgba(213, 170, 84, 0.28);
}

.about-btn-primary i {
    font-size: 8px;
    transition: transform var(--transition);
}

.about-btn-primary:hover i {
    transform: translateX(4px);
}

.about-btn-secondary {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #c7d4e1;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.about-play-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--light-gold);
    border: 1px solid rgba(213, 170, 84, 0.42);
    border-radius: 50%;
    background: rgba(213, 170, 84, 0.05);
    font-size: 9px;
    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.about-btn-secondary:hover {
    color: var(--light-gold);
}

.about-btn-secondary:hover .about-play-icon {
    color: var(--primary-blue);
    background: var(--light-gold);
    transform: scale(1.06);
}


/* =====================================================
   GLOBAL STATISTICS STRIP
===================================================== */

.about-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);
    align-items: center;
    margin-top: 92px;
    padding: 28px 30px;
    background:
        linear-gradient(
            100deg,
            rgba(15, 58, 101, 0.72),
            rgba(3, 20, 40, 0.85)
        );
    border: 1px solid rgba(213, 170, 84, 0.25);
    border-radius: 5px;
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.about-stats::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: 32%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        var(--light-gold),
        transparent
    );
}

.about-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

.stat-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    color: var(--light-gold);
    background: rgba(213, 170, 84, 0.07);
    border: 1px solid rgba(213, 170, 84, 0.25);
    border-radius: 50%;
    font-size: 13px;
}

.about-stat-item > div {
    display: flex;
    flex-direction: column;
}

.about-counter {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(21px, 2.2vw, 30px);
    font-weight: 700;
    line-height: 1.1;
}

.about-stat-item > div > span {
    margin-top: 3px;
    color: #8ca1b5;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(213, 170, 84, 0.3),
        transparent
    );
}


/* =====================================================
   ABOUT RESPONSIVE – TABLET
===================================================== */

@media (max-width: 1050px) {

    .about-container {
        grid-template-columns: minmax(300px, 0.85fr) 1.15fr;
        gap: 55px;
    }

    .about-image-frame {
        height: 560px;
    }

    .about-logo-card {
        right: -18px;
        width: 130px;
    }

    .about-achievement {
        right: -5px;
        min-width: 180px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-feature {
        min-height: auto;
    }

    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }

    .about-stats .stat-divider {
        display: none;
    }

    .about-stat-item {
        justify-content: flex-start;
        padding: 8px 20px;
    }

}


/* =====================================================
   ABOUT RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 767px) {

    .home-about {
        padding: 80px 0 70px;
    }

    .about-bg-text {
        top: 25px;
        font-size: 70px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .about-visual {
        width: calc(100% - 12px);
        max-width: 520px;
        padding: 10px 14px 20px 5px;
    }

    .about-image-frame {
        height: 520px;
        box-shadow:
            0 30px 60px rgba(0, 0, 0, 0.34),
            12px 12px 0 rgba(13, 50, 89, 0.25);
    }

    .about-logo-card {
        top: 45px;
        right: -10px;
        width: 115px;
        min-height: 125px;
        padding: 10px;
    }

    .about-logo-card img {
        max-width: 85px;
        height: 67px;
    }

    .about-logo-card span {
        font-size: 5px;
    }

    .about-achievement {
        right: -5px;
        bottom: 55px;
        min-width: 170px;
        padding: 11px 13px;
    }

    .achievement-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .about-content {
        padding: 0;
    }

    .about-eyebrow {
        margin-bottom: 14px;
    }

    .about-content > h2 {
        margin-bottom: 18px;
        font-size: clamp(30px, 8.5vw, 40px);
    }

    .about-intro {
        font-size: 11px;
        line-height: 1.8;
    }

    .about-description {
        font-size: 10px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 25px;
    }

    .about-feature {
        min-height: auto;
    }

    .about-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-btn-primary {
        width: 100%;
    }

    .about-btn-secondary {
        justify-content: center;
    }

    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        margin-top: 65px;
        padding: 15px 9px;
    }

    .about-stat-item {
        justify-content: flex-start;
        gap: 9px;
        padding: 14px 8px;
    }

    .about-stat-item:nth-child(3),
    .about-stat-item:nth-child(7) {
        border-left: 1px solid rgba(213, 170, 84, 0.16);
    }

    .about-stat-item:nth-child(5),
    .about-stat-item:nth-child(7) {
        border-top: 1px solid rgba(213, 170, 84, 0.16);
    }

    .stat-icon {
        width: 37px;
        height: 37px;
        flex-basis: 37px;
        font-size: 11px;
    }

    .about-counter {
        font-size: 20px;
    }

    .about-stat-item > div > span {
        font-size: 6px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .about-image-frame {
        height: 445px;
    }

    .about-image-caption {
        left: 20px;
        bottom: 22px;
    }

    .about-logo-card {
        top: 35px;
        width: 105px;
    }

    .about-achievement {
        right: -4px;
        bottom: 45px;
        min-width: 155px;
    }

    .about-achievement strong {
        font-size: 13px;
    }

    .about-achievement span {
        font-size: 6px;
    }

    .about-feature {
        padding: 14px 12px;
    }

    .about-stats {
        padding-inline: 5px;
    }

    .about-stat-item {
        gap: 7px;
        padding-inline: 5px;
    }

    .stat-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        font-size: 9px;
    }

    .about-counter {
        font-size: 17px;
    }

}

/* =====================================================
   WHY IBS GLOBAL
===================================================== */

.why-ibs {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 120px 0 0;
    background:
        radial-gradient(
            circle at 75% 15%,
            rgba(18, 67, 116, 0.32),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #04152a 0%,
            #082344 48%,
            #020c1b 100%
        );
}


/* Top border */

.why-ibs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(88%, 1250px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(213, 170, 84, 0.48),
        transparent
    );
}


/* =====================================================
   BACKGROUND DECORATIONS
===================================================== */

.why-pattern {
    position: absolute;
    z-index: -3;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(
            rgba(213, 170, 84, 0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(213, 170, 84, 0.07) 1px,
            transparent 1px
        );
    background-size: 85px 85px;
    mask-image: linear-gradient(
        90deg,
        transparent,
        black 45%,
        black
    );
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent,
        black 45%,
        black
    );
    pointer-events: none;
}

.why-blue-glow,
.why-gold-glow {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
}

.why-blue-glow {
    top: 5%;
    right: -170px;
    width: 520px;
    height: 520px;
    opacity: 0.23;
    background: #1a609f;
}

.why-gold-glow {
    left: -210px;
    bottom: 8%;
    width: 430px;
    height: 430px;
    opacity: 0.1;
    background: var(--gold);
}


/* =====================================================
   WHY CONTAINER
===================================================== */

.why-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(300px, 0.72fr)
        minmax(0, 1.28fr);
    align-items: center;
    gap: clamp(55px, 7vw, 105px);
    padding-bottom: 110px;
}


/* =====================================================
   LEFT INTRODUCTION
===================================================== */

.why-intro {
    position: relative;
    max-width: 510px;
}

.why-intro::before {
    content: "";
    position: absolute;
    top: -25px;
    left: -30px;
    width: 85px;
    height: 85px;
    border-top: 1px solid rgba(213, 170, 84, 0.38);
    border-left: 1px solid rgba(213, 170, 84, 0.38);
    pointer-events: none;
}

.why-intro > h2 {
    margin-bottom: 22px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(33px, 4vw, 53px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.why-intro > h2 span {
    display: block;
    margin-top: 5px;
    color: transparent;
    background: linear-gradient(
        90deg,
        #f3dca0,
        #d5aa54,
        #aa7628
    );
    background-clip: text;
    -webkit-background-clip: text;
}

.why-intro > p {
    color: #a1b3c5;
    font-size: 12px;
    line-height: 1.9;
}


/* =====================================================
   QUOTE BOX
===================================================== */

.why-quote {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    overflow: hidden;
    margin-top: 29px;
    padding: 19px 18px;
    background:
        linear-gradient(
            110deg,
            rgba(17, 63, 108, 0.62),
            rgba(5, 25, 49, 0.52)
        );
    border: 1px solid rgba(213, 170, 84, 0.2);
    border-left: 2px solid var(--gold);
    border-radius: 2px;
}

.why-quote::after {
    content: "";
    position: absolute;
    top: -55px;
    right: -55px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.13;
    background: var(--gold);
    filter: blur(30px);
}

.why-quote > i {
    flex: 0 0 auto;
    color: var(--light-gold);
    font-size: 20px;
    opacity: 0.75;
}

.why-quote strong,
.why-quote span {
    display: block;
}

.why-quote strong {
    margin-bottom: 4px;
    color: var(--soft-white);
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 600;
}

.why-quote span {
    color: #8297ac;
    font-size: 9px;
    line-height: 1.6;
}


/* =====================================================
   MAIN BUTTON
===================================================== */

.why-main-button {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-top: 27px;
    padding: 0 23px;
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
    border: 1px solid var(--light-gold);
    border-radius: 2px;
    box-shadow: 0 13px 28px rgba(213, 170, 84, 0.16);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.why-main-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 17px 35px rgba(213, 170, 84, 0.28);
}

.why-main-button i {
    font-size: 8px;
    transition: transform var(--transition);
}

.why-main-button:hover i {
    transform: translateX(4px);
}


/* =====================================================
   BENEFITS GRID
===================================================== */

.why-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}


/* =====================================================
   BENEFIT CARD
===================================================== */

.why-benefit-card {
    position: relative;
    isolation: isolate;
    min-height: 240px;
    overflow: hidden;
    padding: 27px 22px 22px;
    background:
        linear-gradient(
            145deg,
            rgba(16, 61, 106, 0.7),
            rgba(4, 23, 45, 0.82)
        );
    border: 1px solid rgba(213, 170, 84, 0.16);
    border-radius: 4px;
    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.17),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transition:
        border-color var(--transition),
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.why-benefit-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -85px;
    right: -85px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    opacity: 0;
    background: var(--gold);
    filter: blur(50px);
    transition: opacity var(--transition);
}

.why-benefit-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -35px;
    bottom: -45px;
    width: 115px;
    height: 115px;
    border: 1px solid rgba(213, 170, 84, 0.08);
    transform: rotate(45deg);
}

.why-benefit-card:hover {
    background:
        linear-gradient(
            145deg,
            rgba(22, 76, 129, 0.8),
            rgba(5, 27, 52, 0.9)
        );
    border-color: rgba(213, 170, 84, 0.46);
    transform: translateY(-6px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(213, 170, 84, 0.055);
}

.why-benefit-card:hover::before {
    opacity: 0.13;
}


/* Benefit number */

.benefit-number {
    position: absolute;
    top: 16px;
    right: 18px;
    color: rgba(242, 213, 140, 0.16);
    font-family: var(--heading-font);
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    transition: color var(--transition);
}

.why-benefit-card:hover .benefit-number {
    color: rgba(242, 213, 140, 0.3);
}


/* Benefit icon */

.benefit-icon {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    margin-bottom: 19px;
    color: var(--light-gold);
    background:
        linear-gradient(
            145deg,
            rgba(213, 170, 84, 0.12),
            rgba(213, 170, 84, 0.035)
        );
    border: 1px solid rgba(213, 170, 84, 0.34);
    border-radius: 50%;
    font-size: 15px;
    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.why-benefit-card:hover .benefit-icon {
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
    transform: rotate(-5deg) scale(1.06);
}


/* Benefit content */

.why-benefit-card h3 {
    margin-bottom: 9px;
    color: var(--soft-white);
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.why-benefit-card p {
    color: #8398ac;
    font-size: 9px;
    line-height: 1.75;
}

.benefit-line {
    position: absolute;
    left: 22px;
    bottom: 18px;
    width: 34px;
    height: 1px;
    background: var(--gold);
    transition: width 0.45s ease;
}

.why-benefit-card:hover .benefit-line {
    width: calc(100% - 44px);
}


/* Alternating position */

.why-benefit-card:nth-child(even) {
    transform: translateY(25px);
}

.why-benefit-card:nth-child(even):hover {
    transform: translateY(19px);
}


/* =====================================================
   KEYWORD MARQUEE STRIP
===================================================== */

.why-keyword-strip {
    position: relative;
    z-index: 3;
    width: 100%;
    overflow: hidden;
    padding: 19px 0;
    background:
        linear-gradient(
            90deg,
            #b47f2d,
            #f0d283,
            #bd8734
        );
    border-top: 1px solid var(--light-gold);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.why-keyword-strip::before,
.why-keyword-strip::after {
    content: "";
    position: absolute;
    z-index: 3;
    top: 0;
    width: 100px;
    height: 100%;
    pointer-events: none;
}

.why-keyword-strip::before {
    left: 0;
    background: linear-gradient(
        90deg,
        rgba(169, 115, 37, 0.85),
        transparent
    );
}

.why-keyword-strip::after {
    right: 0;
    background: linear-gradient(
        270deg,
        rgba(169, 115, 37, 0.85),
        transparent
    );
}

.why-keyword-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 28px;
    animation: whyKeywordMove 32s linear infinite;
}

.why-keyword-track span {
    color: #06162c;
    font-family: var(--heading-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.why-keyword-track i {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    transform: rotate(45deg);
    background: #092548;
}

@keyframes whyKeywordMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.why-keyword-strip:hover .why-keyword-track {
    animation-play-state: paused;
}


/* =====================================================
   WHY SECTION RESPONSIVE – TABLET
===================================================== */

@media (max-width: 1050px) {

    .why-container {
        grid-template-columns:
            minmax(270px, 0.7fr)
            minmax(0, 1.3fr);
        gap: 45px;
    }

    .why-benefit-card {
        min-height: 250px;
        padding-inline: 18px;
    }

    .benefit-line {
        left: 18px;
    }

}


/* =====================================================
   WHY SECTION RESPONSIVE – SMALL TABLET
===================================================== */

@media (max-width: 850px) {

    .why-ibs {
        padding-top: 90px;
    }

    .why-container {
        grid-template-columns: 1fr;
        gap: 55px;
        padding-bottom: 90px;
    }

    .why-intro {
        max-width: 680px;
    }

    .why-benefits-grid {
        max-width: 720px;
    }

}


/* =====================================================
   WHY SECTION RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 600px) {

    .why-ibs {
        padding-top: 75px;
    }

    .why-container {
        gap: 42px;
        padding-bottom: 70px;
    }

    .why-intro::before {
        top: -14px;
        left: -10px;
        width: 55px;
        height: 55px;
    }

    .why-intro > h2 {
        font-size: clamp(30px, 8.5vw, 40px);
    }

    .why-intro > p {
        font-size: 10px;
        line-height: 1.8;
    }

    .why-main-button {
        width: 100%;
    }

    .why-benefits-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .why-benefit-card {
        min-height: 220px;
    }

    .why-benefit-card:nth-child(even),
    .why-benefit-card:nth-child(even):hover {
        transform: none;
    }

    .why-benefit-card:hover {
        transform: translateY(-4px);
    }

    .why-keyword-strip {
        padding: 16px 0;
    }

    .why-keyword-track {
        gap: 22px;
        animation-duration: 25s;
    }

    .why-keyword-track span {
        font-size: 10px;
    }

}
/* =====================================================
   OUR GLOBAL IMPACT
===================================================== */

.home-impact {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 120px 0 105px;
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(18, 66, 115, 0.28),
            transparent 40%
        ),
        linear-gradient(
            145deg,
            #020c1a 0%,
            #061a34 50%,
            #020b18 100%
        );
}


/* Top gold separator */

.home-impact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(88%, 1250px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(213, 170, 84, 0.52),
        transparent
    );
}


/* =====================================================
   BACKGROUND ELEMENTS
===================================================== */

.impact-world-pattern {
    position: absolute;
    z-index: -3;
    inset: 0;
    opacity: 0.14;
    background-image:
        radial-gradient(
            circle at center,
            rgba(213, 170, 84, 0.22) 1px,
            transparent 1px
        );
    background-size: 28px 28px;
    mask-image: radial-gradient(
        circle at center,
        black,
        transparent 74%
    );
    -webkit-mask-image: radial-gradient(
        circle at center,
        black,
        transparent 74%
    );
    pointer-events: none;
}

.impact-light {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
}

.impact-light-one {
    top: 20%;
    left: -190px;
    width: 480px;
    height: 480px;
    opacity: 0.17;
    background: #155c9d;
}

.impact-light-two {
    right: -190px;
    bottom: 4%;
    width: 430px;
    height: 430px;
    opacity: 0.09;
    background: var(--gold);
}


/* =====================================================
   IMPACT HEADING
===================================================== */

.impact-heading {
    margin-bottom: 70px;
}


/* =====================================================
   IMPACT MAIN GRID
===================================================== */

.impact-main-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(270px, 0.9fr)
        minmax(310px, 1.15fr)
        minmax(270px, 0.9fr);
    align-items: center;
    gap: clamp(28px, 4vw, 65px);
}


/* =====================================================
   LEFT CONTENT PANEL
===================================================== */

.impact-content-panel {
    position: relative;
    padding: 28px 25px;
    background:
        linear-gradient(
            145deg,
            rgba(15, 57, 100, 0.64),
            rgba(3, 20, 40, 0.74)
        );
    border: 1px solid rgba(213, 170, 84, 0.2);
    border-radius: 5px;
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.impact-content-panel::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 25px;
    width: 72px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--light-gold),
        var(--dark-gold)
    );
}

.impact-panel-label {
    display: block;
    margin-bottom: 11px;
    color: var(--gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.impact-content-panel h3 {
    margin-bottom: 14px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 600;
    line-height: 1.3;
}

.impact-content-panel h3 span {
    display: block;
    color: var(--light-gold);
}

.impact-content-panel > p {
    color: #8fa3b7;
    font-size: 10px;
    line-height: 1.8;
}


/* =====================================================
   IMPACT REGIONS
===================================================== */

.impact-regions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 23px;
}

.impact-region {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    padding: 9px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(213, 170, 84, 0.11);
    border-radius: 3px;
    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.impact-region:hover {
    background: rgba(213, 170, 84, 0.07);
    border-color: rgba(213, 170, 84, 0.3);
    transform: translateY(-2px);
}

.region-flag {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    display: grid;
    place-items: center;
    color: var(--light-gold);
    background:
        linear-gradient(
            145deg,
            #123e6c,
            #061b34
        );
    border: 1px solid rgba(213, 170, 84, 0.25);
    border-radius: 50%;
    font-size: 7px;
    font-weight: 900;
}

.impact-region > div {
    min-width: 0;
}

.impact-region strong,
.impact-region small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.impact-region strong {
    color: #dce6f0;
    font-size: 8px;
    font-weight: 700;
}

.impact-region small {
    color: #71869a;
    font-size: 6px;
}


/* Explore button */

.impact-explore-button {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
    border: 1px solid var(--light-gold);
    border-radius: 2px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.impact-explore-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 13px 28px rgba(213, 170, 84, 0.25);
}

.impact-explore-button i {
    font-size: 8px;
    transition: transform var(--transition);
}

.impact-explore-button:hover i {
    transform: translateX(4px);
}


/* =====================================================
   CSS GLOBE AREA
===================================================== */

.impact-globe-area {
    position: relative;
    width: min(100%, 430px);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    justify-self: center;
}


/* Outer orbit */

.globe-outer-ring {
    position: absolute;
    inset: 3%;
    border: 1px solid rgba(213, 170, 84, 0.18);
    border-radius: 50%;
    animation: globeRingRotate 24s linear infinite;
}

.globe-outer-ring::before,
.globe-outer-ring::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--light-gold);
    box-shadow: 0 0 12px rgba(213, 170, 84, 0.75);
}

.globe-outer-ring::before {
    top: 15%;
    left: 11%;
}

.globe-outer-ring::after {
    right: 8%;
    bottom: 20%;
}


/* Middle orbit */

.globe-middle-ring {
    position: absolute;
    inset: 11%;
    border: 1px dashed rgba(213, 170, 84, 0.25);
    border-radius: 50%;
    animation: globeRingReverse 30s linear infinite;
}


/* Main globe */

.impact-globe {
    position: relative;
    width: 68%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid rgba(242, 213, 140, 0.54);
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 38% 32%,
            rgba(35, 105, 164, 0.74),
            rgba(7, 38, 72, 0.95) 53%,
            #020d1e 100%
        );
    box-shadow:
        0 0 55px rgba(21, 92, 157, 0.27),
        0 0 90px rgba(213, 170, 84, 0.08),
        inset -25px -28px 50px rgba(0, 0, 0, 0.44),
        inset 14px 15px 35px rgba(255, 255, 255, 0.04);
}


/* Globe horizontal lines */

.globe-latitude {
    position: absolute;
    left: 7%;
    width: 86%;
    height: 28%;
    border: 1px solid rgba(213, 170, 84, 0.2);
    border-left-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
}

.latitude-one {
    top: 20%;
}

.latitude-two {
    bottom: 20%;
}


/* Globe vertical lines */

.globe-longitude {
    position: absolute;
    top: 4%;
    width: 45%;
    height: 92%;
    border: 1px solid rgba(213, 170, 84, 0.2);
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
}

.longitude-one {
    left: 27%;
}

.longitude-two {
    left: 27%;
    transform: rotate(90deg);
}


/* Globe centre logo */

.globe-centre {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(213, 170, 84, 0.28);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(3, 18, 36, 0.68);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.globe-centre::before {
    content: "";
    position: absolute;
    inset: -9px;
    border: 1px solid rgba(213, 170, 84, 0.13);
    border-radius: 50%;
}

.globe-centre img {
    width: auto;
    max-width: 83px;
    height: 73px;
    object-fit: contain;
    filter:
        drop-shadow(0 6px 10px rgba(0, 0, 0, 0.4))
        drop-shadow(0 0 8px rgba(213, 170, 84, 0.23));
}


/* =====================================================
   GLOBE LOCATION NODES
===================================================== */

.globe-node {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #dce8f3;
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.globe-node i {
    position: relative;
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
    background: var(--light-gold);
    box-shadow:
        0 0 0 4px rgba(213, 170, 84, 0.12),
        0 0 10px rgba(213, 170, 84, 0.85);
}

.globe-node i::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(213, 170, 84, 0.5);
    border-radius: 50%;
    animation: globeNodePulse 2.1s infinite;
}

.node-india {
    top: 39%;
    right: 10%;
}

.node-dubai {
    top: 31%;
    left: 12%;
}

.node-london {
    top: 16%;
    left: 41%;
}

.node-global {
    right: 15%;
    bottom: 21%;
}

@keyframes globeNodePulse {
    0% {
        opacity: 0.8;
        transform: scale(0.5);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.55);
    }
}


/* =====================================================
   ORBIT ICONS
===================================================== */

.orbit-icon {
    position: absolute;
    z-index: 6;
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
    border: 2px solid #071b34;
    border-radius: 50%;
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.35);
    font-size: 11px;
}

.orbit-icon-one {
    top: 4%;
    left: 47%;
}

.orbit-icon-two {
    right: 1%;
    bottom: 31%;
}

.orbit-icon-three {
    left: 3%;
    bottom: 23%;
}


/* Globe animations */

@keyframes globeRingRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes globeRingReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


/* =====================================================
   RIGHT IMPACT STATISTICS
===================================================== */

.impact-statistics {
    display: grid;
    gap: 10px;
}

.impact-stat-card {
    position: relative;
    min-height: 105px;
    display: grid;
    grid-template-columns: 75px 1fr;
    align-items: center;
    gap: 14px;
    overflow: hidden;
    padding: 16px 17px;
    background:
        linear-gradient(
            115deg,
            rgba(16, 59, 103, 0.63),
            rgba(4, 22, 43, 0.73)
        );
    border: 1px solid rgba(213, 170, 84, 0.15);
    border-radius: 4px;
    transition:
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.impact-stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(
        180deg,
        var(--light-gold),
        var(--dark-gold)
    );
    transition: height 0.4s ease;
}

.impact-stat-card:hover {
    background:
        linear-gradient(
            115deg,
            rgba(21, 73, 124, 0.75),
            rgba(5, 27, 51, 0.82)
        );
    border-color: rgba(213, 170, 84, 0.4);
    transform: translateX(-5px);
}

.impact-stat-card:hover::before {
    height: 100%;
}

.impact-stat-number {
    color: var(--light-gold);
    font-family: var(--heading-font);
    font-size: clamp(21px, 2.1vw, 28px);
    font-weight: 700;
    line-height: 1;
}

.impact-stat-number sup {
    font-size: 11px;
}

.impact-stat-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--soft-white);
    font-family: var(--heading-font);
    font-size: 10px;
    font-weight: 600;
}

.impact-stat-card p {
    color: #74899d;
    font-size: 7px;
    line-height: 1.6;
}

.impact-stat-card > i {
    position: absolute;
    right: 13px;
    bottom: 9px;
    color: rgba(213, 170, 84, 0.08);
    font-size: 35px;
    transform: rotate(-7deg);
    transition:
        color var(--transition),
        transform var(--transition);
}

.impact-stat-card:hover > i {
    color: rgba(213, 170, 84, 0.16);
    transform: rotate(0) scale(1.08);
}


/* =====================================================
   BOTTOM STATEMENT
===================================================== */

.impact-bottom-statement {
    position: relative;
    z-index: 2;
    min-height: 100px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    margin-top: 65px;
    padding: 22px 28px;
    background:
        linear-gradient(
            100deg,
            rgba(14, 54, 96, 0.72),
            rgba(4, 21, 42, 0.84)
        );
    border: 1px solid rgba(213, 170, 84, 0.22);
    border-radius: 4px;
}

.impact-bottom-statement::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: 24%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        var(--light-gold),
        transparent
    );
}

.statement-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--light-gold);
    background: rgba(213, 170, 84, 0.07);
    border: 1px solid rgba(213, 170, 84, 0.25);
    border-radius: 50%;
    font-size: 15px;
}

.impact-bottom-statement p {
    color: #a4b5c6;
    font-size: 11px;
    line-height: 1.75;
}

.impact-bottom-statement p strong {
    color: var(--light-gold);
    font-weight: 700;
}

.impact-bottom-statement > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--light-gold);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color var(--transition);
}

.impact-bottom-statement > a:hover {
    color: var(--white);
}

.impact-bottom-statement > a i {
    font-size: 8px;
    transition: transform var(--transition);
}

.impact-bottom-statement > a:hover i {
    transform: translate(3px, -3px);
}


/* =====================================================
   IMPACT RESPONSIVE – TABLET
===================================================== */

@media (max-width: 1100px) {

    .impact-main-grid {
        grid-template-columns:
            minmax(260px, 0.9fr)
            minmax(300px, 1.1fr);
    }

    .impact-statistics {
        grid-column: 1 / -1;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin-top: 25px;
    }

    .impact-stat-card {
        min-height: 135px;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .impact-stat-card:hover {
        transform: translateY(-4px);
    }

}


/* =====================================================
   IMPACT RESPONSIVE – SMALL TABLET
===================================================== */

@media (max-width: 800px) {

    .home-impact {
        padding: 85px 0 80px;
    }

    .impact-heading {
        margin-bottom: 50px;
    }

    .impact-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .impact-content-panel {
        max-width: 650px;
    }

    .impact-globe-area {
        width: min(100%, 450px);
        grid-row: 2;
    }

    .impact-statistics {
        grid-column: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 0;
    }

    .impact-stat-card {
        min-height: 125px;
    }

    .impact-bottom-statement {
        grid-template-columns: auto 1fr;
    }

    .impact-bottom-statement > a {
        grid-column: 2;
    }

}


/* =====================================================
   IMPACT RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 600px) {

    .home-impact {
        padding: 75px 0 70px;
    }

    .impact-main-grid {
        gap: 42px;
    }

    .impact-content-panel {
        padding: 23px 18px;
    }

    .impact-content-panel h3 {
        font-size: 25px;
    }

    .impact-regions {
        grid-template-columns: 1fr;
    }

    .impact-globe-area {
        width: min(100%, 360px);
    }

    .globe-centre {
        width: 82px;
        height: 82px;
    }

    .globe-centre img {
        max-width: 68px;
        height: 60px;
    }

    .orbit-icon {
        width: 34px;
        height: 34px;
        font-size: 9px;
    }

    .impact-statistics {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .impact-stat-card {
        min-height: 100px;
        grid-template-columns: 72px 1fr;
    }

    .impact-stat-card:hover {
        transform: translateX(3px);
    }

    .impact-bottom-statement {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 45px;
        padding: 21px 18px;
        text-align: center;
    }

    .statement-icon {
        margin-inline: auto;
    }

    .impact-bottom-statement > a {
        grid-column: auto;
        justify-content: center;
        white-space: normal;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 390px) {

    .impact-globe-area {
        width: 300px;
        max-width: 100%;
    }

    .globe-node b {
        display: none;
    }

    .orbit-icon {
        width: 31px;
        height: 31px;
    }

}
/* =====================================================
   DISTINGUISHED GLOBAL SPEAKERS
===================================================== */

.home-speakers {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 120px 0 105px;
    background:
        radial-gradient(
            circle at 15% 35%,
            rgba(18, 66, 115, 0.28),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #04162c 0%,
            #071f3d 48%,
            #020c1a 100%
        );
}

.home-speakers::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(88%, 1250px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(213, 170, 84, 0.52),
        transparent
    );
}


/* =====================================================
   BACKGROUND DECORATIONS
===================================================== */

.speakers-bg-text {
    position: absolute;
    z-index: -3;
    top: 35px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    color: transparent;
    font-family: var(--heading-font);
    font-size: clamp(85px, 13vw, 210px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-align: center;
    white-space: nowrap;
    -webkit-text-stroke: 1px rgba(213, 170, 84, 0.045);
    pointer-events: none;
}

.speakers-blue-glow,
.speakers-gold-glow {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.speakers-blue-glow {
    top: 15%;
    left: -180px;
    width: 480px;
    height: 480px;
    opacity: 0.2;
    background: #1763a6;
}

.speakers-gold-glow {
    right: -190px;
    bottom: 5%;
    width: 440px;
    height: 440px;
    opacity: 0.1;
    background: var(--gold);
}


/* =====================================================
   SPEAKERS HEADING
===================================================== */

.speakers-heading-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
    margin-bottom: 55px;
}

.speakers-heading-content {
    width: min(100%, 720px);
}

.speakers-heading-content h2 {
    margin-bottom: 16px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.speakers-heading-content h2 span {
    display: block;
    margin-top: 4px;
    color: transparent;
    background: linear-gradient(
        90deg,
        #f5dfa4,
        #d5aa54,
        #ad792b
    );
    background-clip: text;
    -webkit-background-clip: text;
}

.speakers-heading-content > p {
    max-width: 650px;
    color: #98adbf;
    font-size: 12px;
    line-height: 1.85;
}

.speakers-view-button {
    flex: 0 0 auto;
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    color: var(--light-gold);
    background: rgba(213, 170, 84, 0.05);
    border: 1px solid rgba(213, 170, 84, 0.4);
    border-radius: 2px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.speakers-view-button:hover {
    color: var(--primary-blue);
    background: var(--light-gold);
    transform: translateY(-3px);
}

.speakers-view-button i {
    font-size: 8px;
    transition: transform var(--transition);
}

.speakers-view-button:hover i {
    transform: translateX(4px);
}


/* =====================================================
   SPEAKERS SHOWCASE
===================================================== */

.speakers-showcase {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(360px, 1.15fr)
        minmax(0, 1.85fr);
    gap: 25px;
}


/* =====================================================
   FEATURED SPEAKER
===================================================== */

.featured-speaker-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(15, 57, 99, 0.95),
            rgba(3, 18, 36, 0.98)
        );
    border: 1px solid rgba(213, 170, 84, 0.36);
    border-radius: 6px;
    box-shadow:
        0 30px 65px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    transition:
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.featured-speaker-card::before {
    content: "";
    position: absolute;
    z-index: 4;
    top: 0;
    left: 50%;
    width: 36%;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        var(--light-gold),
        transparent
    );
    transition: width 0.5s ease;
}

.featured-speaker-card:hover {
    border-color: rgba(213, 170, 84, 0.62);
    transform: translateY(-7px);
    box-shadow:
        0 38px 75px rgba(0, 0, 0, 0.42),
        0 0 30px rgba(213, 170, 84, 0.07);
}

.featured-speaker-card:hover::before {
    width: 75%;
}


/* Featured image */

.featured-speaker-image {
    position: relative;
    height: 475px;
    overflow: hidden;
    background: #071a31;
}

.featured-speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.92);
    transition:
        transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter var(--transition);
}

.featured-speaker-card:hover
.featured-speaker-image img {
    transform: scale(1.055);
    filter: saturate(1.06);
}

.speaker-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(2, 12, 25, 0.05) 25%,
            rgba(2, 13, 27, 0.18) 55%,
            rgba(3, 18, 36, 0.98) 100%
        );
}

.featured-speaker-label {
    position: absolute;
    top: 17px;
    left: 17px;
    padding: 7px 11px;
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.speaker-profile-arrow {
    position: absolute;
    right: 17px;
    bottom: 17px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    font-size: 11px;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.speaker-profile-arrow:hover {
    transform: rotate(7deg) scale(1.07);
    box-shadow: 0 12px 28px rgba(213, 170, 84, 0.3);
}


/* Featured information */

.featured-speaker-info {
    padding: 24px 25px 25px;
}

.speaker-category {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.featured-speaker-info h3 {
    margin-bottom: 5px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(23px, 2.4vw, 32px);
    font-weight: 600;
}

.speaker-position {
    margin-bottom: 14px;
    color: var(--light-gold);
    font-size: 9px;
    font-weight: 600;
    line-height: 1.6;
}

.speaker-biography {
    color: #8fa3b7;
    font-size: 9px;
    line-height: 1.75;
}


/* Speaker topics */

.speaker-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 17px;
}

.speaker-topics span {
    padding: 6px 8px;
    color: #aebfd0;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(213, 170, 84, 0.13);
    border-radius: 2px;
    font-size: 6px;
    font-weight: 700;
}


/* Featured card footer */

.speaker-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid rgba(213, 170, 84, 0.16);
}

.speaker-card-footer > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #879caf;
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
}

.speaker-card-footer > span i {
    color: var(--gold);
}

.speaker-card-footer > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--light-gold);
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.speaker-card-footer > a i {
    font-size: 7px;
    transition: transform var(--transition);
}

.speaker-card-footer > a:hover i {
    transform: translateX(4px);
}


/* =====================================================
   SPEAKERS GRID
===================================================== */

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}


/* =====================================================
   SMALL SPEAKER PROFILE CARD
===================================================== */

.speaker-profile-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(14, 53, 94, 0.88),
            rgba(3, 18, 36, 0.97)
        );
    border: 1px solid rgba(213, 170, 84, 0.18);
    border-radius: 5px;
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transition:
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.speaker-profile-card::before {
    content: "";
    position: absolute;
    z-index: 4;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        var(--dark-gold),
        var(--light-gold),
        var(--dark-gold)
    );
    transition: width 0.5s ease;
}

.speaker-profile-card:hover {
    border-color: rgba(213, 170, 84, 0.5);
    transform: translateY(-7px);
    box-shadow:
        0 32px 65px rgba(0, 0, 0, 0.36),
        0 0 25px rgba(213, 170, 84, 0.055);
}

.speaker-profile-card:hover::before {
    width: 75%;
}


/* Profile image */

.speaker-photo {
    position: relative;
    height: 430px;
    overflow: hidden;
    background: #071a31;
}

.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.9);
    transition:
        transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter var(--transition);
}

.speaker-profile-card:hover .speaker-photo img {
    transform: scale(1.07);
    filter: saturate(1.07);
}

.speaker-photo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(2, 12, 25, 0.02) 38%,
            rgba(2, 13, 27, 0.2) 67%,
            rgba(3, 18, 36, 0.97) 100%
        );
}

.speaker-number {
    position: absolute;
    top: 14px;
    left: 14px;
    color: rgba(242, 213, 140, 0.78);
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
}

.speaker-photo > a {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    color: var(--light-gold);
    background: rgba(4, 24, 47, 0.78);
    border: 1px solid rgba(213, 170, 84, 0.45);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 9px;
    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.speaker-photo > a:hover {
    color: var(--primary-blue);
    background: var(--light-gold);
    transform: rotate(90deg);
}


/* Profile content */

.speaker-profile-info {
    min-height: 145px;
    padding: 20px 17px;
}

.speaker-profile-info > span {
    display: block;
    margin-bottom: 7px;
    color: var(--gold);
    font-size: 6px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.speaker-profile-info h3 {
    margin-bottom: 7px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(15px, 1.5vw, 19px);
    font-weight: 600;
    line-height: 1.35;
}

.speaker-profile-info p {
    color: #8499ad;
    font-size: 8px;
    line-height: 1.65;
}


/* =====================================================
   SPEAKER INVITATION CTA
===================================================== */

.speaker-invitation {
    position: relative;
    z-index: 2;
    min-height: 105px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    margin-top: 50px;
    padding: 23px 30px;
    background:
        linear-gradient(
            100deg,
            rgba(15, 58, 102, 0.82),
            rgba(4, 22, 43, 0.9)
        );
    border: 1px solid rgba(213, 170, 84, 0.27);
    border-radius: 5px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.speaker-invitation::before {
    content: "";
    position: absolute;
    top: -85px;
    right: 12%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    opacity: 0.15;
    background: var(--gold);
    filter: blur(60px);
}

.speaker-invitation::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: 25%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        var(--light-gold),
        transparent
    );
}

.invitation-icon {
    position: relative;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--light-gold);
    background: rgba(213, 170, 84, 0.07);
    border: 1px solid rgba(213, 170, 84, 0.3);
    border-radius: 50%;
    font-size: 16px;
}

.invitation-content {
    position: relative;
}

.invitation-content > span {
    display: block;
    margin-bottom: 4px;
    color: var(--gold);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.invitation-content h3 {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600;
}

.invitation-button {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 19px;
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
    border: 1px solid var(--light-gold);
    border-radius: 2px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.invitation-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 28px rgba(213, 170, 84, 0.28);
}

.invitation-button i {
    font-size: 8px;
    transition: transform var(--transition);
}

.invitation-button:hover i {
    transform: translateX(4px);
}


/* =====================================================
   SPEAKERS RESPONSIVE – LARGE TABLET
===================================================== */

@media (max-width: 1150px) {

    .speakers-showcase {
        grid-template-columns: minmax(330px, 0.9fr) 1.5fr;
    }

    .speakers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .speaker-profile-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 8px);
        justify-self: center;
    }

    .speaker-photo {
        height: 365px;
    }

}


/* =====================================================
   SPEAKERS RESPONSIVE – TABLET
===================================================== */

@media (max-width: 850px) {

    .home-speakers {
        padding: 90px 0 80px;
    }

    .speakers-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
        margin-bottom: 45px;
    }

    .speakers-showcase {
        grid-template-columns: 1fr;
    }

    .featured-speaker-card {
        display: grid;
        grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
    }

    .featured-speaker-image {
        height: 100%;
        min-height: 490px;
    }

    .featured-speaker-info {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .speakers-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .speaker-profile-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .speaker-photo {
        height: 340px;
    }

    .speaker-invitation {
        grid-template-columns: auto 1fr;
    }

    .invitation-button {
        grid-column: 2;
        width: max-content;
    }

}


/* =====================================================
   SPEAKERS RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 650px) {

    .home-speakers {
        padding: 75px 0 70px;
    }

    .speakers-bg-text {
        top: 25px;
        font-size: 65px;
    }

    .speakers-heading-content h2 {
        font-size: clamp(29px, 8.5vw, 40px);
    }

    .speakers-heading-content > p {
        font-size: 10px;
    }

    .speakers-view-button {
        width: 100%;
    }

    .featured-speaker-card {
        display: block;
    }

    .featured-speaker-image {
        height: 470px;
        min-height: 0;
    }

    .featured-speaker-info {
        display: block;
        padding: 22px 18px;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .speaker-profile-card {
        display: grid;
        grid-template-columns: 42% 58%;
        min-height: 205px;
    }

    .speaker-photo {
        height: 100%;
        min-height: 205px;
    }

    .speaker-profile-info {
        min-height: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding: 18px 15px;
    }

    .speaker-profile-info h3 {
        font-size: 16px;
    }

    .speaker-invitation {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 38px;
        padding: 22px 18px;
        text-align: center;
    }

    .invitation-icon {
        margin-inline: auto;
    }

    .invitation-button {
        grid-column: auto;
        width: 100%;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .featured-speaker-image {
        height: 420px;
    }

    .speaker-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .speaker-profile-card {
        grid-template-columns: 44% 56%;
    }

    .speaker-profile-info {
        padding: 14px 11px;
    }

    .speaker-profile-info h3 {
        font-size: 14px;
    }

}
/* =====================================================
   IBS GLOBAL HALL OF FAME
===================================================== */

.home-hall-of-fame {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 125px 0 100px;
    background:
        radial-gradient(
            circle at 23% 42%,
            rgba(18, 67, 116, 0.27),
            transparent 35%
        ),
        linear-gradient(
            140deg,
            #020c1a 0%,
            #061a34 52%,
            #020b18 100%
        );
}

.home-hall-of-fame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(88%, 1250px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(213, 170, 84, 0.55),
        transparent
    );
}


/* =====================================================
   BACKGROUND DECORATIONS
===================================================== */

.hall-bg-title {
    position: absolute;
    z-index: -4;
    top: 38px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    color: transparent;
    font-family: var(--heading-font);
    font-size: clamp(75px, 12vw, 190px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-align: center;
    white-space: nowrap;
    -webkit-text-stroke: 1px rgba(213, 170, 84, 0.045);
    pointer-events: none;
}

.hall-blue-glow,
.hall-gold-glow {
    position: absolute;
    z-index: -3;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.hall-blue-glow {
    top: 18%;
    left: -190px;
    width: 490px;
    height: 490px;
    opacity: 0.21;
    background: #145e9f;
}

.hall-gold-glow {
    right: -170px;
    bottom: 7%;
    width: 430px;
    height: 430px;
    opacity: 0.11;
    background: var(--gold);
}

.hall-trophy-decoration {
    position: absolute;
    z-index: -2;
    right: 4%;
    top: 20%;
    color: rgba(213, 170, 84, 0.035);
    font-size: clamp(190px, 24vw, 380px);
    line-height: 1;
    transform: rotate(-8deg);
    pointer-events: none;
}


/* =====================================================
   MAIN CONTAINER
===================================================== */

.hall-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(360px, 0.88fr)
        minmax(0, 1.12fr);
    align-items: center;
    gap: clamp(65px, 8vw, 120px);
}


/* =====================================================
   LEFT AWARDEE VISUAL
===================================================== */

.hall-visual {
    position: relative;
    width: min(100%, 535px);
    padding: 15px 24px 28px 15px;
}

.hall-image-frame {
    position: relative;
    height: 650px;
    overflow: hidden;
    background: #071a31;
    border: 1px solid rgba(213, 170, 84, 0.42);
    border-radius: 5px;
    box-shadow:
        0 38px 80px rgba(0, 0, 0, 0.42),
        17px 18px 0 rgba(15, 55, 96, 0.3);
}

.hall-image-frame::before {
    content: "";
    position: absolute;
    z-index: 5;
    inset: 10px;
    border: 1px solid rgba(242, 213, 140, 0.15);
    border-radius: 2px;
    pointer-events: none;
}

.hall-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.94);
    transition:
        transform 1s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter var(--transition);
}

.hall-visual:hover .hall-image-frame img {
    transform: scale(1.045);
    filter: saturate(1.07);
}

.hall-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(2, 12, 25, 0.03) 35%,
            rgba(2, 13, 27, 0.18) 62%,
            rgba(2, 13, 27, 0.96) 100%
        );
}


/* =====================================================
   WINNER YEAR
===================================================== */

.hall-winner-year {
    position: absolute;
    z-index: 6;
    top: 25px;
    left: 25px;
    min-width: 83px;
    padding: 10px 13px;
    background: rgba(3, 20, 40, 0.78);
    border: 1px solid rgba(213, 170, 84, 0.42);
    border-radius: 3px;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    text-align: center;
}

.hall-winner-year small,
.hall-winner-year strong {
    display: block;
}

.hall-winner-year small {
    margin-bottom: 1px;
    color: var(--gold);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hall-winner-year strong {
    color: var(--light-gold);
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700;
}


/* =====================================================
   AWARD SEAL
===================================================== */

.hall-award-seal {
    position: absolute;
    z-index: 7;
    top: 62px;
    right: -22px;
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            #efd188 0%,
            #c7933d 62%,
            #8f6221 100%
        );
    border: 3px solid #071c36;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(242, 213, 140, 0.7);
}

.hall-award-seal::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(5, 24, 47, 0.55);
    border-radius: 50%;
}

.seal-outer-text {
    position: absolute;
    color: var(--primary-blue);
    font-size: 5px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transform: translateY(-42px);
}

.seal-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--light-gold);
    background:
        linear-gradient(
            145deg,
            #0c3560,
            #031327
        );
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    box-shadow: 0 9px 20px rgba(0, 0, 0, 0.3);
    font-size: 21px;
}


/* =====================================================
   IMAGE CAPTION
===================================================== */

.hall-image-caption {
    position: absolute;
    z-index: 6;
    left: 28px;
    right: 28px;
    bottom: 30px;
    padding-left: 14px;
    border-left: 2px solid var(--gold);
}

.hall-image-caption span,
.hall-image-caption strong {
    display: block;
}

.hall-image-caption span {
    margin-bottom: 4px;
    color: var(--light-gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hall-image-caption strong {
    max-width: 330px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}


/* =====================================================
   DECORATIVE BORDERS
===================================================== */

.hall-border {
    position: absolute;
    z-index: 8;
    width: 70px;
    height: 70px;
    pointer-events: none;
}

.hall-border-top {
    top: 0;
    left: 0;
    border-top: 1px solid var(--light-gold);
    border-left: 1px solid var(--light-gold);
}

.hall-border-bottom {
    right: 0;
    bottom: 10px;
    border-right: 1px solid var(--light-gold);
    border-bottom: 1px solid var(--light-gold);
}


/* =====================================================
   RIGHT CONTENT
===================================================== */

.hall-content {
    position: relative;
    max-width: 700px;
}

.hall-content > h2 {
    margin-bottom: 24px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(32px, 4vw, 53px);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.hall-content > h2 span {
    display: block;
    margin-top: 5px;
    color: transparent;
    background: linear-gradient(
        90deg,
        #f5dfa5,
        #d5aa54,
        #ad792b
    );
    background-clip: text;
    -webkit-background-clip: text;
}


/* =====================================================
   AWARD TITLE
===================================================== */

.hall-award-title {
    display: flex;
    align-items: center;
    gap: 13px;
    width: max-content;
    max-width: 100%;
    margin-bottom: 21px;
    padding: 11px 15px;
    background:
        linear-gradient(
            100deg,
            rgba(19, 67, 115, 0.65),
            rgba(4, 24, 47, 0.45)
        );
    border: 1px solid rgba(213, 170, 84, 0.22);
    border-radius: 3px;
}

.award-title-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: grid;
    place-items: center;
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
    border-radius: 50%;
    font-size: 13px;
}

.hall-award-title small,
.hall-award-title strong {
    display: block;
}

.hall-award-title small {
    margin-bottom: 2px;
    color: #8196aa;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hall-award-title strong {
    color: var(--soft-white);
    font-family: var(--heading-font);
    font-size: 12px;
    font-weight: 600;
}


/* =====================================================
   PERSON DETAILS
===================================================== */

.hall-person-category {
    display: block;
    margin-bottom: 7px;
    color: var(--gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hall-content > h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(27px, 3vw, 39px);
    font-weight: 600;
}

.hall-lead {
    margin-bottom: 11px;
    color: #c5d2de;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8;
}

.hall-description {
    color: #879caf;
    font-size: 10px;
    line-height: 1.85;
}


/* =====================================================
   RECOGNITION GRID
===================================================== */

.hall-recognition-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-top: 25px;
}

.hall-recognition {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    padding: 12px 10px;
    background: rgba(255, 255, 255, 0.028);
    border: 1px solid rgba(213, 170, 84, 0.13);
    border-radius: 3px;
    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.hall-recognition:hover {
    background: rgba(213, 170, 84, 0.07);
    border-color: rgba(213, 170, 84, 0.35);
    transform: translateY(-3px);
}

.hall-recognition > i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    color: var(--light-gold);
    background: rgba(213, 170, 84, 0.07);
    border: 1px solid rgba(213, 170, 84, 0.22);
    border-radius: 50%;
    font-size: 10px;
}

.hall-recognition > span {
    min-width: 0;
}

.hall-recognition strong,
.hall-recognition small {
    display: block;
}

.hall-recognition strong {
    overflow: hidden;
    color: #dce6ef;
    font-size: 7px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hall-recognition small {
    margin-top: 2px;
    color: #71869a;
    font-size: 5px;
}


/* =====================================================
   HALL OF FAME QUOTE
===================================================== */

.hall-quote {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 23px;
    padding: 17px 18px;
    background:
        linear-gradient(
            100deg,
            rgba(15, 57, 100, 0.55),
            rgba(4, 22, 43, 0.4)
        );
    border-left: 2px solid var(--gold);
}

.hall-quote > i {
    flex: 0 0 auto;
    color: var(--light-gold);
    font-size: 18px;
    opacity: 0.8;
}

.hall-quote p {
    color: #a6b7c7;
    font-family: var(--heading-font);
    font-size: 11px;
    font-style: italic;
    line-height: 1.75;
}


/* =====================================================
   BUTTONS
===================================================== */

.hall-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
}

.hall-primary-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
    border: 1px solid var(--light-gold);
    border-radius: 2px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.hall-primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(213, 170, 84, 0.28);
}

.hall-primary-button i {
    font-size: 8px;
    transition: transform var(--transition);
}

.hall-primary-button:hover i {
    transform: translateX(4px);
}

.hall-secondary-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    color: var(--light-gold);
    background: rgba(213, 170, 84, 0.04);
    border: 1px solid rgba(213, 170, 84, 0.34);
    border-radius: 2px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.hall-secondary-button:hover {
    color: var(--primary-blue);
    background: var(--light-gold);
    transform: translateY(-3px);
}


/* =====================================================
   HALL OF FAME BOTTOM STRIP
===================================================== */

.hall-bottom-strip {
    position: relative;
    z-index: 2;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 80px;
    padding: 18px 25px;
    background:
        linear-gradient(
            90deg,
            rgba(15, 57, 100, 0.76),
            rgba(4, 21, 42, 0.85)
        );
    border: 1px solid rgba(213, 170, 84, 0.23);
    border-radius: 4px;
}

.hall-bottom-strip::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: 22%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        var(--light-gold),
        transparent
    );
}

.hall-strip-title {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--light-gold);
}

.hall-strip-title i {
    font-size: 15px;
}

.hall-strip-title span {
    font-family: var(--heading-font);
    font-size: 11px;
    font-weight: 600;
}

.hall-categories {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    color: #91a5b8;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hall-categories i {
    width: 4px;
    height: 4px;
    flex: 0 0 4px;
    transform: rotate(45deg);
    background: var(--gold);
}


/* =====================================================
   RESPONSIVE – TABLET
===================================================== */

@media (max-width: 1000px) {

    .hall-container {
        grid-template-columns:
            minmax(320px, 0.8fr)
            minmax(0, 1.2fr);
        gap: 52px;
    }

    .hall-image-frame {
        height: 600px;
    }

    .hall-award-seal {
        right: -17px;
        width: 105px;
        height: 105px;
    }

    .seal-icon {
        width: 47px;
        height: 47px;
        font-size: 18px;
    }

    .seal-outer-text {
        transform: translateY(-36px);
    }

    .hall-recognition-grid {
        grid-template-columns: 1fr;
    }

    .hall-bottom-strip {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .hall-categories {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

}


/* =====================================================
   RESPONSIVE – SMALL TABLET
===================================================== */

@media (max-width: 780px) {

    .home-hall-of-fame {
        padding: 85px 0 75px;
    }

    .hall-container {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .hall-visual {
        width: calc(100% - 14px);
        max-width: 540px;
    }

    .hall-image-frame {
        height: 650px;
    }

    .hall-content {
        max-width: 680px;
    }

    .hall-recognition-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hall-bottom-strip {
        margin-top: 60px;
    }

}


/* =====================================================
   RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 600px) {

    .home-hall-of-fame {
        padding: 75px 0 68px;
    }

    .hall-bg-title {
        top: 27px;
        font-size: 58px;
    }

    .hall-visual {
        padding: 10px 15px 22px 5px;
    }

    .hall-image-frame {
        height: 530px;
        box-shadow:
            0 30px 62px rgba(0, 0, 0, 0.38),
            11px 12px 0 rgba(15, 55, 96, 0.28);
    }

    .hall-award-seal {
        top: 50px;
        right: -9px;
        width: 92px;
        height: 92px;
    }

    .seal-icon {
        width: 41px;
        height: 41px;
        font-size: 16px;
    }

    .seal-outer-text {
        font-size: 4px;
        transform: translateY(-31px);
    }

    .hall-winner-year {
        top: 20px;
        left: 20px;
    }

    .hall-image-caption {
        left: 20px;
        right: 20px;
        bottom: 23px;
    }

    .hall-content > h2 {
        font-size: clamp(30px, 8.5vw, 40px);
    }

    .hall-content > h3 {
        font-size: 27px;
    }

    .hall-lead {
        font-size: 10px;
    }

    .hall-description {
        font-size: 9px;
    }

    .hall-recognition-grid {
        grid-template-columns: 1fr;
    }

    .hall-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hall-primary-button,
    .hall-secondary-button {
        width: 100%;
    }

    .hall-bottom-strip {
        margin-top: 50px;
        padding: 18px;
    }

    .hall-categories {
        gap: 9px;
        font-size: 6px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .hall-image-frame {
        height: 460px;
    }

    .hall-image-caption strong {
        font-size: 11px;
    }

    .hall-award-title {
        width: 100%;
    }

}
/* =====================================================
   SPONSORS & STRATEGIC PARTNERS
===================================================== */

.home-partners {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 115px 0 100px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(18, 66, 115, 0.3),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #04152a 0%,
            #071f3d 50%,
            #020b18 100%
        );
}

.home-partners::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(88%, 1250px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(213, 170, 84, 0.55),
        transparent
    );
}


/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.partners-blue-glow,
.partners-gold-glow {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.partners-blue-glow {
    top: 10%;
    left: -180px;
    width: 480px;
    height: 480px;
    opacity: 0.19;
    background: #1664a8;
}

.partners-gold-glow {
    right: -190px;
    bottom: 4%;
    width: 450px;
    height: 450px;
    opacity: 0.1;
    background: var(--gold);
}


/* =====================================================
   SECTION HEADING
===================================================== */

.partners-heading {
    margin-bottom: 35px;
}


/* =====================================================
   PARTNERSHIP CATEGORIES
===================================================== */

.partner-categories {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 45px;
}

.partner-categories span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    color: #a9bac9;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(213, 170, 84, 0.14);
    border-radius: 30px;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.partner-categories span:hover {
    color: var(--light-gold);
    background: rgba(213, 170, 84, 0.07);
    border-color: rgba(213, 170, 84, 0.4);
    transform: translateY(-2px);
}

.partner-categories i {
    color: var(--gold);
    font-size: 9px;
}


/* =====================================================
   LOGO MARQUEE
===================================================== */

.partners-marquee {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    padding: 23px 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 18, 36, 0.9),
            rgba(12, 47, 84, 0.75),
            rgba(3, 18, 36, 0.9)
        );
    border-top: 1px solid rgba(213, 170, 84, 0.18);
    border-bottom: 1px solid rgba(213, 170, 84, 0.18);
}

.partners-marquee::before,
.partners-marquee::after {
    content: "";
    position: absolute;
    z-index: 5;
    left: 50%;
    width: min(65%, 800px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(213, 170, 84, 0.35),
        transparent
    );
}

.partners-marquee::before {
    top: 0;
}

.partners-marquee::after {
    bottom: 0;
}


/* Side fading overlays */

.partners-marquee-fade {
    position: absolute;
    z-index: 4;
    top: 0;
    width: 130px;
    height: 100%;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(
        90deg,
        #031326 5%,
        transparent
    );
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(
        270deg,
        #031326 5%,
        transparent
    );
}


/* Moving track */

.partners-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 17px;
    padding-inline: 9px;
    animation: partnersMarquee 38s linear infinite;
    will-change: transform;
}

.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

@keyframes partnersMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =====================================================
   PARTNER LOGO CARD
===================================================== */

.partner-logo-card {
    position: relative;
    flex: 0 0 205px;
    width: 205px;
    height: 115px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );
    border: 1px solid rgba(213, 170, 84, 0.14);
    border-radius: 4px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 12px 25px rgba(0, 0, 0, 0.12);
    transition:
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.partner-logo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        var(--light-gold),
        transparent
    );
    transition: width var(--transition);
}

.partner-logo-card:hover {
    background:
        linear-gradient(
            145deg,
            rgba(213, 170, 84, 0.09),
            rgba(255, 255, 255, 0.025)
        );
    border-color: rgba(213, 170, 84, 0.45);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.26),
        0 0 20px rgba(213, 170, 84, 0.06);
    transform: translateY(-4px);
}

.partner-logo-card:hover::before {
    width: 65%;
}

.partner-logo-card img {
    width: auto;
    max-width: 155px;
    height: auto;
    max-height: 72px;
    object-fit: contain;
    filter:
        grayscale(1)
        brightness(1.65)
        opacity(0.74);
    transition:
        filter var(--transition),
        transform var(--transition);
}

.partner-logo-card:hover img {
    filter:
        grayscale(0)
        brightness(1)
        opacity(1);
    transform: scale(1.05);
}


/* =====================================================
   PARTNERSHIP CTA
===================================================== */

.partners-cta {
    position: relative;
    z-index: 2;
    min-height: 150px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 23px;
    overflow: hidden;
    margin-top: 62px;
    padding: 28px 32px;
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(213, 170, 84, 0.12),
            transparent 34%
        ),
        linear-gradient(
            100deg,
            rgba(16, 61, 106, 0.88),
            rgba(4, 22, 43, 0.95)
        );
    border: 1px solid rgba(213, 170, 84, 0.3);
    border-radius: 5px;
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.partners-cta::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: 28%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        var(--light-gold),
        transparent
    );
}

.partners-cta::after {
    content: "";
    position: absolute;
    top: -80px;
    right: 8%;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(213, 170, 84, 0.07);
    transform: rotate(45deg);
    pointer-events: none;
}


/* CTA icon */

.partners-cta-icon {
    position: relative;
    width: 61px;
    height: 61px;
    display: grid;
    place-items: center;
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.28);
    font-size: 19px;
}

.partners-cta-icon::before {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(213, 170, 84, 0.24);
    border-radius: 50%;
}


/* CTA content */

.partners-cta-content {
    position: relative;
    min-width: 0;
}

.partners-cta-content > span {
    display: block;
    margin-bottom: 4px;
    color: var(--gold);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.partners-cta-content h3 {
    margin-bottom: 5px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(17px, 2.2vw, 25px);
    font-weight: 600;
    line-height: 1.35;
}

.partners-cta-content p {
    max-width: 650px;
    color: #8fa4b8;
    font-size: 9px;
    line-height: 1.7;
}


/* CTA buttons */

.partners-cta-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-primary-button,
.partner-secondary-button {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border-radius: 2px;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    white-space: nowrap;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.partner-primary-button {
    gap: 9px;
    color: var(--primary-blue);
    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );
    border: 1px solid var(--light-gold);
}

.partner-primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(213, 170, 84, 0.27);
}

.partner-primary-button i {
    font-size: 7px;
    transition: transform var(--transition);
}

.partner-primary-button:hover i {
    transform: translateX(4px);
}

.partner-secondary-button {
    color: var(--light-gold);
    background: rgba(213, 170, 84, 0.04);
    border: 1px solid rgba(213, 170, 84, 0.36);
}

.partner-secondary-button:hover {
    color: var(--primary-blue);
    background: var(--light-gold);
    border-color: var(--light-gold);
    transform: translateY(-3px);
}


/* =====================================================
   RESPONSIVE – TABLET
===================================================== */

@media (max-width: 1000px) {

    .partners-cta {
        grid-template-columns: auto 1fr;
    }

    .partners-cta-buttons {
        grid-column: 2;
        flex-wrap: wrap;
    }

}


/* =====================================================
   RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 700px) {

    .home-partners {
        padding: 78px 0 70px;
    }

    .partners-heading {
        margin-bottom: 30px;
    }

    .partner-categories {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        margin-bottom: 35px;
    }

    .partner-categories span {
        justify-content: center;
        padding-inline: 7px;
        font-size: 6px;
    }

    .partners-marquee {
        padding: 17px 0;
    }

    .partners-track {
        gap: 11px;
        animation-duration: 30s;
    }

    .partner-logo-card {
        flex-basis: 155px;
        width: 155px;
        height: 92px;
        padding: 14px;
    }

    .partner-logo-card img {
        max-width: 125px;
        max-height: 60px;
    }

    .partners-marquee-fade {
        width: 55px;
    }

    .partners-cta {
        grid-template-columns: 1fr;
        gap: 17px;
        margin-top: 45px;
        padding: 24px 19px;
        text-align: center;
    }

    .partners-cta-icon {
        width: 55px;
        height: 55px;
        margin-inline: auto;
    }

    .partners-cta-content p {
        font-size: 8px;
    }

    .partners-cta-buttons {
        grid-column: auto;
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .partner-primary-button,
    .partner-secondary-button {
        width: 100%;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 390px) {

    .partner-categories {
        grid-template-columns: 1fr;
    }

    .partner-logo-card {
        flex-basis: 145px;
        width: 145px;
    }

}
/* =====================================================
   FINAL CALL TO ACTION
===================================================== */

.home-final-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 105px 0 90px;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(26, 82, 137, 0.4),
            transparent 38%
        ),
        linear-gradient(
            140deg,
            #020b18 0%,
            #071f3d 48%,
            #020b18 100%
        );
}


/* Top gold separator */

.home-final-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: min(88%, 1250px);
    height: 1px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        rgba(213, 170, 84, 0.58),
        transparent
    );
}


/* =====================================================
   BACKGROUND DECORATIONS
===================================================== */

.final-cta-pattern {
    position: absolute;
    z-index: -3;
    inset: 0;

    opacity: 0.15;

    background-image:
        linear-gradient(
            rgba(213, 170, 84, 0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(213, 170, 84, 0.07) 1px,
            transparent 1px
        );

    background-size: 78px 78px;

    mask-image: radial-gradient(
        circle at center,
        black,
        transparent 78%
    );

    -webkit-mask-image: radial-gradient(
        circle at center,
        black,
        transparent 78%
    );

    pointer-events: none;
}


.final-cta-blue-glow,
.final-cta-gold-glow {
    position: absolute;
    z-index: -2;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;
}


.final-cta-blue-glow {
    top: 0;
    left: -170px;

    width: 480px;
    height: 480px;

    opacity: 0.2;

    background: #1766aa;
}


.final-cta-gold-glow {
    right: -180px;
    bottom: -80px;

    width: 470px;
    height: 470px;

    opacity: 0.13;

    background: var(--gold);
}


/* =====================================================
   MAIN CTA BOX
===================================================== */

.final-cta-box {
    position: relative;
    z-index: 2;

    min-height: 425px;

    display: grid;
    grid-template-columns:
        minmax(245px, 0.68fr)
        auto
        minmax(0, 1.7fr);

    align-items: center;
    gap: clamp(35px, 5vw, 72px);

    overflow: hidden;

    padding: 55px 58px;

    background:
        radial-gradient(
            circle at 17% 50%,
            rgba(213, 170, 84, 0.13),
            transparent 30%
        ),
        linear-gradient(
            110deg,
            rgba(14, 56, 99, 0.94),
            rgba(4, 24, 47, 0.97)
        );

    border: 1px solid rgba(213, 170, 84, 0.4);
    border-radius: 7px;

    box-shadow:
        0 38px 85px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);
}


/* Inner frame */

.final-cta-box::before {
    content: "";
    position: absolute;
    inset: 10px;

    border: 1px solid rgba(213, 170, 84, 0.1);
    border-radius: 3px;

    pointer-events: none;
}


/* Large decorative circle */

.final-cta-box::after {
    content: "";
    position: absolute;
    top: -180px;
    right: -130px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(213, 170, 84, 0.08);
    border-radius: 50%;

    box-shadow:
        0 0 0 50px rgba(213, 170, 84, 0.02),
        0 0 0 100px rgba(213, 170, 84, 0.015);

    pointer-events: none;
}


/* =====================================================
   DECORATIVE CORNERS
===================================================== */

.final-corner {
    position: absolute;
    z-index: 5;

    width: 42px;
    height: 42px;

    pointer-events: none;
}


.final-corner-top-left {
    top: 18px;
    left: 18px;

    border-top: 1px solid var(--light-gold);
    border-left: 1px solid var(--light-gold);
}


.final-corner-top-right {
    top: 18px;
    right: 18px;

    border-top: 1px solid var(--light-gold);
    border-right: 1px solid var(--light-gold);
}


.final-corner-bottom-left {
    bottom: 18px;
    left: 18px;

    border-bottom: 1px solid var(--light-gold);
    border-left: 1px solid var(--light-gold);
}


.final-corner-bottom-right {
    right: 18px;
    bottom: 18px;

    border-right: 1px solid var(--light-gold);
    border-bottom: 1px solid var(--light-gold);
}


/* =====================================================
   EVENT INFORMATION COLUMN
===================================================== */

.final-event-column {
    position: relative;
    z-index: 3;

    text-align: center;
}


.final-event-label {
    display: inline-block;

    margin-bottom: 23px;
    padding: 7px 12px;

    color: var(--light-gold);

    background: rgba(213, 170, 84, 0.07);

    border: 1px solid rgba(213, 170, 84, 0.27);
    border-radius: 30px;

    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}


/* Event date */

.final-event-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
}


.final-event-date > strong {
    position: relative;

    color: transparent;

    background: linear-gradient(
        135deg,
        #f6e0a6,
        #d5aa54,
        #a97427
    );

    background-clip: text;
    -webkit-background-clip: text;

    font-family: var(--heading-font);
    font-size: clamp(70px, 7vw, 105px);
    font-weight: 700;
    line-height: 0.9;
}


.final-event-date > div {
    padding-left: 16px;

    border-left: 1px solid rgba(213, 170, 84, 0.35);

    text-align: left;
}


.final-event-date span,
.final-event-date small {
    display: block;
}


.final-event-date span {
    color: var(--white);

    font-family: var(--heading-font);
    font-size: 21px;
    font-weight: 600;
}


.final-event-date small {
    margin-top: 3px;

    color: #8fa4b8;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
}


/* Event status */

.final-event-status {
    width: max-content;
    max-width: 100%;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin-top: 25px;

    color: #a9bac9;

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}


.final-event-status i {
    position: relative;

    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #35dc7d;

    box-shadow: 0 0 9px rgba(53, 220, 125, 0.8);
}


.final-event-status i::before {
    content: "";
    position: absolute;
    inset: -5px;

    border: 1px solid rgba(53, 220, 125, 0.55);
    border-radius: 50%;

    animation: finalStatusPulse 2s infinite;
}


@keyframes finalStatusPulse {
    0% {
        opacity: 0.8;
        transform: scale(0.5);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.6);
    }
}


/* =====================================================
   VERTICAL DIVIDER
===================================================== */

.final-cta-divider {
    width: 1px;
    height: 245px;

    background: linear-gradient(
        180deg,
        transparent,
        rgba(213, 170, 84, 0.55),
        transparent
    );
}


/* =====================================================
   MAIN CTA CONTENT
===================================================== */

.final-cta-content {
    position: relative;
    z-index: 3;

    text-align: center;
}


.final-cta-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-bottom: 17px;

    color: var(--gold);

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}


.final-cta-eyebrow span {
    width: 42px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--gold)
    );
}


.final-cta-eyebrow span:last-child {
    background: linear-gradient(
        90deg,
        var(--gold),
        transparent
    );
}


.final-cta-content h2 {
    margin-bottom: 17px;

    color: var(--white);

    font-family: var(--heading-font);
    font-size: clamp(36px, 4.6vw, 61px);
    font-weight: 600;
    line-height: 1.13;
    letter-spacing: -0.025em;
}


.final-cta-content h2 span {
    display: block;

    margin-top: 5px;

    color: transparent;

    background: linear-gradient(
        90deg,
        #f5dfa5,
        #d5aa54,
        #ae792b
    );

    background-clip: text;
    -webkit-background-clip: text;
}


.final-cta-content > p {
    max-width: 690px;

    margin: 0 auto;

    color: #9eb1c3;

    font-size: 11px;
    line-height: 1.85;
}


/* =====================================================
   CTA BUTTONS
===================================================== */

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 11px;

    margin-top: 28px;
}


.final-btn {
    min-height: 49px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 0 19px;

    border-radius: 2px;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.075em;
    text-transform: uppercase;

    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}


.final-btn i {
    font-size: 9px;
}


/* Gold button */

.final-btn-gold {
    color: var(--primary-blue);

    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );

    border: 1px solid var(--light-gold);

    box-shadow: 0 12px 27px rgba(213, 170, 84, 0.18);
}


.final-btn-gold:hover {
    transform: translateY(-3px);

    box-shadow: 0 17px 35px rgba(213, 170, 84, 0.32);
}


/* Blue button */

.final-btn-blue {
    color: var(--soft-white);

    background: linear-gradient(
        135deg,
        #164f85,
        #0a2e56
    );

    border: 1px solid rgba(122, 177, 226, 0.38);
}


.final-btn-blue:hover {
    color: var(--light-gold);

    border-color: rgba(213, 170, 84, 0.5);

    transform: translateY(-3px);
}


/* Outline button */

.final-btn-outline {
    color: var(--light-gold);

    background: rgba(213, 170, 84, 0.04);

    border: 1px solid rgba(213, 170, 84, 0.38);
}


.final-btn-outline:hover {
    color: var(--primary-blue);

    background: var(--light-gold);
    border-color: var(--light-gold);

    transform: translateY(-3px);
}


/* =====================================================
   QUICK CONTACT STRIP
===================================================== */

.final-contact-strip {
    position: relative;
    z-index: 4;

    min-height: 105px;

    display: grid;
    grid-template-columns:
        minmax(200px, 0.8fr)
        minmax(0, 1.6fr)
        auto;

    align-items: center;
    gap: 25px;

    margin-top: -1px;
    padding: 22px 29px;

    background:
        linear-gradient(
            90deg,
            rgba(11, 47, 84, 0.97),
            rgba(3, 20, 40, 0.98)
        );

    border: 1px solid rgba(213, 170, 84, 0.22);
    border-top: 0;

    border-radius: 0 0 6px 6px;

    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.26);
}


/* Contact title */

.final-contact-title {
    display: flex;
    align-items: center;
    gap: 12px;
}


.contact-live-icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: grid;
    place-items: center;

    color: var(--light-gold);

    background: rgba(213, 170, 84, 0.07);

    border: 1px solid rgba(213, 170, 84, 0.27);
    border-radius: 50%;

    font-size: 13px;
}


.final-contact-title small,
.final-contact-title strong {
    display: block;
}


.final-contact-title small {
    margin-bottom: 2px;

    color: #8297ab;

    font-size: 6px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


.final-contact-title strong {
    color: var(--soft-white);

    font-family: var(--heading-font);
    font-size: 11px;
    font-weight: 600;
}


/* Contact links */

.final-contact-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


.final-contact-links > a {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 9px;

    transition: transform var(--transition);
}


.final-contact-links > a:hover {
    transform: translateY(-2px);
}


.final-contact-links > a > i {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: grid;
    place-items: center;

    color: var(--light-gold);

    background: rgba(213, 170, 84, 0.06);

    border: 1px solid rgba(213, 170, 84, 0.19);
    border-radius: 50%;

    font-size: 9px;
}


.final-contact-links span {
    min-width: 0;
}


.final-contact-links small,
.final-contact-links strong {
    display: block;
}


.final-contact-links small {
    margin-bottom: 1px;

    color: #71869a;

    font-size: 5px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}


.final-contact-links strong {
    overflow: hidden;

    color: #c8d5e1;

    font-size: 7px;
    font-weight: 700;

    text-overflow: ellipsis;
    white-space: nowrap;

    transition: color var(--transition);
}


.final-contact-links > a:hover strong {
    color: var(--light-gold);
}


.contact-separator {
    width: 1px;
    height: 34px;

    background: linear-gradient(
        180deg,
        transparent,
        rgba(213, 170, 84, 0.28),
        transparent
    );
}


/* Contact button */

.final-contact-button {
    min-height: 41px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 0 16px;

    color: var(--light-gold);

    background: rgba(213, 170, 84, 0.04);

    border: 1px solid rgba(213, 170, 84, 0.34);
    border-radius: 2px;

    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;

    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}


.final-contact-button:hover {
    color: var(--primary-blue);

    background: var(--light-gold);

    transform: translateY(-2px);
}


.final-contact-button i {
    font-size: 7px;

    transition: transform var(--transition);
}


.final-contact-button:hover i {
    transform: translateX(4px);
}


/* =====================================================
   RESPONSIVE – LAPTOP
===================================================== */

@media (max-width: 1150px) {

    .final-cta-box {
        grid-template-columns:
            minmax(215px, 0.6fr)
            auto
            minmax(0, 1.4fr);

        gap: 35px;

        padding-inline: 42px;
    }

    .final-contact-strip {
        grid-template-columns: auto 1fr;
    }

    .final-contact-button {
        grid-column: 2;

        width: max-content;
    }

}


/* =====================================================
   RESPONSIVE – TABLET
===================================================== */

@media (max-width: 850px) {

    .home-final-cta {
        padding: 85px 0 75px;
    }

    .final-cta-box {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 48px 34px;

        text-align: center;
    }

    .final-event-column {
        max-width: 400px;

        margin-inline: auto;
    }

    .final-cta-divider {
        width: 70%;
        height: 1px;

        margin-inline: auto;

        background: linear-gradient(
            90deg,
            transparent,
            rgba(213, 170, 84, 0.55),
            transparent
        );
    }

    .final-contact-strip {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 25px;

        text-align: center;
    }

    .final-contact-title {
        justify-content: center;
    }

    .final-contact-links {
        flex-wrap: wrap;
    }

    .final-contact-button {
        grid-column: auto;

        width: min(100%, 260px);

        margin-inline: auto;
    }

}


/* =====================================================
   RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 600px) {

    .home-final-cta {
        padding: 70px 0 62px;
    }

    .final-cta-box {
        min-height: auto;

        padding: 42px 18px 38px;

        border-radius: 5px;
    }

    .final-corner {
        width: 28px;
        height: 28px;
    }

    .final-corner-top-left,
    .final-corner-top-right {
        top: 12px;
    }

    .final-corner-bottom-left,
    .final-corner-bottom-right {
        bottom: 12px;
    }

    .final-corner-top-left,
    .final-corner-bottom-left {
        left: 12px;
    }

    .final-corner-top-right,
    .final-corner-bottom-right {
        right: 12px;
    }

    .final-event-label {
        margin-bottom: 18px;
    }

    .final-event-date {
        gap: 12px;
    }

    .final-event-date > strong {
        font-size: 70px;
    }

    .final-event-date > div {
        padding-left: 12px;
    }

    .final-event-date span {
        font-size: 17px;
    }

    .final-event-date small {
        font-size: 7px;
    }

    .final-cta-eyebrow {
        gap: 8px;

        font-size: 6px;
        letter-spacing: 0.14em;
    }

    .final-cta-eyebrow span {
        width: 25px;
    }

    .final-cta-content h2 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .final-cta-content > p {
        font-size: 9px;
    }

    .final-cta-buttons {
        display: grid;
        grid-template-columns: 1fr;

        width: 100%;
    }

    .final-btn {
        width: 100%;
    }

    .final-contact-strip {
        margin-top: 0;

        padding: 23px 16px;
    }

    .final-contact-links {
        display: grid;
        grid-template-columns: 1fr;

        width: 100%;
        gap: 9px;
    }

    .final-contact-links > a {
        width: 100%;

        padding: 10px 12px;

        background: rgba(255, 255, 255, 0.025);

        border: 1px solid rgba(213, 170, 84, 0.12);
        border-radius: 3px;

        text-align: left;
    }

    .contact-separator {
        display: none;
    }

    .final-contact-links strong {
        font-size: 8px;
    }

    .final-contact-button {
        width: 100%;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 390px) {

    .final-event-date > strong {
        font-size: 62px;
    }

    .final-event-status {
        font-size: 6px;
    }

    .final-cta-content h2 {
        font-size: 29px;
    }

}

/* =====================================================
   IBS GLOBAL PREMIUM FOOTER
===================================================== */

.main-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    color: var(--white);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(20, 69, 118, 0.3),
            transparent 36%
        ),
        linear-gradient(
            145deg,
            #031226 0%,
            #061a34 48%,
            #010812 100%
        );
}

.main-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: min(90%, 1300px);
    height: 1px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        rgba(213, 170, 84, 0.62),
        transparent
    );
}


/* =====================================================
   FOOTER BACKGROUND DECORATIONS
===================================================== */

.footer-pattern {
    position: absolute;
    z-index: -3;
    inset: 0;

    opacity: 0.12;

    background-image:
        linear-gradient(
            rgba(213, 170, 84, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(213, 170, 84, 0.06) 1px,
            transparent 1px
        );

    background-size: 75px 75px;

    pointer-events: none;
}

.footer-blue-glow,
.footer-gold-glow {
    position: absolute;
    z-index: -2;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;
}

.footer-blue-glow {
    top: 18%;
    left: -190px;

    width: 490px;
    height: 490px;

    opacity: 0.2;

    background: #1461a4;
}

.footer-gold-glow {
    right: -190px;
    bottom: 4%;

    width: 440px;
    height: 440px;

    opacity: 0.1;

    background: var(--gold);
}


/* =====================================================
   FOOTER TOP BANNER
===================================================== */

.footer-top-banner {
    position: relative;
    z-index: 3;

    min-height: 145px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 23px;

    overflow: hidden;

    margin-top: -1px;
    padding: 27px 33px;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(213, 170, 84, 0.16),
            transparent 32%
        ),
        linear-gradient(
            105deg,
            rgba(17, 65, 112, 0.96),
            rgba(4, 24, 47, 0.98)
        );

    border: 1px solid rgba(213, 170, 84, 0.4);
    border-radius: 6px;

    box-shadow:
        0 30px 65px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-top-banner::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;

    width: 28%;
    height: 1px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        var(--light-gold),
        transparent
    );
}

.footer-top-banner::after {
    content: "";
    position: absolute;
    top: -100px;
    right: 8%;

    width: 250px;
    height: 250px;

    border: 1px solid rgba(213, 170, 84, 0.08);

    transform: rotate(45deg);

    pointer-events: none;
}


/* Banner icon */

.footer-banner-icon {
    position: relative;

    width: 65px;
    height: 65px;

    display: grid;
    place-items: center;

    color: var(--primary-blue);

    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );

    border: 2px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);

    font-size: 21px;
}

.footer-banner-icon::before {
    content: "";
    position: absolute;
    inset: -7px;

    border: 1px solid rgba(213, 170, 84, 0.28);
    border-radius: 50%;
}


/* Banner content */

.footer-banner-content {
    position: relative;
    z-index: 2;
}

.footer-banner-content > span {
    display: block;

    margin-bottom: 4px;

    color: var(--gold);

    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.footer-banner-content h2 {
    margin-bottom: 5px;

    color: var(--white);

    font-family: var(--heading-font);
    font-size: clamp(18px, 2.4vw, 28px);
    font-weight: 600;
    line-height: 1.35;
}

.footer-banner-content p {
    color: #91a6b9;

    font-size: 9px;
    line-height: 1.7;
}


/* Banner button */

.footer-banner-button {
    position: relative;
    z-index: 2;

    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 21px;

    color: var(--primary-blue);

    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );

    border: 1px solid var(--light-gold);
    border-radius: 2px;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.footer-banner-button:hover {
    transform: translateY(-3px);

    box-shadow: 0 15px 32px rgba(213, 170, 84, 0.3);
}

.footer-banner-button i {
    font-size: 8px;

    transition: transform var(--transition);
}

.footer-banner-button:hover i {
    transform: translateX(4px);
}


/* =====================================================
   MAIN FOOTER AREA
===================================================== */

.footer-main {
    position: relative;
    z-index: 2;

    padding: 80px 0 70px;

    border-bottom: 1px solid rgba(213, 170, 84, 0.16);
}

.footer-grid {
    display: grid;
    grid-template-columns:
        minmax(260px, 1.35fr)
        minmax(140px, 0.7fr)
        minmax(180px, 0.85fr)
        minmax(250px, 1.15fr);

    gap: clamp(35px, 5vw, 75px);
}


/* =====================================================
   FOOTER BRAND
===================================================== */

.footer-brand {
    max-width: 380px;
}

.footer-logo {
    position: relative;

    width: max-content;
    max-width: 100%;

    display: inline-flex;
    align-items: center;

    margin-bottom: 18px;
}

.footer-logo img {
    position: relative;
    z-index: 2;

    width: auto;
    max-width: 160px;
    height: 100px;

    object-fit: contain;

    filter:
        drop-shadow(0 7px 13px rgba(0, 0, 0, 0.45))
        drop-shadow(0 0 11px rgba(213, 170, 84, 0.21));

    transition:
        filter var(--transition),
        transform var(--transition);
}

.footer-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 115px;
    height: 68px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    opacity: 0.32;

    background: var(--gold);

    filter: blur(36px);
}

.footer-logo:hover img {
    transform: translateY(-3px) scale(1.025);

    filter:
        drop-shadow(0 9px 16px rgba(0, 0, 0, 0.45))
        drop-shadow(0 0 15px rgba(213, 170, 84, 0.38));
}

.footer-brand > p {
    max-width: 350px;

    color: #8fa3b6;

    font-size: 9px;
    line-height: 1.85;
}


/* =====================================================
   FOOTER SOCIAL ICONS
===================================================== */

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 22px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    color: var(--light-gold);

    background: rgba(213, 170, 84, 0.045);

    border: 1px solid rgba(213, 170, 84, 0.24);
    border-radius: 50%;

    font-size: 11px;

    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.footer-social a:hover {
    color: var(--primary-blue);

    background: var(--light-gold);
    border-color: var(--light-gold);

    transform: translateY(-4px);
}


/* =====================================================
   GLOBAL PRESENCE
===================================================== */

.footer-presence {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;

    margin-top: 22px;

    color: #778ca0;

    font-size: 6px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-presence span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-presence span i {
    color: var(--gold);
}

.footer-presence > i {
    width: 4px;
    height: 4px;

    transform: rotate(45deg);

    background: var(--gold);
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-column h3,
.footer-contact > h3 {
    position: relative;

    margin-bottom: 25px;
    padding-bottom: 12px;

    color: var(--white);

    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 600;
}

.footer-column h3::before,
.footer-contact > h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;

    width: 45px;
    height: 1px;

    background: linear-gradient(
        90deg,
        var(--light-gold),
        transparent
    );
}

.footer-column h3::after,
.footer-contact > h3::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;

    width: 5px;
    height: 5px;

    transform: rotate(45deg);

    background: var(--gold);
}

.footer-column ul {
    display: grid;
    gap: 12px;
}

.footer-column li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #8297aa;

    font-size: 8px;
    font-weight: 600;

    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-column li a i {
    color: var(--gold);

    font-size: 6px;

    transition: transform var(--transition);
}

.footer-column li a:hover {
    color: var(--light-gold);

    transform: translateX(4px);
}

.footer-column li a:hover i {
    transform: translateX(2px);
}


/* =====================================================
   FOOTER CONTACT
===================================================== */

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    margin-bottom: 14px;
}

.footer-contact-item > span {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: grid;
    place-items: center;

    color: var(--light-gold);

    background: rgba(213, 170, 84, 0.055);

    border: 1px solid rgba(213, 170, 84, 0.19);
    border-radius: 50%;

    font-size: 9px;
}

.footer-contact-item > div {
    min-width: 0;

    padding-top: 2px;
}

.footer-contact-item small {
    display: block;

    margin-bottom: 2px;

    color: #6f8498;

    font-size: 5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-contact-item a,
.footer-contact-item p {
    display: block;

    overflow-wrap: anywhere;

    color: #a9bac9;

    font-size: 8px;
    line-height: 1.7;

    transition: color var(--transition);
}

.footer-contact-item a:hover {
    color: var(--light-gold);
}


/* Contact button */

.footer-contact-button {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    margin-top: 8px;
    padding: 0 16px;

    color: var(--light-gold);

    background: rgba(213, 170, 84, 0.04);

    border: 1px solid rgba(213, 170, 84, 0.32);
    border-radius: 2px;

    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;

    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.footer-contact-button:hover {
    color: var(--primary-blue);

    background: var(--light-gold);

    transform: translateY(-2px);
}

.footer-contact-button i {
    font-size: 7px;

    transition: transform var(--transition);
}

.footer-contact-button:hover i {
    transform: translateX(4px);
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
    position: relative;
    z-index: 2;

    padding: 22px 0;

    background: rgba(0, 7, 16, 0.52);
}

.footer-bottom-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 25px;
}

.footer-bottom-inner > p {
    color: #6e8397;

    font-size: 7px;
    font-weight: 600;
}


/* Policy links */

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-policy-links a {
    position: relative;

    color: #71869a;

    font-size: 6px;
    font-weight: 700;
    letter-spacing: 0.04em;

    transition: color var(--transition);
}

.footer-policy-links a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;

    width: 2px;
    height: 2px;

    transform: translateY(-50%) rotate(45deg);

    background: var(--gold);
}

.footer-policy-links a:last-child::after {
    display: none;
}

.footer-policy-links a:hover {
    color: var(--light-gold);
}


/* Design credit */

.footer-credit {
    display: flex;
    align-items: flex-end;
    flex-direction: column;

    text-align: right;
}

.footer-credit span {
    margin-bottom: 1px;

    color: #60758a;

    font-size: 5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-credit strong {
    position: relative;

    color: var(--light-gold);

    font-family: var(--heading-font);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.footer-credit strong::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;

    width: 0;
    height: 1px;

    background: var(--light-gold);

    transition: width var(--transition);
}

.footer-credit:hover strong::after {
    width: 100%;
}


/* =====================================================
   RESPONSIVE – LAPTOP
===================================================== */

@media (max-width: 1100px) {

    .footer-grid {
        grid-template-columns:
            minmax(260px, 1.2fr)
            minmax(140px, 0.7fr)
            minmax(210px, 1fr);

        gap: 48px;
    }

    .footer-contact {
        grid-column: 1 / -1;

        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 15px;
    }

    .footer-contact > h3 {
        grid-column: 1 / -1;
    }

    .footer-contact-item {
        margin-bottom: 0;
    }

    .footer-contact-button {
        grid-column: 1 / -1;

        width: max-content;
    }

}


/* =====================================================
   RESPONSIVE – TABLET
===================================================== */

@media (max-width: 820px) {

    .footer-top-banner {
        grid-template-columns: auto 1fr;
        gap: 20px;

        padding: 26px;
    }

    .footer-banner-button {
        grid-column: 2;

        width: max-content;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 45px;
    }

    .footer-brand {
        grid-column: 1 / -1;

        max-width: 600px;
    }

    .footer-contact {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-bottom-inner {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .footer-credit {
        align-items: center;

        text-align: center;
    }

}


/* =====================================================
   RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 600px) {

    .footer-top-banner {
        grid-template-columns: 1fr;

        padding: 26px 18px;

        text-align: center;
    }

    .footer-banner-icon {
        width: 58px;
        height: 58px;

        margin-inline: auto;
    }

    .footer-banner-button {
        grid-column: auto;

        width: 100%;
    }

    .footer-main {
        padding: 65px 0 55px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 22px;
    }

    .footer-brand {
        grid-column: 1 / -1;

        text-align: center;
    }

    .footer-logo {
        margin-inline: auto;
    }

    .footer-brand > p {
        margin-inline: auto;
    }

    .footer-social,
    .footer-presence {
        justify-content: center;
    }

    .footer-column h3,
    .footer-contact > h3 {
        font-size: 11px;
    }

    .footer-column li a {
        font-size: 7px;
    }

    .footer-contact {
        grid-template-columns: 1fr;

        padding-top: 15px;

        border-top: 1px solid rgba(213, 170, 84, 0.14);
    }

    .footer-contact-item {
        padding: 10px;

        background: rgba(255, 255, 255, 0.02);

        border: 1px solid rgba(213, 170, 84, 0.1);
        border-radius: 3px;
    }

    .footer-contact-button {
        width: 100%;
    }

    .footer-policy-links {
        gap: 11px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 390px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h3::before {
        left: 50%;

        transform: translateX(-50%);
    }

    .footer-column h3::after {
        left: 50%;

        margin-left: -23px;
    }

    .footer-column li a {
        justify-content: center;
    }

    .footer-presence {
        gap: 7px;
    }

}
/* =====================================================
   FOOTER FONT SIZE INCREASE
===================================================== */

/* Top nomination banner */

.footer-banner-content > span {
    font-size: 9px;
}

.footer-banner-content h2 {
    font-size: clamp(20px, 2.5vw, 30px);
}

.footer-banner-content p {
    font-size: 11px;
}

.footer-banner-button {
    font-size: 10px;
}


/* Footer brand */

.footer-brand > p {
    font-size: 11px;
    line-height: 1.85;
}

.footer-presence {
    font-size: 8px;
}


/* Footer column headings */

.footer-column h3,
.footer-contact > h3 {
    font-size: 15px;
}


/* Quick Links and Events */

.footer-column li a {
    font-size: 10px;
}

.footer-column li a i {
    font-size: 8px;
}


/* Contact information */

.footer-contact-item small {
    font-size: 7px;
}

.footer-contact-item a,
.footer-contact-item p {
    font-size: 10px;
}

.footer-contact-button {
    font-size: 9px;
}


/* Footer bottom */

.footer-bottom-inner > p {
    font-size: 9px;
}

.footer-policy-links a {
    font-size: 8px;
}

.footer-credit span {
    font-size: 7px;
}

.footer-credit strong {
    font-size: 10px;
}


/* =====================================================
   MOBILE FOOTER FONT SIZE
===================================================== */

@media (max-width: 600px) {

    .footer-banner-content > span {
        font-size: 8px;
    }

    .footer-banner-content h2 {
        font-size: 22px;
    }

    .footer-banner-content p {
        font-size: 10px;
    }

    .footer-brand > p {
        font-size: 10px;
    }

    .footer-column h3,
    .footer-contact > h3 {
        font-size: 13px;
    }

    .footer-column li a {
        font-size: 9px;
    }

    .footer-contact-item small {
        font-size: 7px;
    }

    .footer-contact-item a,
    .footer-contact-item p {
        font-size: 9px;
    }

    .footer-bottom-inner > p {
        font-size: 8px;
    }

    .footer-policy-links a {
        font-size: 8px;
    }

    .footer-credit strong {
        font-size: 10px;
    }

}

/* =====================================================
   2025 EVENT HIGHLIGHTS – AUTO LOOP GALLERY
===================================================== */

.past-event-gallery {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 110px 0 95px;

    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(20, 72, 122, 0.32),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #020c1a 0%,
            #061a34 50%,
            #020b18 100%
        );
}


/* Top gold separator */

.past-event-gallery::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: min(88%, 1250px);
    height: 1px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        rgba(213, 170, 84, 0.55),
        transparent
    );
}


/* Background pattern */

.past-event-gallery::after {
    content: "";
    position: absolute;
    z-index: -3;
    inset: 0;

    opacity: 0.12;

    background-image:
        linear-gradient(
            rgba(213, 170, 84, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(213, 170, 84, 0.06) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    pointer-events: none;
}


/* Background glow */

.gallery-loop-glow {
    position: absolute;
    z-index: -2;
    top: 25%;
    left: 50%;

    width: 600px;
    height: 400px;

    transform: translateX(-50%);

    border-radius: 50%;

    opacity: 0.13;

    background: var(--gold);

    filter: blur(140px);

    pointer-events: none;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.past-gallery-heading {
    margin-bottom: 52px;
}


/* =====================================================
   MARQUEE WRAPPER
===================================================== */

.past-gallery-marquee {
    position: relative;
    z-index: 2;

    width: 100%;

    overflow: hidden;

    padding: 12px 0 25px;
}


/* Side fade effects */

.past-gallery-fade {
    position: absolute;
    z-index: 5;
    top: 0;

    width: 120px;
    height: 100%;

    pointer-events: none;
}

.past-gallery-fade.gallery-fade-left {
    left: 0;

    background: linear-gradient(
        90deg,
        #031225 3%,
        rgba(3, 18, 37, 0.82) 30%,
        transparent
    );
}

.past-gallery-fade.gallery-fade-right {
    right: 0;

    background: linear-gradient(
        270deg,
        #031225 3%,
        rgba(3, 18, 37, 0.82) 30%,
        transparent
    );
}


/* =====================================================
   MOVING TRACK
===================================================== */

.past-gallery-track {
    width: max-content;

    display: flex;
    align-items: stretch;
    gap: 18px;

    padding-inline: 9px;

    animation: pastGalleryScroll 48s linear infinite;

    will-change: transform;
}


/* Pause when user hovers */

.past-gallery-marquee:hover .past-gallery-track {
    animation-play-state: paused;
}


/* Seamless animation */

@keyframes pastGalleryScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 9px));
    }

}


/* =====================================================
   GALLERY CARD
===================================================== */

.past-gallery-card {
    position: relative;

    flex: 0 0 390px;

    width: 390px;
    height: 265px;

    display: block;

    overflow: hidden;

    background: #071a31;

    border: 1px solid rgba(213, 170, 84, 0.22);
    border-radius: 5px;

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}


/* Gold top line */

.past-gallery-card::before {
    content: "";
    position: absolute;
    z-index: 4;
    top: 0;
    left: 50%;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        var(--dark-gold),
        var(--light-gold),
        var(--dark-gold)
    );

    transition: width 0.45s ease;
}

.past-gallery-card:hover {
    border-color: rgba(213, 170, 84, 0.58);

    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.42),
        0 0 25px rgba(213, 170, 84, 0.08);

    transform: translateY(-7px);
}

.past-gallery-card:hover::before {
    width: 72%;
}


/* =====================================================
   GALLERY IMAGE
===================================================== */

.past-gallery-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    filter:
        saturate(0.94)
        contrast(1.02);

    transition:
        transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.45s ease;
}

.past-gallery-card:hover img {
    transform: scale(1.075);

    filter:
        saturate(1.08)
        contrast(1.04);
}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.past-gallery-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(2, 12, 25, 0.02) 35%,
            rgba(2, 13, 27, 0.15) 58%,
            rgba(2, 13, 27, 0.94) 100%
        );

    transition: background var(--transition);
}

.past-gallery-card:hover .past-gallery-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(2, 12, 25, 0.02) 25%,
            rgba(2, 13, 27, 0.1) 52%,
            rgba(2, 13, 27, 0.96) 100%
        );
}


/* =====================================================
   IMAGE CAPTION
===================================================== */

.past-gallery-card > span {
    position: absolute;
    z-index: 3;
    left: 21px;
    right: 21px;
    bottom: 19px;

    padding-left: 12px;

    color: var(--white);

    border-left: 2px solid var(--gold);

    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;

    text-shadow: 0 5px 14px rgba(0, 0, 0, 0.6);

    transition:
        color var(--transition),
        transform var(--transition);
}

.past-gallery-card:hover > span {
    color: var(--light-gold);

    transform: translateX(4px);
}


/* View icon */

.past-gallery-card::after {
    content: "\f35d";

    position: absolute;
    z-index: 4;
    top: 17px;
    right: 17px;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    visibility: hidden;
    opacity: 0;

    color: var(--primary-blue);

    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );

    border-radius: 50%;

    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);

    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 900;

    transform: translateY(-8px);

    transition:
        visibility var(--transition),
        opacity var(--transition),
        transform var(--transition);
}

.past-gallery-card:hover::after {
    visibility: visible;
    opacity: 1;

    transform: translateY(0);
}


/* =====================================================
   GALLERY FOOTER BUTTON
===================================================== */

.past-gallery-footer {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;

    margin-top: 40px;
}

.past-gallery-button {
    min-height: 49px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 23px;

    color: var(--primary-blue);

    background: linear-gradient(
        135deg,
        var(--light-gold),
        var(--dark-gold)
    );

    border: 1px solid var(--light-gold);
    border-radius: 2px;

    box-shadow: 0 13px 28px rgba(213, 170, 84, 0.18);

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.past-gallery-button:hover {
    transform: translateY(-3px);

    box-shadow: 0 17px 35px rgba(213, 170, 84, 0.32);
}

.past-gallery-button i {
    font-size: 10px;
}

.past-gallery-button i:last-child {
    font-size: 8px;

    transition: transform var(--transition);
}

.past-gallery-button:hover i:last-child {
    transform: translateX(4px);
}


/* =====================================================
   RESPONSIVE – TABLET
===================================================== */

@media (max-width: 900px) {

    .past-event-gallery {
        padding: 88px 0 78px;
    }

    .past-gallery-heading {
        margin-bottom: 42px;
    }

    .past-gallery-card {
        flex-basis: 335px;

        width: 335px;
        height: 230px;
    }

    .past-gallery-track {
        animation-duration: 42s;
    }

    .past-gallery-fade {
        width: 75px;
    }

}


/* =====================================================
   RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 600px) {

    .past-event-gallery {
        padding: 75px 0 65px;
    }

    .past-gallery-heading {
        margin-bottom: 32px;
    }

    .past-gallery-marquee {
        padding-top: 8px;
    }

    .past-gallery-track {
        gap: 12px;

        padding-inline: 6px;

        animation-duration: 36s;
    }

    @keyframes pastGalleryScroll {

        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(calc(-50% - 6px));
        }

    }

    .past-gallery-card {
        flex-basis: 285px;

        width: 285px;
        height: 200px;
    }

    .past-gallery-card > span {
        left: 16px;
        right: 16px;
        bottom: 15px;

        font-size: 12px;
    }

    .past-gallery-fade {
        width: 35px;
    }

    .past-gallery-card::after {
        top: 12px;
        right: 12px;

        width: 33px;
        height: 33px;

        visibility: visible;
        opacity: 1;

        transform: none;
    }

    .past-gallery-footer {
        margin-top: 30px;
    }

    .past-gallery-button {
        width: 100%;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .past-gallery-card {
        flex-basis: 255px;

        width: 255px;
        height: 185px;
    }

    .past-gallery-card > span {
        font-size: 11px;
    }

}