/* =====================================================
   IBS DUBAI 2026 – COMPLETE PREMIUM HERO
===================================================== */

:root {
    --ibs-navy: #030a15;
    --ibs-blue: #07182c;
    --ibs-gold: #d8aa4e;
    --ibs-light-gold: #f2d38f;
    --ibs-teal: #00a6a6;
    --ibs-white: #f8fafc;
    --ibs-muted: #b8c4d1;
}

/* =====================================================
   HERO BASE
===================================================== */

.dubai-hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 6% 145px;

    display: flex;
    align-items: center;

    color: var(--ibs-white);
    background: var(--ibs-navy);

    overflow: hidden;
    isolation: isolate;
}

/* =====================================================
   BACKGROUND IMAGE
===================================================== */

.dubai-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -5;

    background-image: url("../images/dubai-hero-premium.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter:
        brightness(1.22)
        saturate(1.1)
        contrast(1.02);

    transform: scale(1.08);
    animation: dubaiHeroZoom 18s ease-in-out infinite alternate;
}

@keyframes dubaiHeroZoom {

    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1.17);
    }
}

/* =====================================================
   BACKGROUND OVERLAY
===================================================== */

.dubai-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -4;

    background:
        linear-gradient(
            90deg,
            rgba(2, 8, 18, 0.78) 0%,
            rgba(3, 13, 27, 0.62) 38%,
            rgba(3, 15, 29, 0.25) 68%,
            rgba(2, 8, 16, 0.2) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2, 8, 17, 0.15) 0%,
            rgba(2, 8, 17, 0.05) 50%,
            rgba(2, 8, 17, 0.72) 100%
        );
}

/* =====================================================
   FUTURISTIC GRID
===================================================== */

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    z-index: -3;

    opacity: 0.08;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000,
        transparent
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        #000,
        transparent
    );

    pointer-events: none;
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.hero-glow {
    position: absolute;
    z-index: -2;

    border-radius: 50%;
    filter: blur(100px);

    pointer-events: none;
}

.hero-glow-one {
    top: -180px;
    right: 5%;

    width: 500px;
    height: 500px;

    background: rgba(0, 166, 166, 0.16);
    animation: heroGlowOne 8s ease-in-out infinite alternate;
}

.hero-glow-two {
    left: 20%;
    bottom: -250px;

    width: 520px;
    height: 520px;

    background: rgba(216, 170, 78, 0.13);
    animation: heroGlowTwo 10s ease-in-out infinite alternate;
}

@keyframes heroGlowOne {

    to {
        transform: translate(-80px, 70px);
    }
}

@keyframes heroGlowTwo {

    to {
        transform: translate(100px, -60px);
    }
}

/* =====================================================
   MOVING LIGHT LINES
===================================================== */

.hero-light-lines {
    position: absolute;
    inset: 0;
    z-index: -1;

    overflow: hidden;
    pointer-events: none;
}

.hero-light-lines > span {
    position: absolute;
    top: -50%;

    width: 1px;
    height: 45%;

    opacity: 0;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(242, 211, 143, 0.8),
        transparent
    );

    transform: rotate(35deg);
    animation: heroLightMove 7s linear infinite;
}

.hero-light-lines > span:nth-child(1) {
    left: 18%;
}

.hero-light-lines > span:nth-child(2) {
    left: 58%;
    animation-delay: 2.4s;
}

.hero-light-lines > span:nth-child(3) {
    left: 85%;
    animation-delay: 4.8s;
}

@keyframes heroLightMove {

    0% {
        top: -55%;
        opacity: 0;
    }

    20% {
        opacity: 0.7;
    }

    80% {
        opacity: 0.35;
    }

    100% {
        top: 125%;
        opacity: 0;
    }
}

/* =====================================================
   MAIN CONTAINER
===================================================== */

.dubai-hero-container {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 1380px;
    min-height: 610px;
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(380px, 0.75fr);

    align-items: center;
    gap: clamp(50px, 7vw, 110px);
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.dubai-hero-content {
    max-width: 790px;
}

.hero-location-tag {
    width: fit-content;
    margin-bottom: 20px;
    padding: 9px 16px;

    display: flex;
    align-items: center;
    gap: 10px;

    border: 1px solid rgba(242, 211, 143, 0.3);
    border-radius: 50px;

    color: var(--ibs-light-gold);
    background: rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.7px;
    text-transform: uppercase;

    animation: heroFadeUp 0.8s ease both;
}

.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;

    background: var(--ibs-teal);
    box-shadow: 0 0 0 5px rgba(0, 166, 166, 0.13);

    animation: heroTagPulse 1.8s ease-in-out infinite;
}

@keyframes heroTagPulse {

    50% {
        box-shadow: 0 0 0 9px rgba(0, 166, 166, 0);
    }
}

.hero-edition {
    margin: 0 0 12px;

    color: var(--ibs-gold);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;

    animation: heroFadeUp 0.8s 0.12s ease both;
}

.dubai-hero-content h1 {
    max-width: 850px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(48px, 5vw, 78px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2.7px;

    text-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);

    animation: heroFadeUp 0.9s 0.22s ease both;
}

.dubai-hero-content h1 span {
    display: block;
    margin-top: 8px;

    color: transparent;

    background: linear-gradient(
        100deg,
        #b98124 0%,
        #f8dea1 45%,
        #d39c3f 100%
    );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: 660px;
    margin: 25px 0 0;

    color: var(--ibs-muted);

    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;

    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);

    animation: heroFadeUp 0.9s 0.34s ease both;
}

/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {
    margin-top: 34px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    animation: heroFadeUp 0.9s 0.46s ease both;
}

.hero-btn {
    position: relative;
    min-height: 54px;
    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    border-radius: 7px;
    overflow: hidden;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.hero-btn > span,
.hero-btn > i {
    position: relative;
    z-index: 2;
}

.hero-btn > i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

.hero-btn:hover > i {
    transform: translate(3px, -2px);
}

.hero-btn-gold {
    color: #06101d;

    background: linear-gradient(
        120deg,
        #c58d30,
        #f3d391,
        #bd8023
    );

    box-shadow: 0 15px 38px rgba(201, 148, 51, 0.23);
}

.hero-btn-gold::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.7),
        transparent
    );

    transform: skewX(-25deg);
    transition: left 0.7s ease;
}

.hero-btn-gold:hover::before {
    left: 140%;
}

.hero-btn-glass {
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(3, 15, 28, 0.42);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-btn-glass:hover {
    border-color: rgba(242, 211, 143, 0.7);
    background: rgba(216, 170, 78, 0.13);
}

/* =====================================================
   TRUST AVATARS
===================================================== */

.hero-trust {
    margin-top: 38px;

    display: flex;
    align-items: center;
    gap: 16px;

    animation: heroFadeUp 0.9s 0.58s ease both;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars img,
.avatar-more {
    width: 42px;
    height: 42px;
    margin-left: -10px;

    border: 2px solid #091729;
    border-radius: 50%;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-avatars img {
    display: block;
    object-fit: cover;
}

.avatar-more {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #07111d;
    background: var(--ibs-light-gold);

    font-size: 11px;
    font-weight: 800;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-text strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.trust-text span {
    color: #a8b5c1;
    font-size: 11px;
    letter-spacing: 0.6px;
}

/* =====================================================
   RIGHT EVENT GLASS CARD
===================================================== */

.hero-event-card {
    position: relative;

    width: 100%;
    max-width: 470px;
    margin-left: auto;
    padding: 30px;

    border: 1px solid rgba(242, 211, 143, 0.28);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(13, 38, 62, 0.88),
            rgba(4, 17, 32, 0.82)
        );

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    animation: heroCardEnter 1s 0.28s ease both;
}

.hero-event-card::before {
    content: "";
    position: absolute;
    inset: 0;

    padding: 1px;
    border-radius: inherit;

    background: linear-gradient(
        135deg,
        rgba(242, 211, 143, 0.65),
        transparent 35%,
        transparent 65%,
        rgba(0, 166, 166, 0.45)
    );

    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    mask-composite: exclude;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    pointer-events: none;
}

@keyframes heroCardEnter {

    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =====================================================
   CARD TOP
===================================================== */

.event-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.event-card-label {
    color: var(--ibs-light-gold);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-status {
    padding: 7px 10px;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    border: 1px solid rgba(0, 166, 166, 0.3);
    border-radius: 30px;

    color: #85e3dd;
    background: rgba(0, 166, 166, 0.09);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.event-status > span {
    width: 6px;
    height: 6px;
    border-radius: 50%;

    background: #31d8c8;
    box-shadow: 0 0 10px #31d8c8;
}

/* =====================================================
   CARD HEADING
===================================================== */

.event-card-heading {
    margin-top: 25px;
}

.event-number {
    display: block;
    margin-bottom: 8px;

    color: rgba(242, 211, 143, 0.95);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 5px;
}

.event-card-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: 24px;
    font-weight: 600;
    line-height: 1.35;
}

.event-card-heading h2 strong {
    display: block;
    margin-top: 3px;

    color: var(--ibs-light-gold);
    font-weight: 700;
}

.event-card-divider {
    width: 100%;
    height: 1px;
    margin: 23px 0;

    background: linear-gradient(
        90deg,
        rgba(242, 211, 143, 0.65),
        rgba(255, 255, 255, 0.08),
        transparent
    );
}

/* =====================================================
   EVENT DETAILS
===================================================== */

.event-detail-list {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.event-detail-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 13px;
}

.event-detail-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(242, 211, 143, 0.22);
    border-radius: 11px;

    color: var(--ibs-light-gold);
    background: rgba(216, 170, 78, 0.09);

    font-size: 15px;
}

.event-detail-item > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-detail-item span {
    color: #91a2b3;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.event-detail-item strong {
    color: #eef3f8;

    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
}

/* =====================================================
   COUNTDOWN
===================================================== */

.hero-countdown {
    margin-top: 25px;
    padding: 18px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;

    background: rgba(0, 0, 0, 0.2);
}

.hero-countdown > p {
    margin: 0 0 13px;

    color: #a1afbd;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-align: center;
    text-transform: uppercase;
}

.countdown-grid {
    display: grid;
    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;

    align-items: center;
    gap: 7px;
}

.countdown-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
}

.countdown-box strong {
    color: #ffffff;

    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.countdown-box span {
    color: #8495a6;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.countdown-separator {
    margin-top: -12px;

    color: var(--ibs-gold);
    font-size: 17px;
}

/* =====================================================
   EVENT CARD BUTTON
===================================================== */

.event-card-button {
    width: 100%;
    min-height: 48px;
    margin-top: 18px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    border: 1px solid rgba(242, 211, 143, 0.34);
    border-radius: 9px;

    color: var(--ibs-light-gold);
    background: rgba(216, 170, 78, 0.08);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.event-card-button:hover {
    color: #07111d;
    border-color: var(--ibs-light-gold);
    background: var(--ibs-light-gold);

    box-shadow: 0 12px 35px rgba(216, 170, 78, 0.2);
    transform: translateY(-3px);
}

.event-card-button > i {
    transition: transform 0.3s ease;
}

.event-card-button:hover > i {
    transform: translateX(5px);
}

/* =====================================================
   BOTTOM HIGHLIGHTS
===================================================== */

.hero-highlights {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 26px;

    width: min(760px, 68%);
    padding: 15px 25px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;

    background: rgba(4, 16, 29, 0.72);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    transform: translateX(-50%);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-item strong {
    color: var(--ibs-light-gold);
    font-size: 18px;
}

.highlight-item span {
    color: #a9b6c3;

    font-size: 10px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.highlight-line {
    width: 1px;
    height: 24px;

    background: rgba(255, 255, 255, 0.14);
}

/* =====================================================
   SCROLL INDICATOR
===================================================== */

.hero-scroll {
    position: absolute;
    z-index: 7;
    right: 3%;
    bottom: 28px;

    display: flex;
    align-items: center;
    gap: 11px;

    color: #9aa9b7;
    text-decoration: none;
}

.hero-scroll > span {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.scroll-mouse {
    position: relative;

    width: 20px;
    height: 32px;

    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
}

.scroll-mouse > span {
    position: absolute;
    top: 6px;
    left: 50%;

    width: 3px;
    height: 6px;
    border-radius: 5px;

    background: var(--ibs-light-gold);

    transform: translateX(-50%);
    animation: heroScrollMouse 1.8s ease infinite;
}

@keyframes heroScrollMouse {

    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 11px);
    }
}

/* =====================================================
   ENTRANCE ANIMATION
===================================================== */

@keyframes heroFadeUp {

    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   RESPONSIVE – SMALL DESKTOP
===================================================== */

@media (max-width: 1100px) {

    .dubai-hero {
        min-height: auto;
        padding: 145px 5% 170px;
    }

    .dubai-hero-container {
        grid-template-columns:
            minmax(0, 1fr)
            410px;

        gap: 45px;
    }

    .dubai-hero-content h1 {
        font-size: clamp(43px, 5vw, 60px);
    }

    .hero-highlights {
        width: 88%;
    }

    .hero-scroll {
        display: none;
    }
}

/* =====================================================
   RESPONSIVE – TABLET
===================================================== */

@media (max-width: 900px) {

    .dubai-hero {
        padding: 135px 5% 175px;
    }

    .dubai-hero-bg {
        background-position: 62% center;

        filter:
            brightness(1.18)
            saturate(1.08)
            contrast(1.01);
    }

    .dubai-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2, 8, 18, 0.3) 0%,
                rgba(3, 13, 27, 0.55) 38%,
                rgba(2, 8, 17, 0.9) 100%
            ),
            linear-gradient(
                90deg,
                rgba(2, 8, 18, 0.64),
                rgba(2, 8, 18, 0.14)
            );
    }

    .dubai-hero-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .dubai-hero-content {
        max-width: 720px;
    }

    .hero-event-card {
        max-width: 620px;
        margin: 0;
    }

    .hero-highlights {
        bottom: 23px;
        width: 90%;
        gap: 14px;
    }
}

/* =====================================================
   RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 600px) {

    .dubai-hero {
        padding: 115px 20px 220px;
    }

    .dubai-hero-bg {
        background-position: 64% center;
    }

    .hero-grid-pattern {
        background-size: 45px 45px;
    }

    .hero-location-tag {
        padding: 8px 12px;

        font-size: 9px;
        letter-spacing: 1.1px;
    }

    .hero-edition {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .dubai-hero-content h1 {
        font-size: clamp(39px, 11vw, 52px);
        line-height: 1.08;
        letter-spacing: -1.5px;
    }

    .hero-description {
        margin-top: 20px;

        font-size: 14px;
        line-height: 1.7;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
        min-height: 52px;
    }

    .hero-trust {
        align-items: flex-start;
    }

    .trust-text span {
        line-height: 1.5;
    }

    .hero-event-card {
        padding: 22px 18px;
        border-radius: 17px;
    }

    .event-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-card-heading h2 {
        font-size: 21px;
    }

    .event-detail-item {
        grid-template-columns: 38px 1fr;
    }

    .event-detail-icon {
        width: 38px;
        height: 38px;
    }

    .hero-countdown {
        padding: 15px 8px;
    }

    .countdown-grid {
        gap: 3px;
    }

    .countdown-box strong {
        font-size: 19px;
    }

    .countdown-separator {
        font-size: 14px;
    }

    .hero-highlights {
        bottom: 22px;

        width: calc(100% - 40px);
        padding: 15px;

        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .highlight-item {
        justify-content: center;
        flex-direction: column;
        gap: 3px;

        text-align: center;
    }

    .highlight-item strong {
        font-size: 20px;
    }

    .highlight-item span {
        font-size: 8px;
    }

    .highlight-line {
        display: none;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .dubai-hero {
        padding-right: 15px;
        padding-left: 15px;
    }

    .dubai-hero-content h1 {
        font-size: 36px;
    }

    .trust-avatars img,
    .avatar-more {
        width: 37px;
        height: 37px;
    }

    .event-detail-item strong {
        font-size: 11px;
    }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .dubai-hero-bg,
    .hero-glow,
    .hero-light-lines > span,
    .hero-event-card,
    .tag-dot,
    .scroll-mouse > span {
        animation: none !important;
    }

    .hero-location-tag,
    .hero-edition,
    .dubai-hero-content h1,
    .hero-description,
    .hero-buttons,
    .hero-trust {
        opacity: 1;
        transform: none;
        animation: none;
    }
}/*=============================
ABOUT EVENT SECTION
==============================*/
/*=============================
ABOUT EVENT
=============================*/

.about-event{
    padding:120px 8%;
    background:#07131f;
}

.about-grid{
    display:grid;
    grid-template-columns:60% 40%;
    gap:80px;
    align-items:center;
}

/* IMAGE */

.about-image{
    position:relative;
    overflow:hidden;
    border-radius:35px;
}

.about-image img{
    width:100%;
    height:700px;
    object-fit:cover;
    display:block;
    border-radius:35px;
    transition:.6s;
}

.about-image:hover img{
    transform:scale(1.05);
}

/* Floating Cards */

.floating-card{
    position:absolute;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.1);
    padding:22px 30px;
    border-radius:20px;
}

.floating-card h3{
    color:#d4af37;
    font-size:34px;
    margin-bottom:5px;
}

.floating-card span{
    color:#fff;
    font-size:14px;
}

.card-1{
    top:40px;
    left:40px;
}

.card-2{
    bottom:40px;
    right:40px;
}

/* CONTENT */

.section-tag{
    display:inline-block;
    color:#d4af37;
    border:1px solid rgba(212,175,55,.4);
    padding:12px 25px;
    border-radius:50px;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.about-content h2{
    font-size:52px;
    line-height:1.2;
    color:#fff;
    margin-bottom:30px;
}

.about-content p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
    margin-bottom:20px;
}

/* Features */

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:40px;
}

.feature-item{
    background:#0d1b2a;
    padding:25px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:15px;
    transition:.4s;
}

.feature-item:hover{
    transform:translateY(-8px);
}

.feature-item i{
    color:#d4af37;
    font-size:22px;
}

.feature-item span{
    color:#fff;
}

/* Responsive */

@media(max-width:991px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-content h2{
        font-size:40px;
    }

    .about-image img{
        height:500px;
    }
}

@media(max-width:576px){

    .about-content h2{
        font-size:32px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .about-image img{
        height:400px;
    }
}
.about-image{
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Main Image */

.about-image img{
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 35px;
    display: block;
    position: relative;
    z-index: 2;
}

/* Rotated Golden Frame */

.image-frame{
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 3px solid #d4af37;
    border-radius: 35px;
    transform: rotate(-6deg);
    z-index: 1;
    pointer-events: none;
}.image-frame{
    box-shadow:
        0 0 20px rgba(212,175,55,.35),
        0 0 50px rgba(212,175,55,.15);
}
.about-image:hover .image-frame{
    transform: rotate(-3deg);
    transition: .6s ease;
}

.about-image:hover img{
    transform: scale(1.02);
    transition: .6s ease;
}
.about-image::before{
    content:"";
    position:absolute;
    top:-45px;
    left:-45px;
    width:100%;
    height:100%;
    border:2px solid rgba(212,175,55,.5);
    border-radius:35px;
    transform:rotate(5deg);
    z-index:0;
}
transform: rotate(-6deg);
z-index:1;
/*=============================
WHY ATTEND
=============================*/

.why-attend{
    padding:120px 8%;
    background:#091522;
}

.section-heading{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:70px;
}

.section-heading h2{
    font-size:52px;
    color:#fff;
    margin:25px 0;
}

.section-heading p{
    color:rgba(255,255,255,.7);
    line-height:1.8;
}

.attend-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.attend-card{
    background:#0d1b2a;
    padding:45px 35px;
    border-radius:30px;
    border:1px solid rgba(255,255,255,.08);
    transition:.5s;
    position:relative;
    overflow:hidden;
}

.attend-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(212,175,55,.08),
        transparent
    );
    transition:.7s;
}

.attend-card:hover::before{
    left:100%;
}

.attend-card:hover{
    transform:translateY(-12px);
    border-color:rgba(212,175,55,.4);
}

.attend-card i{
    width:70px;
    height:70px;
    line-height:70px;
    text-align:center;
    border-radius:50%;
    background:rgba(212,175,55,.12);
    color:#d4af37;
    font-size:28px;
    margin-bottom:30px;
}

.attend-card h3{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
}

.attend-card p{
    color:rgba(255,255,255,.7);
    line-height:1.8;
}
@media (max-width: 576px){
    .attend-grid{
        grid-template-columns: 1fr;
    }
}
/*=============================
EVENT HIGHLIGHTS
=============================*/

.event-highlights{
    padding:120px 8%;
    background:#07131f;
}

.highlight-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.highlight-card{
    background:#0d1b2a;
    padding:40px 35px;
    border-radius:30px;
    border:1px solid rgba(255,255,255,.08);
    transition:.5s;
    position:relative;
    overflow:hidden;
}

.highlight-card:hover{
    transform:translateY(-12px);
    border-color:rgba(212,175,55,.4);
}

.highlight-card span{
    display:inline-flex;
    width:60px;
    height:60px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(212,175,55,.12);
    color:#d4af37;
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
}

.highlight-card h3{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
}

.highlight-card p{
    color:rgba(255,255,255,.7);
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){
    .highlight-wrapper{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .highlight-wrapper{
        grid-template-columns:1fr;
    }
}
/*=============================
EVENT AGENDA
=============================*/

.event-agenda{
    padding:120px 8%;
    background:#091522;
}

.timeline{
    position:relative;
    max-width:1200px;
    margin:auto;
}

.timeline::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    width:3px;
    height:100%;
    background:#d4af37;
    transform:translateX(-50%);
}

.timeline-item{
    position:relative;
    width:50%;
    padding:0 50px 60px;
}

.timeline-item.left{
    left:0;
}

.timeline-item.right{
    left:50%;
}

.timeline-item::before{
    content:"";
    position:absolute;
    top:20px;
    width:18px;
    height:18px;
    background:#d4af37;
    border-radius:50%;
    z-index:2;
}

.timeline-item.left::before{
    right:-9px;
}

.timeline-item.right::before{
    left:-9px;
}

.timeline-content{
    background:#0d1b2a;
    padding:35px;
    border-radius:25px;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.timeline-content:hover{
    transform:translateY(-8px);
    border-color:rgba(212,175,55,.4);
}

.time{
    color:#d4af37;
    font-weight:600;
    letter-spacing:1px;
}

.timeline-content h3{
    color:#fff;
    margin:15px 0;
    font-size:24px;
}

.timeline-content p{
    color:rgba(255,255,255,.7);
    line-height:1.8;
}

/* Mobile */

@media(max-width:991px){

    .timeline::before{
        left:20px;
    }

    .timeline-item{
        width:100%;
        left:0 !important;
        padding-left:60px;
        padding-right:0;
    }

    .timeline-item::before{
        left:11px !important;
    }
}
/*=============================
FEATURED SPEAKERS
=============================*/

.featured-speakers{
    padding:120px 8%;
    background:#07131f;
}

.speaker-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.speaker-card{
    background:#0d1b2a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:40px 30px;
    text-align:center;
    transition:.5s;
}

.speaker-card:hover{
    transform:translateY(-12px);
    border-color:#d4af37;
}

.speaker-image{
    width:180px;
    height:180px;
    margin:auto;
    border-radius:50%;
    overflow:hidden;
    border:3px solid rgba(212,175,55,.5);
    margin-bottom:30px;
}

.speaker-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.speaker-card:hover .speaker-image img{
    transform:scale(1.1);
}

.speaker-card h3{
    color:#fff;
    font-size:24px;
    margin-bottom:10px;
}

.speaker-card span{
    color:#d4af37;
    font-size:15px;
}

/* Responsive */

@media(max-width:991px){
    .speaker-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .speaker-grid{
        grid-template-columns:1fr;
    }
}
.speaker-card{
    box-shadow:
        0 0 0 rgba(212,175,55,0);
}

.speaker-card:hover{
    box-shadow:
        0 20px 40px rgba(212,175,55,.15);
}
/*=============================
AWARD CATEGORIES
=============================*/

.award-categories{
    padding:120px 8%;
    background:#091522;
}

.categories-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.category-card{
    background:#0d1b2a;
    padding:40px;
    border-radius:30px;
    border:1px solid rgba(255,255,255,.08);
    transition:.5s;
    position:relative;
    overflow:hidden;
}

.category-card:hover{
    transform:translateY(-10px);
    border-color:rgba(212,175,55,.4);
    box-shadow:0 20px 40px rgba(0,0,0,.3);
}

.category-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(212,175,55,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
}

.category-icon i{
    font-size:32px;
    color:#d4af37;
}

.category-card h3{
    color:#fff;
    font-size:28px;
    margin-bottom:25px;
    line-height:1.3;
}

.category-card ul{
    list-style:none;
    padding:0;
}

.category-card ul li{
    color:rgba(255,255,255,.75);
    margin-bottom:15px;
    line-height:1.7;
    padding-left:28px;
    position:relative;
}

.category-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#d4af37;
    font-weight:700;
}
.category-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(
        90deg,
        transparent,
        #d4af37,
        transparent
    );
}
.categories-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}
@media (max-width: 768px) {
  .award-categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .award-card {
    width: 100%;
    padding: 25px 20px;
  }

  .award-card h3 {
    font-size: 1.2rem;
  }

  .award-card p {
    font-size: 0.95rem;
  }
}
/*=============================
EVENT VENUE
=============================*/

.event-venue{
    padding:120px 8%;
    background:#07131f;
}

.event-venue .about-grid{
    display:grid;
    grid-template-columns:45% 55%;
    gap:80px;
    align-items:center;
}

.venue-content h2{
    font-size:52px;
    color:#fff;
    margin:25px 0;
}

.venue-content p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
    margin-bottom:20px;
}

/* Features */

.venue-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:40px 0;
}

.venue-item{
    background:#0d1b2a;
    padding:22px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:15px;
    transition:.4s;
}

.venue-item:hover{
    transform:translateY(-6px);
}

.venue-item i{
    color:#d4af37;
    font-size:22px;
}

.venue-item span{
    color:#fff;
}

/* Image */

.venue-image{
    position:relative;
}

.venue-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:35px;
    display:block;
    position:relative;
    z-index:2;
}

.venue-badge{
    position:absolute;
    left:30px;
    bottom:30px;
    background:rgba(255,255,255,.1);
    backdrop-filter:blur(20px);
    padding:18px 28px;
    border-radius:50px;
    color:#fff;
    z-index:3;
}

.venue-badge i{
    color:#d4af37;
    margin-right:10px;
}

/* Responsive */

@media(max-width:991px){

    .event-venue .about-grid{
        grid-template-columns:1fr;
    }

    .venue-content h2{
        font-size:40px;
    }

    .venue-image img{
        height:500px;
    }
}

@media(max-width:576px){

    .venue-features{
        grid-template-columns:1fr;
    }

    .venue-content h2{
        font-size:32px;
    }

    .venue-image img{
        height:400px;
    }
}
/*=============================
REGISTRATION CTA
=============================*/

.registration-cta{
    position:relative;
    padding:120px 8%;
    text-align:center;
    overflow:hidden;
    background:
    linear-gradient(
        135deg,
        #07131f,
        #0d1b2a,
        #07131f
    );
}

.cta-bg{
    position:absolute;
    inset:0;
    background:
    radial-gradient(
        circle at center,
        rgba(212,175,55,.12),
        transparent 70%
    );
    animation: pulseGlow 6s infinite;
}

@keyframes pulseGlow{
    0%,100%{
        transform:scale(1);
        opacity:.5;
    }
    50%{
        transform:scale(1.2);
        opacity:1;
    }
}

.cta-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
}

.cta-content h2{
    font-size:54px;
    color:#fff;
    margin:30px 0;
    line-height:1.2;
}

.cta-content p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
    max-width:750px;
    margin:auto;
    margin-bottom:45px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
/*=============================
FAQ SECTION
=============================*/

.event-faq{
    padding:120px 8%;
    background:#091522;
}

.faq-container{
    max-width:900px;
    margin:70px auto 0;
}

.faq-item{
    background:#0d1b2a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    margin-bottom:20px;
    overflow:hidden;
    transition:.4s;
}

.faq-item:hover{
    border-color:rgba(212,175,55,.4);
}

.faq-question{
    padding:28px 35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.faq-question h3{
    color:#fff;
    font-size:20px;
    font-weight:500;
}

.faq-question span{
    color:#d4af37;
    font-size:30px;
    font-weight:700;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.5s ease;
}

.faq-answer p{
    padding:0 35px 30px;
    color:rgba(255,255,255,.75);
    line-height:1.9;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}
/*=============================
FINAL CTA
=============================*/

.final-cta{
    position:relative;
    padding:140px 8%;
    text-align:center;
    overflow:hidden;
    background:
        linear-gradient(
            135deg,
            rgba(7,19,31,.46),
            rgba(13,27,42,.46)
        ),
        url('../images/dubai-night.webp');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.cta-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle,
            rgba(212,175,55,.12),
            transparent 70%
        );
    animation:ctaGlow 8s infinite;
}

@keyframes ctaGlow{
    0%,100%{
        transform:scale(1);
        opacity:.5;
    }
    50%{
        transform:scale(1.2);
        opacity:1;
    }
}

.cta-box{
    position:relative;
    z-index:2;
    max-width:950px;
    margin:auto;
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(25px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:35px;
    padding:70px 60px;
}

.cta-box h2{
    color:#fff;
    font-size:54px;
    line-height:1.2;
    margin:30px 0;
}

.cta-box p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
    max-width:750px;
    margin:0 auto 45px;
}

.cta-action{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.cta-info{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.info-item{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
}

.info-item i{
    color:#d4af37;
    font-size:20px;
}

/* Responsive */

@media(max-width:768px){

    .cta-box{
        padding:50px 30px;
    }

    .cta-box h2{
        font-size:38px;
    }

    .cta-info{
        flex-direction:column;
        gap:20px;
    }
}

@media(max-width:576px){

    .cta-box h2{
        font-size:32px;
    }
}
.cta-box::before,
.cta-box::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(212,175,55,.08);
    filter:blur(90px);
    z-index:-1;
}

.cta-box::before{
    top:-80px;
    left:-80px;
}

.cta-box::after{
    bottom:-80px;
    right:-80px;
}
html,
body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.why-attend-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    align-items:stretch;
}

.why-card{
    background:#111;
    padding:35px 30px;
    border-radius:20px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.why-card h3{
    min-height:55px;
}

.why-card p{
    line-height:1.7;
    flex-grow:1;
}


@media(max-width:991px){

    .why-attend-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


@media(max-width:767px){

    .why-attend-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .why-card{
        padding:25px 20px;
    }

    .why-card h3{
        min-height:auto;
    }

}
/* =====================================================
   DUBAI – THE CITY OF POSSIBILITIES
===================================================== */

.dubai-possibilities {
    position: relative;
    padding: 120px 6%;
    overflow: hidden;
    isolation: isolate;

    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #061426 0%,
            #071b31 48%,
            #04101f 100%
        );
}

/* =============================
   BACKGROUND DECORATION
============================= */

.possibilities-pattern {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.07;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.13) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.13) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image: linear-gradient(
        90deg,
        transparent,
        #000 25%,
        #000 75%,
        transparent
    );

    -webkit-mask-image: linear-gradient(
        90deg,
        transparent,
        #000 25%,
        #000 75%,
        transparent
    );
}

.possibilities-glow {
    position: absolute;
    z-index: -2;
    top: 10%;
    right: -180px;

    width: 500px;
    height: 500px;
    border-radius: 50%;

    background: rgba(0, 166, 166, 0.11);
    filter: blur(120px);
    pointer-events: none;
}

.possibilities-bg-text {
    position: absolute;
    z-index: -1;
    right: -40px;
    bottom: -85px;

    color: transparent;
    -webkit-text-stroke: 1px rgba(242, 211, 143, 0.06);

    font-size: clamp(170px, 22vw, 370px);
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -18px;

    user-select: none;
    pointer-events: none;
}

/* =====================================================
   MAIN CONTAINER
===================================================== */

.possibilities-container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1380px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(65px, 7vw, 115px);
}

/* =====================================================
   LEFT IMAGE AREA
===================================================== */

.possibilities-visual {
    position: relative;
    padding: 20px 0 30px 25px;
}

.possibilities-image-frame {
    position: relative;
    min-height: 650px;

    border-radius: 4px 80px 4px 4px;
    overflow: hidden;

    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.44),
        0 0 0 1px rgba(242, 211, 143, 0.15);
}

.possibilities-image-frame img {
    width: 100%;
    height: 650px;
    display: block;

    object-fit: cover;
    object-position: center;

    filter:
        saturate(0.9)
        contrast(1.06)
        brightness(0.88);

    transition:
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.7s ease;
}

.possibilities-image-frame:hover img {
    transform: scale(1.06);
    filter:
        saturate(1)
        contrast(1.06)
        brightness(0.95);
}

.possibilities-image-frame .image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(3, 11, 21, 0.08) 20%,
            rgba(3, 11, 21, 0.45) 70%,
            rgba(3, 11, 21, 0.9) 100%
        ),
        linear-gradient(
            90deg,
            rgba(2, 10, 20, 0.28),
            transparent 50%
        );

    pointer-events: none;
}

/* =============================
   LOCATION LABEL
============================= */

.image-location-label {
    position: absolute;
    top: 26px;
    left: 26px;

    padding: 13px 17px;

    display: flex;
    align-items: center;
    gap: 12px;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;

    background: rgba(4, 18, 32, 0.62);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.image-location-label i {
    color: #f2d38f;
    font-size: 17px;
}

.image-location-label > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.image-location-label span {
    color: #9cadbd;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.image-location-label strong {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
}

/* =============================
   FLOATING GROWTH CARD
============================= */

.dubai-growth-card {
    position: absolute;
    right: 24px;
    bottom: 26px;

    min-width: 245px;
    padding: 17px 19px;

    display: flex;
    align-items: center;
    gap: 14px;

    border: 1px solid rgba(242, 211, 143, 0.28);
    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            rgba(8, 31, 53, 0.88),
            rgba(4, 17, 31, 0.83)
        );

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    animation: growthCardFloat 4s ease-in-out infinite;
}

@keyframes growthCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.growth-card-icon {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(242, 211, 143, 0.27);
    border-radius: 11px;
    background: rgba(216, 170, 78, 0.11);

    color: #f2d38f;
    font-size: 17px;
}

.growth-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.growth-card-content span {
    color: #8fa1b2;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.growth-card-content strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

/* =============================
   IMAGE CORNERS
============================= */

.image-corner {
    position: absolute;
    width: 75px;
    height: 75px;
    pointer-events: none;
}

.image-corner-top {
    top: 12px;
    right: 12px;

    border-top: 2px solid rgba(242, 211, 143, 0.8);
    border-right: 2px solid rgba(242, 211, 143, 0.8);

    border-radius: 0 66px 0 0;
}

.image-corner-bottom {
    bottom: 12px;
    left: 12px;

    border-bottom: 2px solid rgba(0, 166, 166, 0.8);
    border-left: 2px solid rgba(0, 166, 166, 0.8);
}

/* =============================
   VERTICAL TEXT
============================= */

.vertical-dubai-text {
    position: absolute;
    left: -38px;
    top: 50%;

    color: rgba(242, 211, 143, 0.48);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;

    transform: translateY(-50%) rotate(-90deg);
}

/* =====================================================
   RIGHT CONTENT
===================================================== */

.possibilities-content {
    position: relative;
}

.section-eyebrow {
    margin-bottom: 19px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #48c9c5;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.section-eyebrow > span {
    position: relative;

    width: 38px;
    height: 1px;

    background: #d8aa4e;
}

.section-eyebrow > span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;

    width: 5px;
    height: 5px;
    border-radius: 50%;

    background: #f2d38f;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(242, 211, 143, 0.8);
}

.possibilities-content h2 {
    max-width: 720px;
    margin: 0;

    color: #ffffff;
    font-size: clamp(43px, 4.2vw, 67px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
}

.possibilities-content h2 span {
    display: block;
    margin-top: 5px;

    color: transparent;

    background: linear-gradient(
        110deg,
        #bd8430,
        #f3d99b 50%,
        #c18c39
    );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.possibilities-lead {
    max-width: 680px;
    margin: 25px 0 0;

    color: #d2dce5;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
}

.possibilities-description {
    max-width: 680px;
    margin: 16px 0 0;

    color: #8497a9;
    font-size: 14px;
    line-height: 1.8;
}

/* =====================================================
   FEATURE GRID
===================================================== */

.dubai-feature-grid {
    margin-top: 39px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.dubai-feature-card {
    position: relative;
    min-height: 230px;
    padding: 25px 20px 22px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}

.dubai-feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        #00a6a6,
        #f2d38f,
        transparent
    );

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
}

.dubai-feature-card:hover {
    border-color: rgba(242, 211, 143, 0.3);

    background:
        linear-gradient(
            145deg,
            rgba(216, 170, 78, 0.09),
            rgba(0, 166, 166, 0.04)
        );

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    transform: translateY(-8px);
}

.dubai-feature-card:hover::before {
    transform: scaleX(1);
}

.feature-number {
    position: absolute;
    top: 16px;
    right: 16px;

    color: rgba(255, 255, 255, 0.1);

    font-size: 25px;
    font-weight: 800;
    line-height: 1;
}

.feature-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 166, 166, 0.27);
    border-radius: 12px;
    background: rgba(0, 166, 166, 0.08);

    color: #46cbc6;
    font-size: 18px;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.dubai-feature-card:hover .feature-icon {
    color: #071421;
    border-color: #f2d38f;
    background: #f2d38f;
    transform: rotate(-5deg);
}

.dubai-feature-card h3 {
    margin: 0 0 11px;

    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

.dubai-feature-card p {
    margin: 0;

    color: #8194a5;
    font-size: 11px;
    line-height: 1.7;
}

/* =====================================================
   BOTTOM ACTION
===================================================== */

.possibilities-action {
    margin-top: 34px;

    display: flex;
    align-items: center;
    gap: 30px;
}

.possibilities-btn {
    position: relative;
    min-height: 52px;
    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    border: 1px solid rgba(242, 211, 143, 0.38);
    border-radius: 7px;

    color: #f2d38f;
    background: rgba(216, 170, 78, 0.07);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;

    overflow: hidden;

    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.possibilities-btn::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        120deg,
        #c58d30,
        #f3d99b,
        #be8127
    );

    transform: translateX(-102%);
    transition: transform 0.4s ease;
}

.possibilities-btn span,
.possibilities-btn i {
    position: relative;
    z-index: 2;
}

.possibilities-btn:hover {
    color: #06111e;
    border-color: transparent;
    transform: translateY(-3px);
}

.possibilities-btn:hover::before {
    transform: translateX(0);
}

/*
The button text is not wrapped in a span in the HTML,
so this rule keeps its content visible above the overlay.
*/

.possibilities-btn {
    isolation: isolate;
}

.possibilities-btn::before {
    z-index: -1;
}

.possibilities-btn i {
    transition: transform 0.3s ease;
}

.possibilities-btn:hover i {
    transform: translateX(5px);
}

.possibilities-mini-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.possibilities-mini-stat strong {
    color: #f2d38f;
    font-size: 26px;
    font-weight: 700;
}

.possibilities-mini-stat span {
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.17);

    color: #8295a7;
    font-size: 9px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* =====================================================
   SCROLL REVEAL SUPPORT
===================================================== */

.possibilities-visual,
.possibilities-content {
    opacity: 0;
    transform: translateY(45px);

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.dubai-possibilities.section-visible .possibilities-visual,
.dubai-possibilities.section-visible .possibilities-content {
    opacity: 1;
    transform: translateY(0);
}

.dubai-possibilities.section-visible .possibilities-content {
    transition-delay: 0.15s;
}

/* =====================================================
   RESPONSIVE – LARGE TABLET
===================================================== */

@media (max-width: 1180px) {

    .dubai-possibilities {
        padding: 100px 5%;
    }

    .possibilities-container {
        grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
        gap: 55px;
    }

    .possibilities-image-frame {
        min-height: 600px;
    }

    .possibilities-image-frame img {
        height: 600px;
    }

    .dubai-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dubai-feature-card:last-child {
        grid-column: 1 / -1;
        min-height: auto;
    }
}

/* =====================================================
   RESPONSIVE – TABLET
===================================================== */

@media (max-width: 900px) {

    .dubai-possibilities {
        padding: 90px 5%;
    }

    .possibilities-container {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .possibilities-visual {
        max-width: 720px;
        padding-left: 20px;
    }

    .possibilities-image-frame {
        min-height: 540px;
    }

    .possibilities-image-frame img {
        height: 540px;
    }

    .possibilities-content {
        max-width: 760px;
    }

    .dubai-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dubai-feature-card:last-child {
        grid-column: auto;
        min-height: 230px;
    }

    .possibilities-bg-text {
        right: -20px;
        bottom: -25px;
    }
}

/* =====================================================
   RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 650px) {

    .dubai-possibilities {
        padding: 75px 20px;
    }

    .possibilities-pattern {
        background-size: 50px 50px;
    }

    .possibilities-container {
        gap: 50px;
    }

    .possibilities-visual {
        padding: 0;
    }

    .possibilities-image-frame {
        min-height: 450px;
        border-radius: 4px 48px 4px 4px;
    }

    .possibilities-image-frame img {
        height: 450px;
    }

    .image-location-label {
        top: 17px;
        left: 17px;
        padding: 11px 13px;
    }

    .dubai-growth-card {
        right: 15px;
        bottom: 16px;

        min-width: auto;
        width: calc(100% - 30px);
        padding: 14px;
    }

    .growth-card-icon {
        flex-basis: 39px;
        width: 39px;
        height: 39px;
    }

    .vertical-dubai-text {
        display: none;
    }

    .section-eyebrow {
        align-items: flex-start;
        font-size: 8px;
        line-height: 1.5;
        letter-spacing: 1.6px;
    }

    .section-eyebrow > span {
        margin-top: 6px;
        flex: 0 0 28px;
        width: 28px;
    }

    .possibilities-content h2 {
        font-size: clamp(38px, 10vw, 50px);
        letter-spacing: -1.4px;
    }

    .possibilities-lead {
        font-size: 15px;
        line-height: 1.7;
    }

    .possibilities-description {
        font-size: 13px;
    }

    .dubai-feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dubai-feature-card,
    .dubai-feature-card:last-child {
        grid-column: auto;
        min-height: auto;
        padding: 22px 20px;
    }

    .feature-icon {
        margin-bottom: 16px;
    }

    .possibilities-action {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .possibilities-btn {
        width: 100%;
        padding: 0 16px;
        text-align: center;
    }

    .possibilities-bg-text {
        right: -15px;
        bottom: -10px;

        font-size: 135px;
        letter-spacing: -10px;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .dubai-possibilities {
        padding-left: 15px;
        padding-right: 15px;
    }

    .possibilities-image-frame {
        min-height: 410px;
    }

    .possibilities-image-frame img {
        height: 410px;
    }

    .image-location-label span {
        font-size: 7px;
    }

    .image-location-label strong {
        font-size: 10px;
    }

    .growth-card-content strong {
        font-size: 11px;
    }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .possibilities-image-frame img,
    .dubai-growth-card,
    .possibilities-visual,
    .possibilities-content {
        animation: none;
        transition: none;
    }

    .possibilities-visual,
    .possibilities-content {
        opacity: 1;
        transform: none;
    }
}
.possibilities-image-frame img {
    width: 100%;
    height: 650px;
    display: block;

    object-fit: cover;
    object-position: center;

    filter:
        saturate(1.08)
        contrast(1.02)
        brightness(1.15);

    transition:
        transform 1.2s cubic-bezier(0.22, 1, 0.26, 1),
        filter 0.7s ease;
}

.possibilities-image-frame:hover img {
    transform: scale(1.06);

    filter:
        saturate(1.12)
        contrast(1.02)
        brightness(1.2);
}
.possibilities-image-frame .image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(3, 11, 21, 0.01) 0%,
            rgba(3, 11, 21, 0.05) 48%,
            rgba(3, 11, 21, 0.45) 100%
        ),
        linear-gradient(
            90deg,
            rgba(2, 10, 20, 0.08),
            transparent 55%
        );

    pointer-events: none;
}
/* =====================================================
   THE SUMMIT EXPERIENCE
===================================================== */

.summit-experience {
    position: relative;
    padding: 120px 6%;
    overflow: hidden;
    isolation: isolate;

    color: #ffffff;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(15, 55, 87, 0.65),
            transparent 43%
        ),
        linear-gradient(
            180deg,
            #030b17 0%,
            #061426 52%,
            #030b17 100%
        );
}

/* =====================================================
   BACKGROUND EFFECTS
===================================================== */

.experience-grid-bg {
    position: absolute;
    inset: 0;
    z-index: -3;

    opacity: 0.07;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 18%,
        #000 82%,
        transparent
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 18%,
        #000 82%,
        transparent
    );
}

.experience-glow {
    position: absolute;
    z-index: -2;

    width: 450px;
    height: 450px;
    border-radius: 50%;

    filter: blur(130px);
    pointer-events: none;
}

.experience-glow-left {
    top: 30%;
    left: -250px;
    background: rgba(0, 166, 166, 0.11);
}

.experience-glow-right {
    right: -260px;
    bottom: 5%;
    background: rgba(216, 170, 78, 0.1);
}

/* =====================================================
   CONTAINER
===================================================== */

.experience-container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

/* =====================================================
   SECTION HEADING
===================================================== */

.experience-heading {
    max-width: 850px;
    margin: 0 auto 65px;
    text-align: center;
}

.experience-eyebrow {
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    color: #48cbc5;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}

.eyebrow-line {
    position: relative;
    width: 45px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #d8aa4e
    );
}

.eyebrow-line:last-child {
    background: linear-gradient(
        90deg,
        #d8aa4e,
        transparent
    );
}

.experience-heading h2 {
    margin: 0;

    color: #ffffff;
    font-size: clamp(43px, 4.3vw, 68px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2.3px;
}

.experience-heading h2 span {
    display: block;
    margin-top: 5px;

    color: transparent;

    background: linear-gradient(
        105deg,
        #ba7e28,
        #f4daa0 50%,
        #be8530
    );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-heading p {
    max-width: 650px;
    margin: 22px auto 0;

    color: #899bad;
    font-size: 15px;
    line-height: 1.75;
}

/* =====================================================
   EXPERIENCE CARDS GRID
===================================================== */

.experience-grid {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 17px;
}

.experience-card {
    position: relative;
    min-height: 390px;
    padding: 30px 25px 25px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(14, 39, 62, 0.68),
            rgba(5, 18, 33, 0.52)
        );

    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    overflow: hidden;
    isolation: isolate;

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        background 0.4s ease;
}

.experience-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        #00a6a6,
        #f2d38f,
        #00a6a6
    );

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.45s ease;
}

.experience-card:hover {
    border-color: rgba(242, 211, 143, 0.35);

    background:
        linear-gradient(
            145deg,
            rgba(18, 49, 76, 0.84),
            rgba(6, 21, 38, 0.68)
        );

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(0, 166, 166, 0.05);

    transform: translateY(-12px);
}

.experience-card:hover::before {
    transform: scaleX(1);
}

/* =============================
   CARD LIGHT EFFECT
============================= */

.card-light-effect {
    position: absolute;
    z-index: -1;
    top: -140px;
    right: -140px;

    width: 270px;
    height: 270px;
    border-radius: 50%;

    background: rgba(0, 166, 166, 0.09);
    filter: blur(40px);

    transition:
        transform 0.6s ease,
        background 0.6s ease;
}

.experience-card:hover .card-light-effect {
    background: rgba(216, 170, 78, 0.13);
    transform: translate(-30px, 30px);
}

/* =============================
   FEATURED CARD
============================= */

.featured-experience-card {
    border-color: rgba(242, 211, 143, 0.31);

    background:
        linear-gradient(
            145deg,
            rgba(31, 54, 72, 0.87),
            rgba(13, 29, 45, 0.77)
        );

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(242, 211, 143, 0.12);

    transform: translateY(-12px);
}

.featured-experience-card:hover {
    transform: translateY(-20px);
}

.featured-card-label {
    position: absolute;
    top: 19px;
    right: -48px;

    width: 180px;
    padding: 7px 0;

    color: #06111e;

    background: linear-gradient(
        90deg,
        #c58d31,
        #f2d38f
    );

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-align: center;
    text-transform: uppercase;

    transform: rotate(42deg);
}

/* =============================
   CARD TOP
============================= */

.experience-card-top {
    margin-bottom: 39px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.experience-card-number {
    color: rgba(255, 255, 255, 0.13);
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;

    transition: color 0.35s ease;
}

.experience-card:hover .experience-card-number {
    color: rgba(242, 211, 143, 0.26);
}

.experience-icon {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 166, 166, 0.3);
    border-radius: 15px;

    color: #42ccc5;
    background:
        linear-gradient(
            145deg,
            rgba(0, 166, 166, 0.13),
            rgba(0, 166, 166, 0.04)
        );

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);

    font-size: 20px;

    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.4s ease,
        box-shadow 0.35s ease;
}

.experience-card:hover .experience-icon {
    color: #071421;
    border-color: #f2d38f;

    background: linear-gradient(
        135deg,
        #c58d31,
        #f2d38f
    );

    box-shadow: 0 13px 30px rgba(216, 170, 78, 0.19);
    transform: rotate(-6deg) scale(1.06);
}

/* =============================
   CARD CONTENT
============================= */

.experience-card h3 {
    margin: 0 0 15px;

    color: #ffffff;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.3;
}

.experience-card > p {
    margin: 0 0 28px;

    color: #8496a8;
    font-size: 12px;
    line-height: 1.8;
}

/* =============================
   CARD FOOTER
============================= */

.experience-card-footer {
    width: 100%;
    margin-top: auto;
    padding-top: 19px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.experience-card-footer > span {
    color: #9eafbd;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.experience-card-footer a {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;

    color: #d8aa4e;
    background: rgba(255, 255, 255, 0.03);

    text-decoration: none;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.experience-card-footer a i {
    font-size: 10px;
}

.experience-card-footer a:hover {
    color: #071421;
    border-color: #f2d38f;
    background: #f2d38f;
    transform: rotate(8deg);
}

/* =====================================================
   CORPORATE INSIGHT STRIP
===================================================== */

.experience-insight {
    position: relative;
    margin-top: 45px;
    padding: 24px 27px;

    display: grid;
    grid-template-columns:
        minmax(270px, 1.4fr)
        auto
        repeat(3, minmax(90px, 0.45fr))
        auto;

    align-items: center;
    gap: 23px;

    border: 1px solid rgba(242, 211, 143, 0.18);
    border-radius: 14px;

    background:
        linear-gradient(
            90deg,
            rgba(9, 31, 51, 0.85),
            rgba(5, 19, 34, 0.72)
        );

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

/* Insight Intro */

.insight-intro {
    display: flex;
    align-items: center;
    gap: 15px;
}

.insight-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 166, 166, 0.28);
    border-radius: 50%;

    color: #43c9c4;
    background: rgba(0, 166, 166, 0.08);

    font-size: 17px;
}

.insight-intro > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.insight-intro span {
    color: #46c8c3;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.insight-intro strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

/* Divider */

.insight-divider {
    width: 1px;
    height: 47px;
    background: rgba(255, 255, 255, 0.13);
}

/* Stats */

.insight-stat {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;

    text-align: center;
}

.insight-stat strong {
    color: #f2d38f;
    font-size: 23px;
    font-weight: 700;
}

.insight-stat span {
    color: #8496a7;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* Nominate Button */

.experience-nominate-btn {
    min-height: 47px;
    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    border-radius: 7px;

    color: #06111e;
    background: linear-gradient(
        120deg,
        #bf852c,
        #f3d89a,
        #c0872f
    );

    box-shadow: 0 14px 35px rgba(216, 170, 78, 0.17);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.experience-nominate-btn:hover {
    box-shadow: 0 18px 45px rgba(216, 170, 78, 0.27);
    transform: translateY(-3px);
}

.experience-nominate-btn i {
    transition: transform 0.3s ease;
}

.experience-nominate-btn:hover i {
    transform: translateX(4px);
}

/* =====================================================
   SCROLL ANIMATIONS
===================================================== */

.experience-heading,
.experience-card,
.experience-insight {
    opacity: 0;
    transform: translateY(38px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.summit-experience.section-visible .experience-heading,
.summit-experience.section-visible .experience-card,
.summit-experience.section-visible .experience-insight {
    opacity: 1;
    transform: translateY(0);
}

.summit-experience.section-visible
.experience-card:nth-child(1) {
    transition-delay: 0.1s;
}

.summit-experience.section-visible
.experience-card:nth-child(2) {
    transition-delay: 0.2s;
}

.summit-experience.section-visible
.experience-card:nth-child(3) {
    transition-delay: 0.3s;
}

.summit-experience.section-visible
.experience-card:nth-child(4) {
    transition-delay: 0.4s;
}

.summit-experience.section-visible
.experience-insight {
    transition-delay: 0.5s;
}

/*
Keep the featured card slightly raised
after the reveal animation.
*/

.summit-experience.section-visible
.featured-experience-card {
    transform: translateY(-12px);
}

.summit-experience.section-visible
.featured-experience-card:hover {
    transform: translateY(-20px);
}

/* =====================================================
   RESPONSIVE – SMALL DESKTOP
===================================================== */

@media (max-width: 1180px) {

    .summit-experience {
        padding: 105px 5%;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .experience-card {
        min-height: 350px;
    }

    .featured-experience-card,
    .summit-experience.section-visible
    .featured-experience-card {
        transform: translateY(0);
    }

    .featured-experience-card:hover,
    .summit-experience.section-visible
    .featured-experience-card:hover {
        transform: translateY(-10px);
    }

    .experience-insight {
        grid-template-columns:
            minmax(260px, 1.3fr)
            auto
            repeat(3, 1fr);

        gap: 18px;
    }

    .experience-nominate-btn {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/* =====================================================
   RESPONSIVE – TABLET
===================================================== */

@media (max-width: 800px) {

    .summit-experience {
        padding: 90px 5%;
    }

    .experience-heading {
        margin-bottom: 50px;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-insight {
        grid-template-columns: repeat(3, 1fr);
        gap: 23px;
    }

    .insight-intro {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .insight-divider {
        display: none;
    }

    .experience-nominate-btn {
        grid-column: 1 / -1;
    }
}

/* =====================================================
   RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 600px) {

    .summit-experience {
        padding: 75px 20px;
    }

    .experience-grid-bg {
        background-size: 48px 48px;
    }

    .experience-eyebrow {
        gap: 10px;
        font-size: 8px;
        letter-spacing: 1.8px;
    }

    .eyebrow-line {
        width: 28px;
    }

    .experience-heading h2 {
        font-size: clamp(38px, 10vw, 50px);
        letter-spacing: -1.5px;
    }

    .experience-heading p {
        font-size: 13px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .experience-card {
        min-height: 330px;
        padding: 25px 21px 21px;
    }

    .experience-card-top {
        margin-bottom: 28px;
    }

    .experience-card h3 {
        font-size: 20px;
    }

    .experience-card > p {
        font-size: 12px;
    }

    .featured-experience-card {
        order: -1;
    }

    .experience-insight {
        margin-top: 35px;
        padding: 22px 18px;

        grid-template-columns: repeat(3, 1fr);
        gap: 20px 8px;
    }

    .insight-intro {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .insight-intro strong {
        font-size: 13px;
        line-height: 1.5;
    }

    .insight-stat strong {
        font-size: 20px;
    }

    .insight-stat span {
        font-size: 7px;
        line-height: 1.4;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .summit-experience {
        padding-left: 15px;
        padding-right: 15px;
    }

    .experience-eyebrow {
        letter-spacing: 1.2px;
    }

    .eyebrow-line {
        width: 20px;
    }

    .experience-card-number {
        font-size: 32px;
    }

    .experience-icon {
        width: 50px;
        height: 50px;
    }

    .experience-insight {
        grid-template-columns: 1fr;
    }

    .insight-stat {
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
    }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .experience-heading,
    .experience-card,
    .experience-insight {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .featured-experience-card,
    .summit-experience.section-visible
    .featured-experience-card {
        transform: none;
    }
}

/* =====================================================
   NETWORKING & INVESTOR OPPORTUNITIES
===================================================== */

.global-networking {
    position: relative;
    padding: 120px 6% 0;
    overflow: hidden;
    isolation: isolate;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(0, 166, 166, 0.09),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #07182b 0%,
            #061426 48%,
            #030c18 100%
        );
}

/* =====================================================
   BACKGROUND DECORATIONS
===================================================== */

.networking-bg-lines {
    position: absolute;
    inset: 0;
    z-index: -3;

    opacity: 0.09;

    background-image:
        linear-gradient(
            120deg,
            transparent 45%,
            rgba(242, 211, 143, 0.18) 46%,
            transparent 47%
        ),
        linear-gradient(
            60deg,
            transparent 52%,
            rgba(0, 166, 166, 0.18) 53%,
            transparent 54%
        );

    background-size: 260px 260px;
    pointer-events: none;
}

.networking-glow {
    position: absolute;
    z-index: -2;
    top: 12%;
    right: -230px;

    width: 600px;
    height: 600px;
    border-radius: 50%;

    background: rgba(216, 170, 78, 0.1);
    filter: blur(150px);
    pointer-events: none;
}

/* =====================================================
   MAIN CONTAINER
===================================================== */

.networking-container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1380px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
    align-items: center;
    gap: clamp(65px, 7vw, 110px);
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.networking-content {
    position: relative;
    padding-bottom: 90px;
}

.networking-eyebrow {
    margin-bottom: 19px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #46cbc5;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.3px;
    text-transform: uppercase;
}

.networking-eyebrow > span {
    position: relative;
    width: 40px;
    height: 1px;

    background: #d8aa4e;
}

.networking-eyebrow > span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;

    width: 5px;
    height: 5px;
    border-radius: 50%;

    background: #f2d38f;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(242, 211, 143, 0.8);
}

.networking-content h2 {
    max-width: 750px;
    margin: 0;

    color: #ffffff;
    font-size: clamp(44px, 4.5vw, 70px);
    font-weight: 700;
    line-height: 1.07;
    letter-spacing: -2.5px;
}

.networking-content h2 span {
    display: block;
    margin-top: 5px;

    color: transparent;

    background: linear-gradient(
        105deg,
        #bd822c,
        #f3d99c 50%,
        #bf8732
    );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.networking-lead {
    max-width: 690px;
    margin: 26px 0 0;

    color: #d0dae3;
    font-size: 17px;
    line-height: 1.75;
}

.networking-description {
    max-width: 690px;
    margin: 15px 0 0;

    color: #8396a8;
    font-size: 14px;
    line-height: 1.8;
}

/* =====================================================
   OPPORTUNITY LIST
===================================================== */

.networking-opportunities {
    margin-top: 38px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.opportunity-item {
    position: relative;
    padding: 20px 17px;

    display: grid;
    grid-template-columns: 43px 1fr;
    align-items: flex-start;
    gap: 13px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 11px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.015)
        );

    overflow: hidden;

    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.opportunity-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        #00a6a6,
        #f2d38f,
        transparent
    );

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.opportunity-item:hover {
    border-color: rgba(242, 211, 143, 0.27);

    background:
        linear-gradient(
            145deg,
            rgba(216, 170, 78, 0.08),
            rgba(0, 166, 166, 0.035)
        );

    box-shadow: 0 17px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-6px);
}

.opportunity-item:hover::after {
    transform: scaleX(1);
}

.opportunity-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 166, 166, 0.28);
    border-radius: 11px;

    color: #47ccc6;
    background: rgba(0, 166, 166, 0.08);

    font-size: 16px;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.opportunity-item:hover .opportunity-icon {
    color: #071421;
    border-color: #f2d38f;
    background: #f2d38f;
    transform: rotate(-5deg);
}

.opportunity-item h3 {
    margin: 1px 0 7px;

    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.opportunity-item p {
    margin: 0;

    color: #8093a5;
    font-size: 10px;
    line-height: 1.7;
}

/* =====================================================
   ACTION AREA
===================================================== */

.networking-action {
    margin-top: 35px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.networking-btn {
    position: relative;
    min-height: 52px;
    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border-radius: 7px;
    overflow: hidden;
    isolation: isolate;

    color: #06111e;

    background: linear-gradient(
        120deg,
        #bf842d,
        #f2d695,
        #bf852e
    );

    box-shadow: 0 15px 38px rgba(216, 170, 78, 0.18);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.networking-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: -130%;

    width: 85%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.7),
        transparent
    );

    transform: skewX(-25deg);
    transition: left 0.7s ease;
}

.networking-btn:hover {
    box-shadow: 0 20px 50px rgba(216, 170, 78, 0.27);
    transform: translateY(-3px);
}

.networking-btn:hover::before {
    left: 140%;
}

.networking-btn i {
    transition: transform 0.3s ease;
}

.networking-btn:hover i {
    transform: translateX(5px);
}

/* =============================
   NETWORKING MEMBERS
============================= */

.networking-members {
    display: flex;
    align-items: center;
    gap: 13px;
}

.networking-avatars {
    display: flex;
    align-items: center;
}

.networking-avatars img,
.networking-avatars > span {
    width: 40px;
    height: 40px;
    margin-left: -10px;

    border: 2px solid #07172a;
    border-radius: 50%;
}

.networking-avatars img:first-child {
    margin-left: 0;
}

.networking-avatars img {
    display: block;
    object-fit: cover;
}

.networking-avatars > span {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #071421;
    background: #f2d38f;

    font-size: 10px;
    font-weight: 800;
}

.networking-members p {
    margin: 0;

    color: #8295a6;
    font-size: 9px;
    line-height: 1.55;
    letter-spacing: 0.4px;
}

/* =====================================================
   RIGHT VISUAL
===================================================== */

.networking-visual {
    position: relative;
    min-height: 760px;
    padding: 30px 35px 50px 10px;
}

.networking-image {
    position: relative;
    height: 710px;

    border-radius: 80px 5px 5px 5px;
    overflow: hidden;

    box-shadow:
        0 45px 100px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(242, 211, 143, 0.14);
}

.networking-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    filter:
        saturate(1.02)
        contrast(1.02)
        brightness(1.03);

    transition:
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.7s ease;
}

.networking-image:hover img {
    transform: scale(1.055);

    filter:
        saturate(1.08)
        contrast(1.02)
        brightness(1.1);
}

.networking-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(3, 11, 21, 0.03) 25%,
            rgba(3, 11, 21, 0.12) 55%,
            rgba(3, 11, 21, 0.87) 100%
        ),
        linear-gradient(
            90deg,
            rgba(3, 12, 23, 0.15),
            transparent 55%
        );

    pointer-events: none;
}

/* =============================
   IMAGE CAPTION
============================= */

.networking-image-caption {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 27px;

    padding-left: 16px;
    border-left: 2px solid #d8aa4e;

    display: flex;
    flex-direction: column;
    gap: 6px;
}

.networking-image-caption span {
    color: #48cac5;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.networking-image-caption strong {
    max-width: 340px;

    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

/* =====================================================
   FLOATING STAT CARDS
===================================================== */

.networking-stat-card {
    position: absolute;
    z-index: 4;
    min-width: 175px;
    padding: 14px 16px;

    display: flex;
    align-items: center;
    gap: 12px;

    border: 1px solid rgba(242, 211, 143, 0.25);
    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(9, 34, 57, 0.92),
            rgba(4, 17, 31, 0.89)
        );

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.networking-stat-one {
    top: 100px;
    left: -30px;

    animation: networkFloatOne 4.5s ease-in-out infinite;
}

.networking-stat-two {
    right: 0;
    bottom: 125px;

    animation: networkFloatTwo 5s 0.5s ease-in-out infinite;
}

@keyframes networkFloatOne {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes networkFloatTwo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(9px);
    }
}

.stat-card-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 166, 166, 0.27);
    border-radius: 10px;

    color: #48cbc5;
    background: rgba(0, 166, 166, 0.08);

    font-size: 14px;
}

.networking-stat-card > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.networking-stat-card strong {
    color: #f2d38f;
    font-size: 18px;
    font-weight: 700;
}

.networking-stat-card span {
    color: #91a2b2;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

/* =====================================================
   DECORATIVE BUSINESS CARD
===================================================== */

.networking-business-card {
    position: absolute;
    z-index: 5;
    right: 58px;
    top: 55px;

    width: 155px;
    height: 93px;
    padding: 15px;

    border: 1px solid rgba(242, 211, 143, 0.3);
    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            rgba(216, 170, 78, 0.16),
            rgba(5, 24, 42, 0.76)
        );

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transform: rotate(5deg);
    transition: transform 0.4s ease;
}

.networking-business-card:hover {
    transform: rotate(0deg) translateY(-5px);
}

.business-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.business-card-logo {
    color: #f2d38f;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
}

.business-card-top i {
    color: #43c9c4;
    font-size: 12px;
    transform: rotate(90deg);
}

.business-card-lines {
    margin-top: 13px;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.business-card-lines span {
    display: block;
    width: 75px;
    height: 2px;

    background: rgba(255, 255, 255, 0.18);
}

.business-card-lines span:last-child {
    width: 46px;
}

.networking-business-card p {
    margin: 8px 0 0;

    color: #8ea0b0;
    font-size: 6px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

/* =====================================================
   DECORATIVE CORNERS
===================================================== */

.networking-corner {
    position: absolute;
    z-index: 3;

    width: 75px;
    height: 75px;
    pointer-events: none;
}

.corner-one {
    top: 43px;
    right: 47px;

    border-top: 2px solid rgba(242, 211, 143, 0.7);
    border-right: 2px solid rgba(242, 211, 143, 0.7);
}

.corner-two {
    left: -2px;
    bottom: 40px;

    border-left: 2px solid rgba(0, 166, 166, 0.7);
    border-bottom: 2px solid rgba(0, 166, 166, 0.7);
}

/* =====================================================
   BOTTOM METRICS STRIP
===================================================== */

.networking-metrics {
    position: relative;
    z-index: 6;

    width: calc(100% + 12%);
    min-height: 110px;
    margin-left: -6%;
    padding: 25px 6%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(30px, 5vw, 75px);

    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    background:
        linear-gradient(
            90deg,
            rgba(3, 13, 25, 0.98),
            rgba(9, 32, 52, 0.97),
            rgba(3, 13, 25, 0.98)
        );

    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.16);
}

.networking-metric {
    display: flex;
    align-items: center;
    gap: 13px;
}

.networking-metric > i {
    color: #47cbc5;
    font-size: 22px;
}

.networking-metric > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.networking-metric strong {
    color: #f2d38f;
    font-size: 21px;
    font-weight: 700;
}

.networking-metric span {
    color: #8194a5;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.metric-separator {
    width: 1px;
    height: 36px;

    background: rgba(255, 255, 255, 0.12);
}

/* =====================================================
   SCROLL REVEAL
===================================================== */

.networking-content,
.networking-visual,
.networking-metrics {
    opacity: 0;
    transform: translateY(45px);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.global-networking.section-visible .networking-content,
.global-networking.section-visible .networking-visual,
.global-networking.section-visible .networking-metrics {
    opacity: 1;
    transform: translateY(0);
}

.global-networking.section-visible .networking-visual {
    transition-delay: 0.18s;
}

.global-networking.section-visible .networking-metrics {
    transition-delay: 0.35s;
}

/* =====================================================
   RESPONSIVE – SMALL DESKTOP
===================================================== */

@media (max-width: 1180px) {

    .global-networking {
        padding-left: 5%;
        padding-right: 5%;
    }

    .networking-container {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
        gap: 55px;
    }

    .networking-opportunities {
        grid-template-columns: 1fr;
    }

    .networking-visual {
        min-height: 700px;
    }

    .networking-image {
        height: 650px;
    }

    .networking-metrics {
        width: calc(100% + 10%);
        margin-left: -5%;
        padding-left: 5%;
        padding-right: 5%;
        gap: 30px;
    }
}

/* =====================================================
   RESPONSIVE – TABLET
===================================================== */

@media (max-width: 900px) {

    .global-networking {
        padding-top: 95px;
    }

    .networking-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .networking-content {
        max-width: 770px;
        padding-bottom: 45px;
    }

    .networking-opportunities {
        grid-template-columns: repeat(2, 1fr);
    }

    .networking-visual {
        width: 100%;
        max-width: 680px;
        min-height: 720px;
        margin-left: auto;
        padding-left: 35px;
    }

    .networking-image {
        height: 680px;
    }

    .networking-stat-one {
        left: 0;
    }

    .networking-metrics {
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 45px;
    }

    .networking-metric {
        justify-content: center;
    }

    .metric-separator {
        display: none;
    }
}

/* =====================================================
   RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 650px) {

    .global-networking {
        padding: 75px 20px 0;
    }

    .networking-eyebrow {
        align-items: flex-start;
        font-size: 8px;
        letter-spacing: 1.6px;
    }

    .networking-eyebrow > span {
        flex: 0 0 28px;
        width: 28px;
        margin-top: 6px;
    }

    .networking-content h2 {
        font-size: clamp(38px, 10vw, 50px);
        letter-spacing: -1.5px;
    }

    .networking-lead {
        font-size: 15px;
    }

    .networking-description {
        font-size: 13px;
    }

    .networking-opportunities {
        grid-template-columns: 1fr;
    }

    .networking-action {
        align-items: flex-start;
        flex-direction: column;
    }

    .networking-btn {
        width: 100%;
    }

    .networking-visual {
        min-height: 610px;
        padding: 15px 10px 35px;
    }

    .networking-image {
        height: 570px;
        border-radius: 50px 4px 4px 4px;
    }

    .networking-image img {
        object-position: center;
    }

    .networking-image-caption {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .networking-image-caption strong {
        font-size: 15px;
    }

    .networking-stat-card {
        min-width: 148px;
        padding: 11px 12px;
    }

    .networking-stat-one {
        top: 70px;
        left: -5px;
    }

    .networking-stat-two {
        right: 0;
        bottom: 85px;
    }

    .networking-stat-card strong {
        font-size: 15px;
    }

    .networking-business-card {
        top: 28px;
        right: 20px;
        width: 135px;
        height: 82px;
    }

    .networking-corner {
        display: none;
    }

    .networking-metrics {
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 25px 20px;

        grid-template-columns: repeat(2, 1fr);
        gap: 25px 12px;
    }

    .networking-metric {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .networking-metric strong {
        font-size: 19px;
    }

    .networking-metric span {
        font-size: 7px;
        line-height: 1.4;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .global-networking {
        padding-left: 15px;
        padding-right: 15px;
    }

    .networking-visual {
        min-height: 570px;
        padding-left: 0;
        padding-right: 0;
    }

    .networking-image {
        height: 540px;
    }

    .networking-stat-card {
        min-width: 137px;
    }

    .networking-business-card {
        width: 123px;
        right: 10px;
    }

    .networking-metrics {
        width: calc(100% + 30px);
        margin-left: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .networking-stat-one,
    .networking-stat-two,
    .networking-image img,
    .networking-content,
    .networking-visual,
    .networking-metrics {
        animation: none;
        transition: none;
    }

    .networking-content,
    .networking-visual,
    .networking-metrics {
        opacity: 1;
        transform: none;
    }
}

/* =====================================================
   IBS DUBAI 2026 – AWARD CATEGORIES
===================================================== */

.dubai-awards {
    position: relative;
    padding: 120px 6%;
    overflow: hidden;
    isolation: isolate;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(20, 58, 88, 0.62),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #030b17 0%,
            #07172a 50%,
            #030c18 100%
        );
}

/* =====================================================
   BACKGROUND EFFECTS
===================================================== */

.awards-grid-pattern {
    position: absolute;
    inset: 0;
    z-index: -3;

    opacity: 0.06;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );
}

.awards-glow {
    position: absolute;
    z-index: -2;

    width: 500px;
    height: 500px;
    border-radius: 50%;

    filter: blur(140px);
    pointer-events: none;
}

.awards-glow-one {
    top: 20%;
    left: -280px;
    background: rgba(0, 166, 166, 0.11);
}

.awards-glow-two {
    right: -280px;
    bottom: 10%;
    background: rgba(216, 170, 78, 0.1);
}

/* =====================================================
   CONTAINER
===================================================== */

.awards-container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

/* =====================================================
   HEADING
===================================================== */

.awards-heading {
    max-width: 900px;
    margin: 0 auto 55px;
    text-align: center;
}

.awards-eyebrow {
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    color: #46cbc5;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.awards-eyebrow > span {
    width: 42px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #d8aa4e
    );
}

.awards-eyebrow > span:last-child {
    background: linear-gradient(
        90deg,
        #d8aa4e,
        transparent
    );
}

.awards-heading h2 {
    margin: 0;

    color: #ffffff;
    font-size: clamp(43px, 4.5vw, 70px);
    font-weight: 700;
    line-height: 1.07;
    letter-spacing: -2.5px;
}

.awards-heading h2 span {
    display: block;
    margin-top: 6px;

    color: transparent;

    background: linear-gradient(
        105deg,
        #bd822b,
        #f3d99b 50%,
        #bd822b
    );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.awards-heading p {
    max-width: 710px;
    margin: 22px auto 0;

    color: #8799ab;
    font-size: 14px;
    line-height: 1.8;
}

/* =====================================================
   AWARD TABS
===================================================== */

.award-tabs {
    position: relative;
    margin-bottom: 38px;
    padding: 8px;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 7px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;

    background: rgba(4, 18, 33, 0.72);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.award-tab {
    min-height: 58px;
    padding: 8px 12px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border: 1px solid transparent;
    border-radius: 9px;

    color: #8496a8;
    background: transparent;

    font-family: inherit;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.award-tab i {
    color: #43c9c4;
    font-size: 15px;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.award-tab:hover {
    color: #ffffff;
    border-color: rgba(242, 211, 143, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

.award-tab:hover i {
    transform: translateY(-2px);
}

.award-tab.active {
    color: #06111e;
    border-color: transparent;

    background: linear-gradient(
        120deg,
        #bd822b,
        #f2d38f,
        #bd822b
    );

    box-shadow: 0 12px 30px rgba(216, 170, 78, 0.18);
}

.award-tab.active i {
    color: #06111e;
}

/* =====================================================
   AWARD PANELS
===================================================== */

.award-panels {
    position: relative;
    min-height: 440px;
}

.award-panel {
    display: none;
}

.award-panel.active {
    display: block;
    animation: awardPanelReveal 0.55s ease both;
}

@keyframes awardPanelReveal {

    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   PANEL INTRODUCTION
===================================================== */

.award-panel-intro {
    margin-bottom: 27px;

    display: grid;
    grid-template-columns: auto 1fr minmax(280px, 0.7fr);
    align-items: center;
    gap: 22px;
}

.award-panel-intro > span {
    padding: 8px 12px;

    border: 1px solid rgba(0, 166, 166, 0.27);
    border-radius: 30px;

    color: #46cbc5;
    background: rgba(0, 166, 166, 0.07);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.award-panel-intro h3 {
    margin: 0;

    color: #ffffff;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.3;
}

.award-panel-intro p {
    margin: 0;
    padding-left: 22px;

    border-left: 1px solid rgba(255, 255, 255, 0.12);

    color: #8294a6;
    font-size: 11px;
    line-height: 1.7;
}

/* =====================================================
   AWARD CARD GRID
===================================================== */

.award-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.award-category-card {
    position: relative;
    min-height: 305px;
    padding: 27px 21px 23px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 42, 66, 0.66),
            rgba(4, 17, 32, 0.55)
        );

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    overflow: hidden;
    isolation: isolate;

    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.award-category-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -110px;
    right: -110px;

    width: 220px;
    height: 220px;
    border-radius: 50%;

    background: rgba(0, 166, 166, 0.08);
    filter: blur(30px);

    transition:
        background 0.4s ease,
        transform 0.5s ease;
}

.award-category-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        #00a6a6,
        #f2d38f,
        #00a6a6
    );

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.4s ease;
}

.award-category-card:hover {
    border-color: rgba(242, 211, 143, 0.34);

    background:
        linear-gradient(
            145deg,
            rgba(24, 53, 78, 0.84),
            rgba(7, 23, 40, 0.72)
        );

    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.31),
        0 0 35px rgba(216, 170, 78, 0.04);

    transform: translateY(-10px);
}

.award-category-card:hover::before {
    background: rgba(216, 170, 78, 0.12);
    transform: translate(-25px, 25px);
}

.award-category-card:hover::after {
    transform: scaleX(1);
}

/* Card Number */

.award-card-number {
    position: absolute;
    top: 18px;
    right: 18px;

    color: rgba(255, 255, 255, 0.1);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

/* Card Icon */

.award-category-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 166, 166, 0.28);
    border-radius: 15px;

    color: #46cbc5;

    background:
        linear-gradient(
            145deg,
            rgba(0, 166, 166, 0.13),
            rgba(0, 166, 166, 0.035)
        );

    font-size: 20px;

    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.4s ease,
        box-shadow 0.35s ease;
}

.award-category-card:hover .award-category-icon {
    color: #071421;
    border-color: #f2d38f;

    background: linear-gradient(
        135deg,
        #c18830,
        #f2d38f
    );

    box-shadow: 0 14px 30px rgba(216, 170, 78, 0.18);
    transform: rotate(-6deg) scale(1.07);
}

.award-category-card h4 {
    margin: 0 0 13px;

    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

.award-category-card p {
    margin: 0;

    color: #8194a6;
    font-size: 10px;
    line-height: 1.75;
}

/* =====================================================
   NOMINATION STRIP
===================================================== */

.award-nomination-strip {
    position: relative;
    margin-top: 47px;
    padding: 25px 29px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;

    border: 1px solid rgba(242, 211, 143, 0.23);
    border-radius: 14px;

    background:
        linear-gradient(
            90deg,
            rgba(17, 41, 61, 0.91),
            rgba(8, 26, 44, 0.86)
        );

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    overflow: hidden;
}

.award-nomination-strip::before {
    content: "";
    position: absolute;
    top: -150px;
    right: 15%;

    width: 300px;
    height: 300px;
    border-radius: 50%;

    background: rgba(216, 170, 78, 0.11);
    filter: blur(75px);
    pointer-events: none;
}

.nomination-trophy {
    position: relative;
    z-index: 2;

    width: 57px;
    height: 57px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(242, 211, 143, 0.32);
    border-radius: 50%;

    color: #f2d38f;
    background: rgba(216, 170, 78, 0.09);

    box-shadow: 0 0 0 8px rgba(216, 170, 78, 0.035);

    font-size: 20px;
}

.nomination-strip-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nomination-strip-content span {
    color: #48cbc5;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.nomination-strip-content h3 {
    margin: 0;

    color: #ffffff;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
}

.award-nominate-button {
    position: relative;
    z-index: 2;

    min-height: 49px;
    padding: 0 21px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    border-radius: 7px;

    color: #06111e;
    background: linear-gradient(
        120deg,
        #bf852d,
        #f3d99c,
        #bf852d
    );

    box-shadow: 0 15px 38px rgba(216, 170, 78, 0.2);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.award-nominate-button:hover {
    box-shadow: 0 20px 48px rgba(216, 170, 78, 0.3);
    transform: translateY(-3px);
}

.award-nominate-button i {
    transition: transform 0.3s ease;
}

.award-nominate-button:hover i {
    transform: translateX(5px);
}

/* =====================================================
   SECTION REVEAL ANIMATION
===================================================== */

.awards-heading,
.award-tabs,
.award-panels,
.award-nomination-strip {
    opacity: 0;
    transform: translateY(38px);

    transition:
        opacity 0.85s ease,
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.dubai-awards.section-visible .awards-heading,
.dubai-awards.section-visible .award-tabs,
.dubai-awards.section-visible .award-panels,
.dubai-awards.section-visible .award-nomination-strip {
    opacity: 1;
    transform: translateY(0);
}

.dubai-awards.section-visible .award-tabs {
    transition-delay: 0.12s;
}

.dubai-awards.section-visible .award-panels {
    transition-delay: 0.22s;
}

.dubai-awards.section-visible .award-nomination-strip {
    transition-delay: 0.34s;
}

/* =====================================================
   RESPONSIVE – SMALL DESKTOP
===================================================== */

@media (max-width: 1180px) {

    .dubai-awards {
        padding: 105px 5%;
    }

    .award-tabs {
        grid-template-columns: repeat(3, 1fr);
    }

    .award-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .award-category-card:nth-child(4),
    .award-category-card:nth-child(5) {
        min-height: 275px;
    }

    .award-panel-intro {
        grid-template-columns: auto 1fr;
    }

    .award-panel-intro p {
        grid-column: 1 / -1;
        padding: 0;
        border: 0;
    }
}

/* =====================================================
   RESPONSIVE – TABLET
===================================================== */

@media (max-width: 800px) {

    .dubai-awards {
        padding: 90px 5%;
    }

    .awards-heading {
        margin-bottom: 45px;
    }

    .award-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .award-category-card {
        min-height: 285px;
    }

    .award-nomination-strip {
        grid-template-columns: auto 1fr;
    }

    .award-nominate-button {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/* =====================================================
   RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 600px) {

    .dubai-awards {
        padding: 75px 20px;
    }

    .awards-grid-pattern {
        background-size: 48px 48px;
    }

    .awards-eyebrow {
        gap: 10px;
        font-size: 8px;
        letter-spacing: 1.7px;
    }

    .awards-eyebrow > span {
        width: 28px;
    }

    .awards-heading h2 {
        font-size: clamp(38px, 10vw, 50px);
        letter-spacing: -1.5px;
    }

    .awards-heading p {
        font-size: 13px;
    }

    /*
    Horizontally scrollable tabs
    */

    .award-tabs {
        margin-right: -20px;
        margin-left: -20px;
        padding: 8px 20px;

        display: flex;
        gap: 8px;

        border-right: 0;
        border-left: 0;
        border-radius: 0;

        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .award-tabs::-webkit-scrollbar {
        display: none;
    }

    .award-tab {
        flex: 0 0 auto;
        min-width: 150px;
        min-height: 54px;

        scroll-snap-align: start;
    }

    .award-panel-intro {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
    }

    .award-panel-intro h3 {
        font-size: 20px;
    }

    .award-panel-intro p {
        font-size: 10px;
    }

    .award-card-grid {
        grid-template-columns: 1fr;
    }

    .award-category-card,
    .award-category-card:nth-child(4),
    .award-category-card:nth-child(5) {
        min-height: auto;
        padding: 24px 20px;
    }

    .award-category-icon {
        margin-bottom: 22px;
    }

    .award-nomination-strip {
        padding: 22px 18px;

        grid-template-columns: 1fr;
        text-align: center;
    }

    .nomination-trophy {
        margin: 0 auto;
    }

    .nomination-strip-content {
        align-items: center;
    }

    .nomination-strip-content h3 {
        font-size: 17px;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .dubai-awards {
        padding-left: 15px;
        padding-right: 15px;
    }

    .award-tabs {
        margin-right: -15px;
        margin-left: -15px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .award-tab {
        min-width: 140px;
    }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .awards-heading,
    .award-tabs,
    .award-panels,
    .award-nomination-strip,
    .award-category-card {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }
}
.no-js .awards-heading,
.no-js .award-tabs,
.no-js .award-panels,
.no-js .award-nomination-strip {
    opacity: 1;
    transform: none;
}
/* =====================================================
   IBS DUBAI 2026 – EVENT AGENDA
===================================================== */

.dubai-agenda {
    position: relative;
    padding: 120px 6%;
    overflow: hidden;
    isolation: isolate;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(10, 55, 76, 0.35),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #061426 0%,
            #04101f 52%,
            #07182b 100%
        );
}

/* =====================================================
   BACKGROUND EFFECTS
===================================================== */

.agenda-pattern {
    position: absolute;
    inset: 0;
    z-index: -3;

    opacity: 0.055;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );

    background-size: 76px 76px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 10%,
        #000 90%,
        transparent
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 10%,
        #000 90%,
        transparent
    );
}

.agenda-glow {
    position: absolute;
    z-index: -2;
    top: 25%;
    left: 50%;

    width: 500px;
    height: 1100px;

    background: rgba(0, 166, 166, 0.065);
    filter: blur(150px);

    transform: translateX(-50%);
    pointer-events: none;
}

/* =====================================================
   CONTAINER
===================================================== */

.agenda-container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

/* =====================================================
   SECTION HEADING
===================================================== */

.agenda-heading {
    margin-bottom: 75px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 50px;
}

.agenda-heading-content {
    max-width: 830px;
}

.agenda-eyebrow {
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #47cac5;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.agenda-eyebrow > span {
    position: relative;
    width: 40px;
    height: 1px;

    background: #d8aa4e;
}

.agenda-eyebrow > span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;

    width: 5px;
    height: 5px;
    border-radius: 50%;

    background: #f2d38f;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(242, 211, 143, 0.75);
}

.agenda-heading h2 {
    margin: 0;

    color: #ffffff;
    font-size: clamp(43px, 4.5vw, 69px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2.5px;
}

.agenda-heading h2 span {
    display: block;
    margin-top: 6px;

    color: transparent;

    background: linear-gradient(
        105deg,
        #bd822b,
        #f3d99b 48%,
        #bd822b
    );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.agenda-heading-content > p {
    max-width: 700px;
    margin: 22px 0 0;

    color: #8799aa;
    font-size: 14px;
    line-height: 1.8;
}

/* =====================================================
   DATE CARD
===================================================== */

.agenda-date-card {
    min-width: 275px;
    padding: 21px 23px;

    display: flex;
    align-items: center;
    gap: 15px;

    border: 1px solid rgba(242, 211, 143, 0.24);
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(17, 46, 70, 0.78),
            rgba(5, 19, 34, 0.72)
        );

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
}

.agenda-calendar-icon {
    flex: 0 0 51px;
    width: 51px;
    height: 51px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(242, 211, 143, 0.28);
    border-radius: 13px;

    color: #f2d38f;
    background: rgba(216, 170, 78, 0.09);

    font-size: 19px;
}

.agenda-date-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.agenda-date-content span {
    color: #46c9c4;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.agenda-date-content strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.agenda-date-content small {
    color: #8194a5;
    font-size: 9px;
}

/* =====================================================
   AGENDA TIMELINE
===================================================== */

.agenda-timeline {
    position: relative;
    width: 100%;
    padding: 10px 0;
}

/* Central Vertical Line */

.agenda-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;

    width: 2px;

    background: rgba(255, 255, 255, 0.09);
    transform: translateX(-50%);
}

.agenda-line-progress {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        180deg,
        #00a6a6 0%,
        #f2d38f 50%,
        #00a6a6 100%
    );

    box-shadow:
        0 0 13px rgba(0, 166, 166, 0.45),
        0 0 20px rgba(216, 170, 78, 0.2);

    opacity: 0.58;
}

/* =====================================================
   TIMELINE ITEM
===================================================== */

.agenda-item {
    position: relative;
    width: 100%;
    min-height: 285px;

    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    align-items: center;
}

/* Left Card Position */

.agenda-item-left .agenda-card {
    grid-column: 1;
    grid-row: 1;
}

.agenda-item-left .agenda-time {
    grid-column: 3;
    grid-row: 1;

    justify-self: start;
}

/* Right Card Position */

.agenda-item-right .agenda-card {
    grid-column: 3;
    grid-row: 1;
}

.agenda-item-right .agenda-time {
    grid-column: 1;
    grid-row: 1;

    justify-self: end;
}

/* Timeline Dot */

.agenda-dot {
    position: relative;
    z-index: 4;

    grid-column: 2;
    grid-row: 1;

    width: 22px;
    height: 22px;
    justify-self: center;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(242, 211, 143, 0.65);
    border-radius: 50%;

    background: #061527;
    box-shadow:
        0 0 0 8px rgba(216, 170, 78, 0.055),
        0 0 25px rgba(216, 170, 78, 0.16);
}

.agenda-dot > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;

    background: #f2d38f;
    box-shadow: 0 0 12px rgba(242, 211, 143, 0.9);

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.agenda-item:hover .agenda-dot > span {
    background: #46cbc5;
    transform: scale(1.5);
}

/* =====================================================
   TIME
===================================================== */

.agenda-time {
    min-width: 105px;

    display: flex;
    align-items: baseline;
    gap: 5px;
}

.agenda-time span {
    color: #f2d38f;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -1px;
}

.agenda-time small {
    color: #46cac5;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* =====================================================
   CONNECTING LINES
===================================================== */

.agenda-item-left .agenda-card::after,
.agenda-item-right .agenda-card::after {
    content: "";
    position: absolute;
    top: 50%;

    width: 49px;
    height: 1px;

    background: linear-gradient(
        90deg,
        rgba(242, 211, 143, 0.5),
        rgba(242, 211, 143, 0.05)
    );
}

.agenda-item-left .agenda-card::after {
    right: -49px;
}

.agenda-item-right .agenda-card::after {
    left: -49px;
    transform: rotate(180deg);
}

/* =====================================================
   AGENDA CARD
===================================================== */

.agenda-card {
    position: relative;
    min-height: 235px;
    padding: 25px 24px 22px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 43, 68, 0.73),
            rgba(5, 19, 35, 0.64)
        );

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    overflow: visible;

    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.agenda-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;
    border-radius: 0 0 14px 14px;

    background: linear-gradient(
        90deg,
        #00a6a6,
        #f2d38f,
        transparent
    );

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.agenda-card:hover {
    border-color: rgba(242, 211, 143, 0.32);

    background:
        linear-gradient(
            145deg,
            rgba(23, 54, 80, 0.88),
            rgba(7, 24, 42, 0.76)
        );

    box-shadow:
        0 31px 70px rgba(0, 0, 0, 0.31),
        0 0 35px rgba(0, 166, 166, 0.04);

    transform: translateY(-7px);
}

.agenda-card:hover::before {
    transform: scaleX(1);
}

/* =====================================================
   CARD TOP
===================================================== */

.agenda-card-top {
    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.agenda-card-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 166, 166, 0.28);
    border-radius: 13px;

    color: #46cbc5;
    background: rgba(0, 166, 166, 0.08);

    font-size: 17px;

    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.agenda-card:hover .agenda-card-icon {
    color: #071421;
    border-color: #f2d38f;
    background: #f2d38f;
    transform: rotate(-6deg);
}

.agenda-session-number {
    color: #7f92a4;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.agenda-card h3 {
    margin: 0 0 11px;

    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.agenda-card > p {
    margin: 0 0 18px;

    color: #8194a6;
    font-size: 11px;
    line-height: 1.75;
}

/* =====================================================
   CARD META
===================================================== */

.agenda-card-meta {
    padding-top: 15px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.agenda-card-meta > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #7f92a4;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.agenda-card-meta i {
    color: #d8aa4e;
    font-size: 9px;
}

/* =====================================================
   HIGHLIGHT CARDS
===================================================== */

.agenda-highlight-card,
.agenda-award-card {
    border-color: rgba(242, 211, 143, 0.28);

    background:
        linear-gradient(
            145deg,
            rgba(37, 54, 68, 0.9),
            rgba(13, 30, 46, 0.78)
        );
}

.agenda-highlight-label {
    position: absolute;
    top: -13px;
    left: 22px;

    padding: 7px 12px;

    border: 1px solid rgba(242, 211, 143, 0.3);
    border-radius: 30px;

    color: #071421;

    background: linear-gradient(
        100deg,
        #c48b31,
        #f2d38f
    );

    box-shadow: 0 8px 20px rgba(216, 170, 78, 0.15);

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =====================================================
   AGENDA FOOTER
===================================================== */

.agenda-footer {
    margin-top: 65px;
    padding: 22px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    border: 1px solid rgba(242, 211, 143, 0.18);
    border-radius: 13px;

    background:
        linear-gradient(
            90deg,
            rgba(11, 35, 56, 0.84),
            rgba(5, 19, 34, 0.76)
        );

    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

.agenda-footer-info {
    display: flex;
    align-items: center;
    gap: 13px;
}

.agenda-footer-info > i {
    color: #47cac5;
    font-size: 17px;
}

.agenda-footer-info p {
    max-width: 750px;
    margin: 0;

    color: #8194a6;
    font-size: 10px;
    line-height: 1.7;
}

.agenda-register-btn {
    flex: 0 0 auto;
    min-height: 48px;
    padding: 0 21px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    border-radius: 7px;

    color: #06111e;
    background: linear-gradient(
        120deg,
        #bf852d,
        #f3d99c,
        #bf852d
    );

    box-shadow: 0 14px 35px rgba(216, 170, 78, 0.18);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.agenda-register-btn:hover {
    box-shadow: 0 19px 45px rgba(216, 170, 78, 0.28);
    transform: translateY(-3px);
}

.agenda-register-btn i {
    transition: transform 0.3s ease;
}

.agenda-register-btn:hover i {
    transform: translateX(5px);
}

/* =====================================================
   RESPONSIVE – SMALL DESKTOP
===================================================== */

@media (max-width: 1050px) {

    .dubai-agenda {
        padding: 105px 5%;
    }

    .agenda-heading {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .agenda-date-card {
        width: fit-content;
    }

    .agenda-item {
        grid-template-columns: 1fr 95px 1fr;
    }

    .agenda-item-left .agenda-card::after,
    .agenda-item-right .agenda-card::after {
        width: 37px;
    }

    .agenda-item-left .agenda-card::after {
        right: -37px;
    }

    .agenda-item-right .agenda-card::after {
        left: -37px;
    }
}

/* =====================================================
   RESPONSIVE – TABLET AND MOBILE TIMELINE
===================================================== */

@media (max-width: 800px) {

    .dubai-agenda {
        padding: 90px 5%;
    }

    .agenda-heading {
        margin-bottom: 60px;
        gap: 30px;
    }

    .agenda-timeline {
        padding-left: 95px;
    }

    .agenda-line {
        left: 66px;
        transform: none;
    }

    .agenda-item {
        min-height: auto;
        margin-bottom: 30px;

        display: block;
    }

    .agenda-item:last-child {
        margin-bottom: 0;
    }

    .agenda-item-left .agenda-card,
    .agenda-item-right .agenda-card {
        width: 100%;
    }

    .agenda-item-left .agenda-time,
    .agenda-item-right .agenda-time {
        position: absolute;
        top: 20px;
        left: -95px;

        width: 63px;
        min-width: 0;

        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 0;
    }

    .agenda-time span {
        font-size: 18px;
    }

    .agenda-time small {
        margin-top: 3px;
        font-size: 7px;
    }

    .agenda-dot {
        position: absolute;
        top: 26px;
        left: -39px;

        width: 18px;
        height: 18px;
    }

    .agenda-dot > span {
        width: 6px;
        height: 6px;
    }

    .agenda-item-left .agenda-card::after,
    .agenda-item-right .agenda-card::after {
        top: 35px;
        left: -29px;
        right: auto;

        width: 29px;
        transform: none;
    }

    .agenda-card {
        min-height: auto;
    }
}

/* =====================================================
   RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 600px) {

    .dubai-agenda {
        padding: 75px 20px;
    }

    .agenda-pattern {
        background-size: 48px 48px;
    }

    .agenda-eyebrow {
        font-size: 8px;
        letter-spacing: 1.7px;
    }

    .agenda-eyebrow > span {
        width: 28px;
    }

    .agenda-heading h2 {
        font-size: clamp(38px, 10vw, 50px);
        letter-spacing: -1.5px;
    }

    .agenda-heading-content > p {
        font-size: 13px;
    }

    .agenda-date-card {
        width: 100%;
        min-width: 0;
        padding: 17px;
    }

    .agenda-timeline {
        padding-left: 65px;
    }

    .agenda-line {
        left: 46px;
    }

    .agenda-item-left .agenda-time,
    .agenda-item-right .agenda-time {
        left: -66px;
        width: 42px;
    }

    .agenda-time span {
        font-size: 14px;
        letter-spacing: -0.5px;
    }

    .agenda-dot {
        left: -27px;
    }

    .agenda-item-left .agenda-card::after,
    .agenda-item-right .agenda-card::after {
        left: -18px;
        width: 18px;
    }

    .agenda-card {
        padding: 22px 18px 19px;
    }

    .agenda-card-top {
        align-items: flex-start;
    }

    .agenda-card-icon {
        width: 43px;
        height: 43px;
    }

    .agenda-card h3 {
        font-size: 16px;
    }

    .agenda-card > p {
        font-size: 10px;
    }

    .agenda-card-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .agenda-footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px 18px;
    }

    .agenda-footer-info {
        align-items: flex-start;
    }

    .agenda-register-btn {
        width: 100%;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .dubai-agenda {
        padding-left: 15px;
        padding-right: 15px;
    }

    .agenda-timeline {
        padding-left: 58px;
    }

    .agenda-line {
        left: 41px;
    }

    .agenda-item-left .agenda-time,
    .agenda-item-right .agenda-time {
        left: -59px;
    }

    .agenda-dot {
        left: -26px;
    }

    .agenda-item-left .agenda-card::after,
    .agenda-item-right .agenda-card::after {
        left: -18px;
    }

    .agenda-session-number {
        max-width: 80px;
        text-align: right;
    }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .agenda-card,
    .agenda-card-icon,
    .agenda-register-btn,
    .agenda-dot > span {
        transition: none;
    }
}
/* =====================================================
   PREVIOUS EDITION HIGHLIGHTS
===================================================== */

.previous-highlights {
    position: relative;
    padding: 120px 6%;
    overflow: hidden;
    isolation: isolate;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(0, 166, 166, 0.08),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #030b17 0%,
            #061426 48%,
            #030c18 100%
        );
}

/* =====================================================
   BACKGROUND EFFECTS
===================================================== */

.highlights-pattern {
    position: absolute;
    inset: 0;
    z-index: -3;

    opacity: 0.055;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );

    background-size: 75px 75px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );
}

.highlights-glow {
    position: absolute;
    z-index: -2;
    left: -250px;
    bottom: -200px;

    width: 550px;
    height: 550px;
    border-radius: 50%;

    background: rgba(216, 170, 78, 0.09);
    filter: blur(150px);
    pointer-events: none;
}

/* =====================================================
   CONTAINER
===================================================== */

.highlights-container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

/* =====================================================
   SECTION HEADING
===================================================== */

.highlights-heading {
    margin-bottom: 52px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
}

.highlights-heading-content {
    max-width: 850px;
}

.highlights-eyebrow {
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #47cac5;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.highlights-eyebrow > span {
    position: relative;
    width: 40px;
    height: 1px;

    background: #d8aa4e;
}

.highlights-eyebrow > span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;

    width: 5px;
    height: 5px;
    border-radius: 50%;

    background: #f2d38f;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(242, 211, 143, 0.8);
}

.highlights-heading h2 {
    margin: 0;

    color: #ffffff;
    font-size: clamp(43px, 4.5vw, 69px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2.5px;
}

.highlights-heading h2 span {
    display: block;
    margin-top: 5px;

    color: transparent;

    background: linear-gradient(
        105deg,
        #bd822b,
        #f3d99b 48%,
        #bd822b
    );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlights-heading-content > p {
    max-width: 690px;
    margin: 21px 0 0;

    color: #8598aa;
    font-size: 14px;
    line-height: 1.8;
}

/* =====================================================
   GALLERY BUTTON
===================================================== */

.highlights-gallery-btn {
    flex: 0 0 auto;
    min-height: 50px;
    padding: 0 21px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    border: 1px solid rgba(242, 211, 143, 0.31);
    border-radius: 7px;

    color: #f2d38f;
    background: rgba(216, 170, 78, 0.07);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.highlights-gallery-btn:hover {
    color: #071421;
    border-color: #f2d38f;
    background: #f2d38f;

    box-shadow: 0 15px 38px rgba(216, 170, 78, 0.2);
    transform: translateY(-3px);
}

.highlights-gallery-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.highlights-gallery-btn:hover i {
    transform: translate(3px, -3px);
}

/* =====================================================
   PREMIUM GALLERY MOSAIC
===================================================== */

.highlights-gallery {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.75fr;
    grid-template-rows: repeat(2, 285px);
    gap: 15px;
}

/* Main Image */

.highlight-photo-main {
    grid-column: 1;
    grid-row: 1 / span 2;
}

/* Wide Top Image */

.highlight-photo-wide:nth-of-type(2) {
    grid-column: 2 / span 2;
    grid-row: 1;
}

/* Small Bottom Images */

.highlight-photo:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
}

.highlight-photo:nth-of-type(4) {
    grid-column: 3;
    grid-row: 2;
}

/*
Fifth image becomes a full-width cinematic image
below the main mosaic.
*/

.highlight-photo:nth-of-type(5) {
    grid-column: 1 / -1;
    grid-row: 3;
    min-height: 320px;
}

/* =====================================================
   PHOTO CARD
===================================================== */

.highlight-photo {
    position: relative;
    min-width: 0;
    height: 100%;

    display: block;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;

    color: #ffffff;
    background: #07172a;

    overflow: hidden;
    isolation: isolate;

    box-shadow:
        0 23px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    text-decoration: none;

    transition:
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.highlight-photo:hover {
    border-color: rgba(242, 211, 143, 0.36);

    box-shadow:
        0 32px 75px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(216, 170, 78, 0.05);

    transform: translateY(-7px);
}

.highlight-photo img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    filter:
        saturate(0.93)
        contrast(1.04)
        brightness(0.94);

    transition:
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.6s ease;
}

.highlight-photo:hover img {
    transform: scale(1.075);

    filter:
        saturate(1.08)
        contrast(1.02)
        brightness(1.03);
}

/* =====================================================
   IMAGE OVERLAY
===================================================== */

.highlight-photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(3, 11, 21, 0.02) 25%,
            rgba(3, 11, 21, 0.19) 52%,
            rgba(3, 11, 21, 0.92) 100%
        ),
        linear-gradient(
            90deg,
            rgba(3, 11, 21, 0.18),
            transparent 55%
        );

    transition: background 0.4s ease;
}

.highlight-photo:hover .highlight-photo-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(3, 11, 21, 0.01) 25%,
            rgba(3, 11, 21, 0.11) 55%,
            rgba(3, 11, 21, 0.82) 100%
        );
}

/* =====================================================
   PHOTO CONTENT
===================================================== */

.highlight-photo-content {
    position: absolute;
    z-index: 3;
    left: 24px;
    right: 20px;
    bottom: 22px;

    padding-left: 14px;
    border-left: 2px solid #d8aa4e;
}

.highlight-photo-content > span {
    display: block;
    margin-bottom: 6px;

    color: #47cbc5;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.highlight-photo-content h3 {
    max-width: calc(100% - 48px);
    margin: 0;

    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.highlight-photo-main .highlight-photo-content h3 {
    max-width: 380px;
    font-size: 23px;
}

.highlight-photo:nth-of-type(5)
.highlight-photo-content h3 {
    font-size: 23px;
}

/* View Icon */

.photo-view-icon {
    position: absolute;
    right: 0;
    bottom: 0;

    width: 37px;
    height: 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;

    color: #f2d38f;
    background: rgba(4, 18, 32, 0.52);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.photo-view-icon i {
    font-size: 11px;
}

.highlight-photo:hover .photo-view-icon {
    color: #071421;
    border-color: #f2d38f;
    background: #f2d38f;
    transform: rotate(8deg);
}

/* =====================================================
   GALLERY STATISTICS
===================================================== */

.highlights-stats {
    margin-top: 40px;
    padding: 25px 30px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(30px, 5vw, 75px);

    border: 1px solid rgba(242, 211, 143, 0.17);
    border-radius: 13px;

    background:
        linear-gradient(
            90deg,
            rgba(6, 23, 40, 0.88),
            rgba(10, 35, 56, 0.82),
            rgba(6, 23, 40, 0.88)
        );

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.highlight-stat {
    display: flex;
    align-items: center;
    gap: 13px;
}

.highlight-stat strong {
    color: #f2d38f;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

.highlight-stat span {
    padding-left: 13px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);

    color: #8093a5;
    font-size: 8px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.highlight-stat-line {
    width: 1px;
    height: 37px;

    background: rgba(255, 255, 255, 0.11);
}

/* =====================================================
   RESPONSIVE – SMALL DESKTOP
===================================================== */

@media (max-width: 1100px) {

    .previous-highlights {
        padding: 105px 5%;
    }

    .highlights-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 480px 270px 270px;
    }

    .highlight-photo-main {
        grid-column: 1;
        grid-row: 1;
    }

    .highlight-photo-wide:nth-of-type(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .highlight-photo:nth-of-type(3) {
        grid-column: 1;
        grid-row: 2;
    }

    .highlight-photo:nth-of-type(4) {
        grid-column: 2;
        grid-row: 2;
    }

    .highlight-photo:nth-of-type(5) {
        grid-column: 1 / -1;
        grid-row: 3;
        min-height: 270px;
    }

    .highlights-stats {
        gap: 28px;
    }
}

/* =====================================================
   RESPONSIVE – TABLET
===================================================== */

@media (max-width: 800px) {

    .previous-highlights {
        padding: 90px 5%;
    }

    .highlights-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .highlights-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .highlight-stat {
        justify-content: center;
    }

    .highlight-stat-line {
        display: none;
    }
}

/* =====================================================
   RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 600px) {

    .previous-highlights {
        padding: 75px 20px;
    }

    .highlights-pattern {
        background-size: 48px 48px;
    }

    .highlights-eyebrow {
        font-size: 8px;
        letter-spacing: 1.7px;
    }

    .highlights-eyebrow > span {
        width: 28px;
    }

    .highlights-heading h2 {
        font-size: clamp(38px, 10vw, 50px);
        letter-spacing: -1.5px;
    }

    .highlights-heading-content > p {
        font-size: 13px;
    }

    .highlights-gallery-btn {
        width: 100%;
    }

    .highlights-gallery {
        display: flex;
        flex-direction: column;
        gap: 13px;
    }

    .highlight-photo,
    .highlight-photo-main,
    .highlight-photo-wide:nth-of-type(2),
    .highlight-photo:nth-of-type(3),
    .highlight-photo:nth-of-type(4),
    .highlight-photo:nth-of-type(5) {
        width: 100%;
        height: 300px;
        min-height: 300px;
    }

    .highlight-photo-main {
        height: 390px;
        min-height: 390px;
    }

    .highlight-photo-content {
        left: 18px;
        right: 17px;
        bottom: 18px;
    }

    .highlight-photo-content h3,
    .highlight-photo-main .highlight-photo-content h3,
    .highlight-photo:nth-of-type(5)
    .highlight-photo-content h3 {
        font-size: 17px;
    }

    .highlights-stats {
        padding: 22px 15px;
        gap: 24px 10px;
    }

    .highlight-stat {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .highlight-stat strong {
        font-size: 23px;
    }

    .highlight-stat span {
        padding: 0;
        border: 0;
        font-size: 7px;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .previous-highlights {
        padding-left: 15px;
        padding-right: 15px;
    }

    .highlight-photo,
    .highlight-photo-wide:nth-of-type(2),
    .highlight-photo:nth-of-type(3),
    .highlight-photo:nth-of-type(4),
    .highlight-photo:nth-of-type(5) {
        height: 270px;
        min-height: 270px;
    }

    .highlight-photo-main {
        height: 360px;
        min-height: 360px;
    }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .highlight-photo,
    .highlight-photo img,
    .photo-view-icon,
    .highlights-gallery-btn {
        transition: none;
    }
}
/* =====================================================
   IBS DUBAI 2026 – SPONSORSHIP OPPORTUNITIES
===================================================== */

.dubai-sponsorship {
    position: relative;
    padding: 120px 6%;
    overflow: hidden;
    isolation: isolate;

    color: #ffffff;
    background: #030b17;
}

/* =====================================================
   BACKGROUND IMAGE & EFFECTS
===================================================== */

.sponsorship-bg-image {
    position: absolute;
    inset: 0;
    z-index: -5;

    background-image: url("../images/dubai-sponsorship-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: scale(1.04);
}

.sponsorship-overlay {
    position: absolute;
    inset: 0;
    z-index: -4;

    background:
        linear-gradient(
            90deg,
            rgba(3, 11, 23, 0.18) 0%,
            rgba(4, 16, 31, 0.15) 45%,
            rgba(3, 11, 23, 0.10) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 11, 23, 0.30) 0%,
            rgba(3, 11, 23, 0.22) 45%,
            rgba(3, 11, 23, 0.82) 100%
        );
}
.sponsorship-pattern {
    position: absolute;
    inset: 0;
    z-index: -3;

    opacity: 0.055;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );

    background-size: 75px 75px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );
}

.sponsorship-glow {
    position: absolute;
    z-index: -2;
    top: 13%;
    right: -250px;

    width: 600px;
    height: 600px;
    border-radius: 50%;

    background: rgba(216, 170, 78, 0.1);
    filter: blur(150px);
    pointer-events: none;
}

/* =====================================================
   CONTAINER
===================================================== */

.sponsorship-container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

/* =====================================================
   TOP INTRODUCTION
===================================================== */

.sponsorship-intro {
    margin-bottom: 70px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.8fr);
    align-items: center;
    gap: clamp(65px, 7vw, 110px);
}

/* =====================================================
   HEADING
===================================================== */

.sponsorship-heading {
    max-width: 780px;
}

.sponsorship-eyebrow {
    margin-bottom: 19px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #47cbc5;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.3px;
    text-transform: uppercase;
}

.sponsorship-eyebrow > span {
    position: relative;
    width: 40px;
    height: 1px;

    background: #d8aa4e;
}

.sponsorship-eyebrow > span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;

    width: 5px;
    height: 5px;
    border-radius: 50%;

    background: #f2d38f;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(242, 211, 143, 0.8);
}

.sponsorship-heading h2 {
    margin: 0;

    color: #ffffff;
    font-size: clamp(44px, 4.5vw, 70px);
    font-weight: 700;
    line-height: 1.07;
    letter-spacing: -2.5px;
}

.sponsorship-heading h2 span {
    display: block;
    margin-top: 6px;

    color: transparent;

    background: linear-gradient(
        105deg,
        #bd822b,
        #f3d99b 50%,
        #bd822b
    );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sponsorship-heading > p {
    max-width: 680px;
    margin: 23px 0 0;

    color: #8799aa;
    font-size: 14px;
    line-height: 1.8;
}

/* =====================================================
   SPONSORSHIP ACTIONS
===================================================== */

.sponsorship-actions {
    margin-top: 31px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.sponsorship-primary-btn,
.sponsorship-download-btn {
    min-height: 51px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    border-radius: 7px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.sponsorship-primary-btn {
    color: #06111e;

    background: linear-gradient(
        120deg,
        #bf852d,
        #f3d99b,
        #bf852d
    );

    box-shadow: 0 15px 38px rgba(216, 170, 78, 0.2);
}

.sponsorship-primary-btn:hover {
    box-shadow: 0 20px 48px rgba(216, 170, 78, 0.3);
    transform: translateY(-3px);
}

.sponsorship-download-btn {
    border: 1px solid rgba(255, 255, 255, 0.18);

    color: #dbe5ed;
    background: rgba(255, 255, 255, 0.045);
}

.sponsorship-download-btn:hover {
    color: #f2d38f;
    border-color: rgba(242, 211, 143, 0.45);
    background: rgba(216, 170, 78, 0.08);
    transform: translateY(-3px);
}

.sponsorship-primary-btn i,
.sponsorship-download-btn i {
    transition: transform 0.3s ease;
}

.sponsorship-primary-btn:hover i {
    transform: translateX(5px);
}

.sponsorship-download-btn:hover i {
    transform: translateY(3px);
}

/* =====================================================
   BRAND REACH CARD
===================================================== */

.sponsorship-reach {
    position: relative;
    padding: 28px;

    border: 1px solid rgba(242, 211, 143, 0.24);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 44, 68, 0.82),
            rgba(5, 19, 34, 0.72)
        );

    box-shadow:
        0 30px 75px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    overflow: hidden;
}

.sponsorship-reach::before {
    content: "";
    position: absolute;
    top: -130px;
    right: -130px;

    width: 280px;
    height: 280px;
    border-radius: 50%;

    background: rgba(0, 166, 166, 0.13);
    filter: blur(55px);
    pointer-events: none;
}

.reach-top {
    position: relative;
    z-index: 2;
    margin-bottom: 23px;
    padding-bottom: 20px;

    display: flex;
    flex-direction: column;
    gap: 7px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.reach-top > span {
    color: #47cbc5;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.reach-top > strong {
    max-width: 400px;

    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
}

.reach-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.reach-item {
    min-height: 142px;
    padding: 17px;

    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;

    background: rgba(255, 255, 255, 0.025);

    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.reach-item:hover {
    border-color: rgba(242, 211, 143, 0.28);
    background: rgba(216, 170, 78, 0.06);
    transform: translateY(-5px);
}

.reach-icon {
    width: 37px;
    height: 37px;
    margin-bottom: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 166, 166, 0.28);
    border-radius: 10px;

    color: #47cbc5;
    background: rgba(0, 166, 166, 0.08);

    font-size: 13px;
}

.reach-item strong {
    color: #f2d38f;
    font-size: 20px;
    font-weight: 700;
}

.reach-item > span {
    margin-top: 4px;

    color: #8294a5;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

/* =====================================================
   PACKAGE SECTION HEADING
===================================================== */

.sponsorship-packages-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.sponsorship-packages-heading > span {
    color: #47cbc5;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sponsorship-packages-heading h3 {
    margin: 12px 0 0;

    color: #ffffff;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -1px;
}

/* =====================================================
   SPONSORSHIP PACKAGES
===================================================== */

.sponsorship-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 18px;
}

.sponsor-package {
    position: relative;
    min-height: 600px;
    padding: 32px 27px 27px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(14, 41, 65, 0.82),
            rgba(5, 18, 33, 0.72)
        );

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);

    overflow: hidden;
    isolation: isolate;

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}

.sponsor-package::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -140px;
    right: -140px;

    width: 300px;
    height: 300px;
    border-radius: 50%;

    background: rgba(0, 166, 166, 0.08);
    filter: blur(55px);

    transition:
        background 0.4s ease,
        transform 0.5s ease;
}

.sponsor-package::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        #00a6a6,
        #f2d38f,
        #00a6a6
    );

    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.sponsor-package:hover {
    border-color: rgba(242, 211, 143, 0.34);

    background:
        linear-gradient(
            145deg,
            rgba(22, 53, 79, 0.91),
            rgba(7, 24, 42, 0.84)
        );

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.36),
        0 0 40px rgba(216, 170, 78, 0.04);

    transform: translateY(-10px);
}

.sponsor-package:hover::before {
    background: rgba(216, 170, 78, 0.12);
    transform: translate(-25px, 25px);
}

.sponsor-package:hover::after {
    transform: scaleX(1);
}

/* =====================================================
   FEATURED PACKAGE
===================================================== */

.featured-package {
    border-color: rgba(242, 211, 143, 0.34);

    background:
        linear-gradient(
            145deg,
            rgba(31, 53, 70, 0.93),
            rgba(12, 29, 45, 0.87)
        );

    box-shadow:
        0 32px 78px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(242, 211, 143, 0.11);

    transform: translateY(-14px);
}

.featured-package:hover {
    transform: translateY(-22px);
}

.featured-package-label {
    position: absolute;
    top: 20px;
    right: -44px;

    width: 170px;
    padding: 7px 0;

    color: #06111e;

    background: linear-gradient(
        90deg,
        #bf852d,
        #f2d38f
    );

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-align: center;
    text-transform: uppercase;

    transform: rotate(42deg);
}

/* Package Elements */

.package-number {
    position: absolute;
    top: 25px;
    right: 25px;

    color: rgba(255, 255, 255, 0.09);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.package-icon {
    width: 59px;
    height: 59px;
    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 166, 166, 0.3);
    border-radius: 16px;

    color: #47cbc5;
    background: rgba(0, 166, 166, 0.09);

    font-size: 21px;

    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.4s ease,
        box-shadow 0.35s ease;
}

.sponsor-package:hover .package-icon {
    color: #071421;
    border-color: #f2d38f;

    background: linear-gradient(
        135deg,
        #bf852d,
        #f2d38f
    );

    box-shadow: 0 15px 32px rgba(216, 170, 78, 0.2);
    transform: rotate(-6deg) scale(1.06);
}

.package-type {
    margin-bottom: 8px;

    color: #47cbc5;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sponsor-package h3 {
    margin: 0;

    color: #ffffff;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.3;
}

.package-description {
    margin: 17px 0 22px;

    color: #8496a7;
    font-size: 11px;
    line-height: 1.75;
}

/* =====================================================
   PACKAGE BENEFITS
===================================================== */

.package-benefits {
    margin: 0 0 28px;
    padding: 22px 0 0;

    display: flex;
    flex-direction: column;
    gap: 14px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);
    list-style: none;
}

.package-benefits li {
    display: grid;
    grid-template-columns: 25px 1fr;
    align-items: center;
    gap: 10px;

    color: #a1b0bd;
    font-size: 10px;
    line-height: 1.5;
}

.package-benefits i {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #47cbc5;
    background: rgba(0, 166, 166, 0.09);

    font-size: 8px;
}

/* Package Button */

.package-btn {
    width: 100%;
    min-height: 48px;
    margin-top: auto;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    border: 1px solid rgba(242, 211, 143, 0.27);
    border-radius: 7px;

    color: #f2d38f;
    background: rgba(216, 170, 78, 0.06);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.package-btn:hover {
    color: #071421;
    border-color: #f2d38f;
    background: #f2d38f;
    transform: translateY(-3px);
}

.package-btn i {
    transition: transform 0.3s ease;
}

.package-btn:hover i {
    transform: translateX(5px);
}

/* =====================================================
   CUSTOM PARTNERSHIP STRIP
===================================================== */

.custom-partnership {
    position: relative;
    margin-top: 50px;
    padding: 25px 29px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;

    border: 1px solid rgba(242, 211, 143, 0.2);
    border-radius: 14px;

    background:
        linear-gradient(
            90deg,
            rgba(13, 39, 60, 0.91),
            rgba(6, 22, 38, 0.83)
        );

    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.custom-partnership::before {
    content: "";
    position: absolute;
    top: -130px;
    right: 15%;

    width: 280px;
    height: 280px;
    border-radius: 50%;

    background: rgba(0, 166, 166, 0.1);
    filter: blur(65px);
}

.custom-partnership-icon {
    position: relative;
    z-index: 2;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 166, 166, 0.29);
    border-radius: 14px;

    color: #47cbc5;
    background: rgba(0, 166, 166, 0.08);

    font-size: 18px;
}

.custom-partnership-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 6px;
}

.custom-partnership-content > span {
    color: #f2d38f;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.custom-partnership-content h3 {
    max-width: 780px;
    margin: 0;

    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.custom-partnership-btn {
    position: relative;
    z-index: 2;

    min-height: 48px;
    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    border: 1px solid rgba(242, 211, 143, 0.3);
    border-radius: 7px;

    color: #f2d38f;
    background: rgba(216, 170, 78, 0.06);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.custom-partnership-btn:hover {
    color: #071421;
    border-color: #f2d38f;
    background: #f2d38f;
    transform: translateY(-3px);
}

.custom-partnership-btn i {
    transition: transform 0.3s ease;
}

.custom-partnership-btn:hover i {
    transform: translateX(5px);
}

/* =====================================================
   RESPONSIVE – SMALL DESKTOP
===================================================== */

@media (max-width: 1100px) {

    .dubai-sponsorship {
        padding: 105px 5%;
    }

    .sponsorship-intro {
        grid-template-columns: 1fr 420px;
        gap: 55px;
    }

    .sponsorship-packages {
        gap: 15px;
    }

    .sponsor-package {
        padding-right: 22px;
        padding-left: 22px;
    }
}

/* =====================================================
   RESPONSIVE – TABLET
===================================================== */

@media (max-width: 900px) {

    .dubai-sponsorship {
        padding: 90px 5%;
    }

    .sponsorship-intro {
        grid-template-columns: 1fr;
    }

    .sponsorship-reach {
        max-width: 720px;
    }

    .sponsorship-packages {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-package {
        transform: translateY(0);
    }

    .featured-package:hover {
        transform: translateY(-10px);
    }

    .sponsor-package:last-child {
        grid-column: 1 / -1;
        min-height: auto;
    }

    .custom-partnership {
        grid-template-columns: auto 1fr;
    }

    .custom-partnership-btn {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/* =====================================================
   RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 600px) {

    .dubai-sponsorship {
        padding: 75px 20px;
    }

    .sponsorship-bg-image {
        background-position: 65% center;
    }

    .sponsorship-pattern {
        background-size: 48px 48px;
    }

    .sponsorship-eyebrow {
        align-items: flex-start;
        font-size: 8px;
        letter-spacing: 1.6px;
    }

    .sponsorship-eyebrow > span {
        flex: 0 0 28px;
        width: 28px;
        margin-top: 6px;
    }

    .sponsorship-heading h2 {
        font-size: clamp(38px, 10vw, 50px);
        letter-spacing: -1.5px;
    }

    .sponsorship-heading > p {
        font-size: 13px;
    }

    .sponsorship-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .sponsorship-primary-btn,
    .sponsorship-download-btn {
        width: 100%;
    }

    .sponsorship-reach {
        padding: 21px 18px;
    }

    .reach-grid {
        gap: 9px;
    }

    .reach-item {
        min-height: 130px;
        padding: 14px;
    }

    .reach-item strong {
        font-size: 18px;
    }

    .sponsorship-packages-heading {
        margin-bottom: 30px;
    }

    .sponsorship-packages {
        grid-template-columns: 1fr;
    }

    .sponsor-package,
    .sponsor-package:last-child {
        grid-column: auto;
        min-height: auto;
        padding: 27px 21px 22px;
    }

    .custom-partnership {
        padding: 22px 18px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .custom-partnership-icon {
        margin: 0 auto;
    }

    .custom-partnership-content {
        align-items: center;
    }

    .custom-partnership-content h3 {
        font-size: 14px;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .dubai-sponsorship {
        padding-left: 15px;
        padding-right: 15px;
    }

    .reach-grid {
        grid-template-columns: 1fr;
    }

    .reach-item {
        min-height: auto;
    }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .sponsor-package,
    .package-icon,
    .package-btn,
    .custom-partnership-btn,
    .reach-item,
    .sponsorship-primary-btn,
    .sponsorship-download-btn {
        transition: none;
    }
}
.sponsorship-bg-image {
    position: absolute;
    inset: 0;
    z-index: -5;

    background-image: url("../images/dubai-sponsorship-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter:
        brightness(1.2)
        saturate(1.08)
        contrast(1.02);

    transform: scale(1.04);
}
/* =====================================================
   IBS DUBAI 2026 – NOMINATION CTA
===================================================== */

.dubai-nomination-cta {
    position: relative;
    padding: 120px 6%;
    overflow: hidden;
    isolation: isolate;

    color: #ffffff;
    background: #030b17;
}

/* Background */

.nomination-cta-bg {
    position: absolute;
    inset: 0;
    z-index: -5;

    background-image: url("../images/dubai-nomination-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter:
        brightness(1.12)
        saturate(1.06);

    transform: scale(1.04);
}

.nomination-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -4;

    background:
        linear-gradient(
            90deg,
            rgba(3, 11, 23, 0.93) 0%,
            rgba(4, 16, 31, 0.77) 48%,
            rgba(3, 11, 23, 0.62) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 11, 23, 0.66),
            rgba(3, 11, 23, 0.9)
        );
}

.nomination-cta-pattern {
    position: absolute;
    inset: 0;
    z-index: -3;

    opacity: 0.06;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
}

.nomination-cta-glow {
    position: absolute;
    z-index: -2;
    top: 50%;
    right: 5%;

    width: 500px;
    height: 500px;
    border-radius: 50%;

    background: rgba(216, 170, 78, 0.11);
    filter: blur(130px);

    transform: translateY(-50%);
}

/* Container */

.nomination-cta-container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1380px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.65fr);
    align-items: center;
    gap: clamp(65px, 8vw, 125px);
}

/* Left Content */

.nomination-cta-content {
    max-width: 810px;
}

.nomination-cta-eyebrow {
    margin-bottom: 19px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #47cbc5;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.3px;
    text-transform: uppercase;
}

.nomination-cta-eyebrow > span {
    position: relative;
    width: 40px;
    height: 1px;
    background: #d8aa4e;
}

.nomination-cta-eyebrow > span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;

    width: 5px;
    height: 5px;
    border-radius: 50%;

    background: #f2d38f;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(242, 211, 143, 0.8);
}

.nomination-cta-content h2 {
    margin: 0;

    color: #ffffff;
    font-size: clamp(48px, 5vw, 78px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2.8px;
}

.nomination-cta-content h2 span {
    display: block;
    margin-top: 7px;

    color: transparent;

    background: linear-gradient(
        105deg,
        #bd822b,
        #f3d99b 50%,
        #bd822b
    );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nomination-cta-content > p {
    max-width: 680px;
    margin: 24px 0 0;

    color: #a0afbc;
    font-size: 16px;
    line-height: 1.8;
}

/* Benefits */

.nomination-cta-benefits {
    margin-top: 33px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.nomination-cta-benefit {
    min-height: 45px;
    padding: 9px 14px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 30px;

    color: #acb9c4;
    background: rgba(255, 255, 255, 0.045);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.4px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nomination-cta-benefit i {
    color: #47cbc5;
    font-size: 12px;
}

/* Buttons */

.nomination-cta-buttons {
    margin-top: 34px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.nomination-main-btn,
.nomination-category-btn {
    min-height: 53px;
    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    border-radius: 7px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.nomination-main-btn {
    color: #06111e;

    background: linear-gradient(
        120deg,
        #bf852d,
        #f3d99b,
        #bf852d
    );

    box-shadow: 0 16px 42px rgba(216, 170, 78, 0.22);
}

.nomination-main-btn:hover {
    box-shadow: 0 21px 52px rgba(216, 170, 78, 0.32);
    transform: translateY(-3px);
}

.nomination-category-btn {
    border: 1px solid rgba(255, 255, 255, 0.18);

    color: #ffffff;
    background: rgba(255, 255, 255, 0.045);
}

.nomination-category-btn:hover {
    color: #f2d38f;
    border-color: rgba(242, 211, 143, 0.45);
    background: rgba(216, 170, 78, 0.07);
    transform: translateY(-3px);
}

.nomination-main-btn i,
.nomination-category-btn i {
    transition: transform 0.3s ease;
}

.nomination-main-btn:hover i {
    transform: translate(3px, -3px);
}

.nomination-category-btn:hover i {
    transform: translateY(-4px);
}

/* =====================================================
   RECOGNITION CARD
===================================================== */

.nomination-recognition-card {
    position: relative;
    padding: 29px;

    border: 1px solid rgba(242, 211, 143, 0.29);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 44, 68, 0.9),
            rgba(5, 19, 34, 0.84)
        );

    box-shadow:
        0 38px 95px rgba(0, 0, 0, 0.43),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    overflow: hidden;
}

.nomination-recognition-card::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;

    width: 320px;
    height: 320px;
    border-radius: 50%;

    background: rgba(0, 166, 166, 0.11);
    filter: blur(65px);
}

.recognition-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.recognition-card-top span {
    color: #47cbc5;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.recognition-card-top > i {
    color: rgba(242, 211, 143, 0.75);
    font-size: 18px;
}

/* Trophy Visual */

.recognition-trophy {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 29px auto;

    display: flex;
    align-items: center;
    justify-content: center;
}

.recognition-trophy > i {
    position: relative;
    z-index: 4;

    color: #f2d38f;
    font-size: 62px;

    filter: drop-shadow(0 12px 25px rgba(216, 170, 78, 0.28));
    animation: recognitionTrophyFloat 4s ease-in-out infinite;
}

@keyframes recognitionTrophyFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.trophy-ring {
    position: absolute;
    border-radius: 50%;
}

.trophy-ring-one {
    inset: 10px;
    border: 1px solid rgba(242, 211, 143, 0.27);
    animation: trophyRingRotate 12s linear infinite;
}

.trophy-ring-one::before,
.trophy-ring-one::after {
    content: "";
    position: absolute;

    width: 7px;
    height: 7px;
    border-radius: 50%;

    background: #f2d38f;
    box-shadow: 0 0 12px rgba(242, 211, 143, 0.8);
}

.trophy-ring-one::before {
    top: -4px;
    left: 50%;
}

.trophy-ring-one::after {
    right: -4px;
    top: 50%;
}

.trophy-ring-two {
    inset: 30px;

    border: 1px dashed rgba(0, 166, 166, 0.36);
    animation: trophyRingRotateReverse 9s linear infinite;
}

@keyframes trophyRingRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes trophyRingRotateReverse {
    to {
        transform: rotate(-360deg);
    }
}

.nomination-recognition-card h3 {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.nomination-recognition-card > p {
    position: relative;
    z-index: 2;

    margin: 12px 0 0;

    color: #8294a5;
    font-size: 10px;
    line-height: 1.7;
    text-align: center;
}

/* Card Details */

.recognition-details {
    position: relative;
    z-index: 2;

    margin-top: 22px;
    padding: 17px 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.recognition-details > div {
    padding: 0 15px;

    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;

    text-align: center;
}

.recognition-details > div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.recognition-details span {
    color: #47cbc5;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.recognition-details strong {
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
}

/* Card Button */

.recognition-card-btn {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 49px;
    margin-top: 20px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    border: 1px solid rgba(242, 211, 143, 0.29);
    border-radius: 7px;

    color: #f2d38f;
    background: rgba(216, 170, 78, 0.07);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.recognition-card-btn:hover {
    color: #071421;
    border-color: #f2d38f;
    background: #f2d38f;
    transform: translateY(-3px);
}

.recognition-card-btn i {
    transition: transform 0.3s ease;
}

.recognition-card-btn:hover i {
    transform: translateX(5px);
}

.recognition-secure {
    position: relative;
    z-index: 2;

    margin-top: 13px;

    color: #6f8395;
    font-size: 8px;
    text-align: center;
}

.recognition-secure i {
    margin-right: 6px;
    color: #47cbc5;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .dubai-nomination-cta {
        padding: 105px 5%;
    }

    .nomination-cta-container {
        grid-template-columns: 1fr 370px;
        gap: 50px;
    }
}

@media (max-width: 850px) {

    .dubai-nomination-cta {
        padding: 90px 5%;
    }

    .nomination-cta-container {
        grid-template-columns: 1fr;
    }

    .nomination-recognition-card {
        width: 100%;
        max-width: 550px;
    }
}

@media (max-width: 600px) {

    .dubai-nomination-cta {
        padding: 75px 20px;
    }

    .nomination-cta-bg {
        background-position: 65% center;
    }

    .nomination-cta-pattern {
        background-size: 48px 48px;
    }

    .nomination-cta-eyebrow {
        align-items: flex-start;
        font-size: 8px;
        letter-spacing: 1.6px;
    }

    .nomination-cta-eyebrow > span {
        flex: 0 0 28px;
        width: 28px;
        margin-top: 6px;
    }

    .nomination-cta-content h2 {
        font-size: clamp(38px, 10vw, 50px);
        letter-spacing: -1.5px;
    }

    .nomination-cta-content > p {
        font-size: 14px;
    }

    .nomination-cta-benefits {
        align-items: stretch;
        flex-direction: column;
    }

    .nomination-cta-benefit {
        width: 100%;
        border-radius: 9px;
    }

    .nomination-cta-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .nomination-main-btn,
    .nomination-category-btn {
        width: 100%;
    }

    .nomination-recognition-card {
        padding: 24px 19px;
    }

    .recognition-trophy {
        width: 140px;
        height: 140px;
    }

    .recognition-trophy > i {
        font-size: 54px;
    }

    .nomination-recognition-card h3 {
        font-size: 19px;
    }
}

@media (max-width: 380px) {

    .dubai-nomination-cta {
        padding-right: 15px;
        padding-left: 15px;
    }

    .recognition-details {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .recognition-details > div + div {
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.09);
        border-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {

    .recognition-trophy > i,
    .trophy-ring {
        animation: none;
    }
}
.nomination-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -4;

    background:
        linear-gradient(
            90deg,
            rgba(3, 11, 23, 0.68) 0%,
            rgba(4, 16, 31, 0.40) 48%,
            rgba(3, 11, 23, 0.18) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 11, 23, 0.15) 0%,
            rgba(3, 11, 23, 0.12) 55%,
            rgba(3, 11, 23, 0.65) 100%
        );
}
.nomination-cta-bg {
    position: absolute;
    inset: 0;
    z-index: -5;

    background-image: url("../images/dubai-nomination-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter:
        brightness(1.28)
        saturate(1.12)
        contrast(1.01);

    transform: scale(1.04);
}
/* =====================================================
   IBS DUBAI 2026 – PREMIUM CORPORATE FOOTER
===================================================== */

.ibs-dubai-footer {
    position: relative;
    padding: 0 6%;
    overflow: hidden;
    isolation: isolate;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(15, 55, 84, 0.55),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #061426 0%,
            #030b17 55%,
            #020711 100%
        );
}

/* =====================================================
   BACKGROUND EFFECTS
===================================================== */

.footer-pattern {
    position: absolute;
    inset: 0;
    z-index: -3;

    opacity: 0.055;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to bottom,
        #000,
        transparent 85%
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        #000,
        transparent 85%
    );
}

.footer-glow {
    position: absolute;
    z-index: -2;

    width: 400px;
    height: 400px;
    border-radius: 50%;

    filter: blur(125px);
    pointer-events: none;
}

.footer-glow-left {
    left: -230px;
    bottom: 5%;
    background: rgba(0, 166, 166, 0.09);
}

.footer-glow-right {
    top: 10%;
    right: -230px;
    background: rgba(216, 170, 78, 0.08);
}

/* =====================================================
   TOP CTA
===================================================== */

.footer-top-cta {
    position: relative;

    width: 100%;
    max-width: 1380px;
    min-height: 165px;
    margin: 0 auto;
    padding: 32px 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    border: 1px solid rgba(242, 211, 143, 0.24);
    border-top: 0;
    border-radius: 0 0 20px 20px;

    background:
        linear-gradient(
            110deg,
            rgba(17, 47, 71, 0.94),
            rgba(8, 27, 45, 0.9)
        );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    overflow: hidden;
}

.footer-top-cta::before {
    content: "";
    position: absolute;
    top: -170px;
    right: 15%;

    width: 350px;
    height: 350px;
    border-radius: 50%;

    background: rgba(216, 170, 78, 0.12);
    filter: blur(75px);
    pointer-events: none;
}

.footer-top-cta::after {
    content: "DUBAI 2026";
    position: absolute;
    right: 26%;
    bottom: -25px;

    color: transparent;
    -webkit-text-stroke: 1px rgba(242, 211, 143, 0.07);

    font-size: 80px;
    font-weight: 800;
    letter-spacing: -4px;

    pointer-events: none;
}

.footer-top-cta-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-cta-icon {
    flex: 0 0 65px;
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 166, 166, 0.3);
    border-radius: 17px;

    color: #47cbc5;
    background: rgba(0, 166, 166, 0.08);

    box-shadow: 0 0 0 8px rgba(0, 166, 166, 0.025);

    font-size: 23px;
}

.footer-top-cta-content > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-top-cta-content span {
    color: #47cbc5;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.footer-top-cta-content h2 {
    max-width: 750px;
    margin: 0;

    color: #ffffff;
    font-size: clamp(23px, 2.5vw, 37px);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.8px;
}

.footer-top-cta-content h2 strong {
    color: #f2d38f;
    font-weight: 600;
}

/* Nominate Button */

.footer-nominate-btn {
    position: relative;
    z-index: 2;

    flex: 0 0 auto;
    min-height: 52px;
    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    border-radius: 7px;

    color: #06111e;

    background: linear-gradient(
        120deg,
        #bf852d,
        #f3d99b,
        #bf852d
    );

    box-shadow: 0 16px 42px rgba(216, 170, 78, 0.22);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.footer-nominate-btn:hover {
    box-shadow: 0 21px 52px rgba(216, 170, 78, 0.32);
    transform: translateY(-3px);
}

.footer-nominate-btn i {
    transition: transform 0.3s ease;
}

.footer-nominate-btn:hover i {
    transform: translate(3px, -3px);
}

/* =====================================================
   MAIN FOOTER
===================================================== */

.footer-main {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 85px 0 65px;

    display: grid;
    grid-template-columns:
        minmax(260px, 1.25fr)
        minmax(145px, 0.65fr)
        minmax(250px, 1fr)
        minmax(260px, 1fr);

    align-items: flex-start;
    gap: clamp(40px, 5vw, 80px);
}

/* =====================================================
   BRAND COLUMN
===================================================== */

.footer-brand {
    max-width: 330px;
}

.footer-logo {
    position: relative;
    width: fit-content;
    margin-bottom: 24px;

    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo::before {
    content: "";
    position: absolute;
    inset: -13px -16px;

    border: 1px solid rgba(242, 211, 143, 0.16);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.025);

    opacity: 0;
    transform: scale(0.9);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.footer-logo:hover::before {
    opacity: 1;
    transform: scale(1);
}

.footer-logo img {
    position: relative;
    z-index: 2;

    width: auto;
    max-width: 190px;
    max-height: 75px;
    display: block;

    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(216, 170, 78, 0.14));

    transition: transform 0.4s ease;
}

.footer-logo:hover img {
    transform: translateY(-3px);
}

.footer-brand > p {
    margin: 0;

    color: #7f92a4;
    font-size: 11px;
    line-height: 1.8;
}

/* =====================================================
   SOCIAL ICONS
===================================================== */

.footer-socials {
    margin-top: 25px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.footer-socials a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;

    color: #899baa;
    background: rgba(255, 255, 255, 0.025);

    text-decoration: none;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.footer-socials a:hover {
    color: #071421;
    border-color: #f2d38f;
    background: #f2d38f;

    box-shadow: 0 12px 28px rgba(216, 170, 78, 0.18);
    transform: translateY(-4px);
}

.footer-socials i {
    font-size: 12px;
}

/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-column h3 {
    position: relative;
    margin: 0 0 26px;
    padding-bottom: 13px;

    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-column h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 38px;
    height: 1px;

    background: linear-gradient(
        90deg,
        #d8aa4e,
        transparent
    );
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;

    width: 5px;
    height: 5px;
    border-radius: 50%;

    background: #f2d38f;
    box-shadow: 0 0 8px rgba(242, 211, 143, 0.7);
}

/* Quick Links */

.footer-column ul {
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    gap: 14px;

    list-style: none;
}

.footer-column li {
    margin: 0;
}

.footer-column li a {
    position: relative;
    padding-left: 14px;

    color: #7f92a4;
    font-size: 10px;
    text-decoration: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.footer-column li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;

    width: 5px;
    height: 1px;

    background: #47cbc5;
    transform: translateY(-50%);

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.footer-column li a:hover {
    padding-left: 20px;
    color: #f2d38f;
}

.footer-column li a:hover::before {
    width: 11px;
    background: #f2d38f;
}

/* =====================================================
   EVENT INFORMATION
===================================================== */

.footer-event-info {
    display: flex;
    flex-direction: column;
}

.footer-info-item {
    margin-bottom: 17px;

    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: flex-start;
    gap: 12px;
}

.footer-info-item > i {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 166, 166, 0.23);
    border-radius: 10px;

    color: #47cbc5;
    background: rgba(0, 166, 166, 0.06);

    font-size: 12px;
}

.footer-info-item > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-info-item span {
    color: #617689;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-info-item strong {
    color: #b3c0ca;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.6;
}

/* =====================================================
   CONTACT & NEWSLETTER
===================================================== */

.footer-contact > p {
    margin: 0 0 19px;

    color: #7f92a4;
    font-size: 10px;
    line-height: 1.75;
}

.footer-newsletter {
    margin: 0;
}

.newsletter-input {
    position: relative;
}

.newsletter-input > i {
    position: absolute;
    top: 50%;
    left: 14px;

    color: #47cbc5;
    font-size: 11px;

    transform: translateY(-50%);
    pointer-events: none;
}

.newsletter-input input {
    width: 100%;
    height: 49px;
    padding: 0 52px 0 39px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    outline: none;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.035);

    font-family: inherit;
    font-size: 10px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.newsletter-input input::placeholder {
    color: #5f7487;
}

.newsletter-input input:focus {
    border-color: rgba(242, 211, 143, 0.43);
    background: rgba(216, 170, 78, 0.04);

    box-shadow: 0 0 0 3px rgba(216, 170, 78, 0.045);
}

.newsletter-input button {
    position: absolute;
    top: 5px;
    right: 5px;

    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 6px;

    color: #071421;
    background: linear-gradient(
        135deg,
        #bf852d,
        #f2d38f
    );

    cursor: pointer;

    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.newsletter-input button:hover {
    box-shadow: 0 10px 25px rgba(216, 170, 78, 0.22);
    transform: translateX(2px);
}

.footer-email {
    margin-top: 18px;

    display: flex;
    align-items: center;
    gap: 9px;

    color: #a7b5c0;
    font-size: 10px;
    text-decoration: none;

    transition: color 0.3s ease;
}

.footer-email i {
    color: #47cbc5;
}

.footer-email:hover {
    color: #f2d38f;
}

.footer-contact-link {
    width: fit-content;
    margin-top: 17px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #f2d38f;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-contact-link i {
    transition: transform 0.3s ease;
}

.footer-contact-link:hover i {
    transform: translateX(5px);
}

/* =====================================================
   LUXURY DIVIDER
===================================================== */

.footer-luxury-divider {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.footer-luxury-divider > span {
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(242, 211, 143, 0.24)
    );
}

.footer-luxury-divider > span:last-child {
    background: linear-gradient(
        90deg,
        rgba(242, 211, 143, 0.24),
        transparent
    );
}

.footer-divider-icon {
    width: 33px;
    height: 33px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(242, 211, 143, 0.21);
    border-radius: 50%;

    color: #d8aa4e;
    background: rgba(216, 170, 78, 0.05);

    font-size: 10px;
}

/* =====================================================
   FOOTER BOTTOM
===================================================== */

.ibs-dubai-footer .footer-bottom {
    width: 100%;
    max-width: 1380px;
    min-height: 90px;
    margin: 0 auto;
    padding: 25px 0;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.footer-copyright p {
    margin: 0;

    color: #617487;
    font-size: 8px;
    line-height: 1.6;
}

.ibs-dubai-footer .footer-policy {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 17px;
}

.ibs-dubai-footer .footer-policy a {
    color: #687c8f;
    font-size: 8px;
    text-decoration: none;

    transition: color 0.3s ease;
}

.ibs-dubai-footer .footer-policy a:hover {
    color: #f2d38f;
}

/* Footer Credit */

.footer-credit {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 4px;

    text-align: right;
}

.footer-credit span {
    color: #52677a;
    font-size: 7px;
    letter-spacing: 0.4px;
}

.footer-credit a {
    position: relative;

    color: #d8aa4e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;

    transition:
        color 0.3s ease,
        text-shadow 0.3s ease;
}

.footer-credit a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;

    width: 100%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #d8aa4e,
        transparent
    );

    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.footer-credit a:hover {
    color: #f2d38f;
    text-shadow: 0 0 14px rgba(242, 211, 143, 0.25);
}

.footer-credit a:hover::after {
    transform: scaleX(1);
}

/* =====================================================
   RESPONSIVE – TABLET
===================================================== */

@media (max-width: 1050px) {

    .ibs-dubai-footer {
        padding-right: 5%;
        padding-left: 5%;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        max-width: 420px;
    }

    .ibs-dubai-footer .footer-bottom {
        grid-template-columns: 1fr 1fr;
    }

    .footer-copyright {
        grid-column: 1;
    }

    .ibs-dubai-footer .footer-policy {
        grid-column: 2;
        justify-content: flex-end;
    }

    .footer-credit {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
}

/* =====================================================
   RESPONSIVE – MOBILE
===================================================== */

@media (max-width: 700px) {

    .ibs-dubai-footer {
        padding-right: 20px;
        padding-left: 20px;
    }

    .footer-top-cta {
        padding: 27px 22px;

        align-items: flex-start;
        flex-direction: column;
    }

    .footer-top-cta::after {
        right: -20px;
        bottom: -15px;
        font-size: 57px;
    }

    .footer-top-cta-content {
        align-items: flex-start;
    }

    .footer-cta-icon {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .footer-top-cta-content h2 {
        font-size: 22px;
    }

    .footer-nominate-btn {
        width: 100%;
    }

    .footer-main {
        padding: 70px 0 50px;
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-brand {
        max-width: none;
    }

    .ibs-dubai-footer .footer-bottom {
        padding: 30px 0;

        grid-template-columns: 1fr;
        gap: 20px;

        text-align: center;
    }

    .footer-copyright,
    .ibs-dubai-footer .footer-policy,
    .footer-credit {
        grid-column: auto;
    }

    .ibs-dubai-footer .footer-policy {
        justify-content: center;
    }

    .footer-credit {
        align-items: center;
        text-align: center;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .ibs-dubai-footer {
        padding-right: 15px;
        padding-left: 15px;
    }

    .footer-top-cta {
        padding-right: 17px;
        padding-left: 17px;
    }

    .footer-top-cta-content {
        flex-direction: column;
    }

    .footer-socials a {
        width: 36px;
        height: 36px;
    }

    .ibs-dubai-footer .footer-policy {
        gap: 11px;
    }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .footer-logo img,
    .footer-socials a,
    .footer-nominate-btn,
    .footer-contact-link i,
    .newsletter-input button {
        transition: none;
    }
}
/* =====================================================
   FOOTER FONT SIZE & READABILITY FIX
===================================================== */

/* Top CTA */

.footer-top-cta-content span {
    font-size: 12px;
}

.footer-top-cta-content h2 {
    font-size: clamp(26px, 2.7vw, 40px);
}

.footer-nominate-btn {
    font-size: 12px;
}

/* Brand Description */

.footer-brand > p {
    font-size: 14px;
    line-height: 1.8;
}

/* Column Headings */

.footer-column h3 {
    font-size: 17px;
}

/* Quick Links */

.footer-column li a {
    font-size: 13px;
    line-height: 1.5;
}

/* Event Information */

.footer-info-item span {
    font-size: 10px;
}

.footer-info-item strong {
    font-size: 13px;
    line-height: 1.6;
}

/* Newsletter */

.footer-contact > p {
    font-size: 13px;
    line-height: 1.7;
}

.newsletter-input input {
    font-size: 13px;
}

.footer-email {
    font-size: 13px;
}

.footer-contact-link {
    font-size: 11px;
}

/* Footer Bottom */

.footer-copyright p {
    font-size: 11px;
}

.ibs-dubai-footer .footer-policy a {
    font-size: 11px;
}

.footer-credit span {
    font-size: 10px;
}

.footer-credit a {
    font-size: 13px;
}

/* Mobile */

@media (max-width: 700px) {

    .footer-top-cta-content span {
        font-size: 10px;
    }

    .footer-top-cta-content h2 {
        font-size: 24px;
    }

    .footer-brand > p {
        font-size: 13px;
    }

    .footer-column h3 {
        font-size: 16px;
    }

    .footer-column li a {
        font-size: 13px;
    }

    .footer-info-item span {
        font-size: 9px;
    }

    .footer-info-item strong {
        font-size: 12px;
    }

    .footer-contact > p {
        font-size: 12px;
    }

    .footer-copyright p {
        font-size: 10px;
        line-height: 1.7;
    }

    .ibs-dubai-footer .footer-policy a {
        font-size: 10px;
    }

    .footer-credit span {
        font-size: 9px;
    }

    .footer-credit a {
        font-size: 12px;
    }
}
/* =====================================================
   HERO BACKGROUND BRIGHTNESS FIX
===================================================== */

.dubai-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -5;

    background-image: url("../images/dubai-hero-premium.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter:
        brightness(1.22)
        saturate(1.1)
        contrast(1.02);

    transform: scale(1.08);
    animation: dubaiHeroZoom 18s ease-in-out infinite alternate;
}

/* Lighter and balanced overlay */

.dubai-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -4;

    background:
        linear-gradient(
            90deg,
            rgba(2, 8, 18, 0.78) 0%,
            rgba(3, 13, 27, 0.62) 38%,
            rgba(3, 15, 29, 0.25) 68%,
            rgba(2, 8, 16, 0.20) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2, 8, 17, 0.15) 0%,
            rgba(2, 8, 17, 0.05) 50%,
            rgba(2, 8, 17, 0.72) 100%
        );
}
@media (max-width: 900px) {

    .dubai-hero-bg {
        background-position: 62% center;

        filter:
            brightness(1.18)
            saturate(1.08)
            contrast(1.01);
    }

    .dubai-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2, 8, 18, 0.30) 0%,
                rgba(3, 13, 27, 0.55) 38%,
                rgba(2, 8, 17, 0.90) 100%
            ),
            linear-gradient(
                90deg,
                rgba(2, 8, 18, 0.64),
                rgba(2, 8, 18, 0.14)
            );
    }
}
/* =====================================================
   FOOTER CONTACT DETAILS
===================================================== */

.footer-contact-intro {
    margin: 0 0 22px;

    color: #899aaa;
    font-size: 13px;
    line-height: 1.7;
}

.footer-contact-group {
    margin-bottom: 20px;
    padding-bottom: 18px;

    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-heading {
    margin-bottom: 4px;

    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-contact-heading i {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 166, 166, 0.25);
    border-radius: 8px;

    color: #47cbc5;
    background: rgba(0, 166, 166, 0.07);

    font-size: 10px;
}

.footer-contact-heading > span {
    color: #f2d38f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-contact-group > a {
    color: #aab7c2;
    font-size: 12px;
    line-height: 1.5;
    text-decoration: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.footer-contact-group > a:hover {
    padding-left: 5px;
    color: #f2d38f;
}

.footer-contact-group > a strong {
    color: #d3dce4;
    font-weight: 600;
}

.footer-office-location {
    margin: 0;

    color: #aab7c2;
    font-size: 12px;
}

/* =====================================================
   GLOBAL PRESENCE
===================================================== */

.footer-global-presence {
    padding: 15px;

    border: 1px solid rgba(242, 211, 143, 0.16);
    border-radius: 10px;

    background: rgba(216, 170, 78, 0.045);
}

.presence-title {
    display: block;
    margin-bottom: 12px;

    color: #f2d38f;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.presence-countries {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.presence-countries > span {
    min-height: 32px;
    padding: 6px 10px;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 30px;

    color: #b2bec8;
    background: rgba(255, 255, 255, 0.035);

    font-size: 10px;
    font-weight: 600;
}

.country-flag {
    font-size: 16px;
    line-height: 1;
}

/* Mobile */

@media (max-width: 700px) {

    .footer-contact-group > a {
        font-size: 13px;
    }

    .footer-office-location {
        font-size: 13px;
    }

    .presence-countries > span {
        font-size: 11px;
    }
}
/* =====================================================
   IBS FLOATING ACTION DOCK
===================================================== */

.ibs-floating-dock {
    position: fixed;
    z-index: 9990;
    right: 22px;
    top: 50%;

    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 11px;

    transform: translateY(-50%);
}

.ibs-dock-button {
    position: relative;
    width: 50px;
    height: 50px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(242, 211, 143, 0.27);
    border-radius: 14px;

    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            rgba(12, 39, 62, 0.96),
            rgba(4, 17, 32, 0.96)
        );

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    cursor: pointer;
    text-decoration: none;

    transition:
        width 0.35s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;

    overflow: hidden;
}

.ibs-dock-button > i {
    flex: 0 0 48px;
    font-size: 17px;
    text-align: center;
}

.ibs-dock-button > span:not(.chatbot-online-dot) {
    width: 0;
    opacity: 0;
    white-space: nowrap;

    color: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4px;

    transition:
        width 0.35s ease,
        opacity 0.25s ease;
}

.ibs-dock-button:hover {
    width: 145px;
    justify-content: flex-start;

    border-color: rgba(242, 211, 143, 0.6);
    transform: translateX(-3px);
}

.ibs-dock-button:hover > span:not(.chatbot-online-dot) {
    width: auto;
    opacity: 1;
}

/* WhatsApp */

.ibs-whatsapp-button {
    border-color: rgba(37, 211, 102, 0.35);
    color: #4be484;
}

.ibs-whatsapp-button:hover {
    color: #ffffff;
    border-color: #25d366;

    background: linear-gradient(
        135deg,
        #128c4a,
        #25d366
    );

    box-shadow: 0 15px 38px rgba(37, 211, 102, 0.25);
}

/* Chatbot */

.ibs-chatbot-button {
    color: #f2d38f;
}

.ibs-chatbot-button:hover,
.ibs-chatbot-button.active {
    color: #071421;
    border-color: #f2d38f;

    background: linear-gradient(
        135deg,
        #bf852d,
        #f2d38f
    );

    box-shadow: 0 15px 38px rgba(216, 170, 78, 0.25);
}

.chatbot-online-dot {
    position: absolute;
    top: 7px;
    right: 7px;

    width: 7px;
    height: 7px;
    border: 1px solid #071421;
    border-radius: 50%;

    background: #38df80;
    box-shadow: 0 0 8px rgba(56, 223, 128, 0.8);
}

/* Scroll Top */

.ibs-scroll-top {
    color: #47cbc5;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(15px);
}

.ibs-scroll-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}

.ibs-scroll-top.show:hover {
    color: #071421;
    border-color: #47cbc5;
    background: #47cbc5;
}

/* =====================================================
   CHATBOT WINDOW
===================================================== */

.ibs-chatbot-window {
    position: fixed;
    z-index: 9995;
    right: 84px;
    bottom: 25px;

    width: min(370px, calc(100vw - 30px));
    height: min(570px, calc(100vh - 50px));

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(242, 211, 143, 0.28);
    border-radius: 19px;

    background:
        linear-gradient(
            160deg,
            rgba(9, 34, 56, 0.98),
            rgba(3, 14, 27, 0.99)
        );

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.56),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
        translateY(25px)
        scale(0.94);

    transform-origin: bottom right;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);

    overflow: hidden;
}

.ibs-chatbot-window.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translateY(0)
        scale(1);
}

/* Chatbot Header */

.ibs-chatbot-header {
    min-height: 76px;
    padding: 15px 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);

    background:
        linear-gradient(
            90deg,
            rgba(216, 170, 78, 0.1),
            rgba(0, 166, 166, 0.07)
        );
}

.chatbot-header-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    position: relative;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(242, 211, 143, 0.34);
    border-radius: 13px;

    color: #f2d38f;
    background: rgba(216, 170, 78, 0.09);

    font-size: 17px;
}

.chatbot-avatar > span {
    position: absolute;
    right: -2px;
    bottom: -2px;

    width: 10px;
    height: 10px;

    border: 2px solid #07182b;
    border-radius: 50%;

    background: #38df80;
}

.chatbot-header-profile > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chatbot-header-profile strong {
    color: #ffffff;
    font-size: 13px;
}

.chatbot-header-profile > div:last-child > span {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #8295a6;
    font-size: 9px;
}

.chatbot-header-profile > div:last-child > span i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #38df80;
}

.chatbot-close {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;

    color: #8799aa;
    background: rgba(255, 255, 255, 0.035);

    cursor: pointer;
    transition: 0.3s ease;
}

.chatbot-close:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.09);
}

/* Chat Messages */

.ibs-chatbot-messages {
    flex: 1;
    padding: 18px;

    display: flex;
    flex-direction: column;
    gap: 14px;

    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(242, 211, 143, 0.25) transparent;
}

.chatbot-message {
    display: flex;
    align-items: flex-end;
    gap: 9px;
}

.user-message {
    justify-content: flex-end;
}

.message-avatar {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 166, 166, 0.25);
    border-radius: 9px;

    color: #47cbc5;
    background: rgba(0, 166, 166, 0.07);

    font-size: 11px;
}

.message-bubble {
    max-width: 82%;
    padding: 11px 13px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 13px 13px 13px 3px;

    background: rgba(255, 255, 255, 0.045);
}

.user-message .message-bubble {
    color: #071421;
    border: 0;
    border-radius: 13px 13px 3px 13px;

    background: linear-gradient(
        120deg,
        #bf852d,
        #f2d38f
    );
}

.message-bubble p {
    margin: 0;

    color: #c0cbd4;
    font-size: 11px;
    line-height: 1.65;
}

.user-message .message-bubble p {
    color: #071421;
}

.message-bubble > span {
    display: block;
    margin-top: 6px;

    color: #607588;
    font-size: 7px;
}

/* Quick Options */

.chatbot-quick-options {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.chatbot-quick-options button {
    padding: 8px 11px;

    border: 1px solid rgba(242, 211, 143, 0.22);
    border-radius: 30px;

    color: #d5b96f;
    background: rgba(216, 170, 78, 0.055);

    font-family: inherit;
    font-size: 8px;
    font-weight: 700;

    cursor: pointer;
    transition: 0.3s ease;
}

.chatbot-quick-options button:hover {
    color: #071421;
    border-color: #f2d38f;
    background: #f2d38f;
}

/* Chat Form */

.ibs-chatbot-form {
    padding: 13px;

    display: grid;
    grid-template-columns: 1fr 43px;
    gap: 8px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.ibs-chatbot-form input {
    width: 100%;
    height: 43px;
    padding: 0 13px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 9px;
    outline: none;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);

    font-family: inherit;
    font-size: 11px;
}

.ibs-chatbot-form input::placeholder {
    color: #62778a;
}

.ibs-chatbot-form input:focus {
    border-color: rgba(242, 211, 143, 0.45);
}

.ibs-chatbot-form button {
    border: 0;
    border-radius: 9px;

    color: #071421;
    background: linear-gradient(
        135deg,
        #bf852d,
        #f2d38f
    );

    cursor: pointer;
}

.chatbot-powered {
    padding: 0 13px 10px;

    color: #506579;
    font-size: 7px;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Mobile */

@media (max-width: 600px) {

    .ibs-floating-dock {
        top: auto;
        right: 14px;
        bottom: 20px;

        transform: none;
    }

    .ibs-dock-button {
        width: 47px;
        height: 47px;
        border-radius: 13px;
    }

    .ibs-dock-button:hover {
        width: 47px;
        transform: translateY(-2px);
    }

    .ibs-dock-button:hover > span:not(.chatbot-online-dot) {
        width: 0;
        opacity: 0;
    }

    .ibs-chatbot-window {
        right: 15px;
        bottom: 80px;

        width: calc(100vw - 30px);
        height: min(540px, calc(100vh - 105px));
    }
}