/* =========================================================
   IBS LONDON 2027 — PREMIUM BLUE & GOLD HERO
   Replace the old London Hero CSS with this complete code
========================================================= */

.london-hero,
.london-hero * {
    box-sizing: border-box;
}

.london-hero {
    position: relative;
    width: 100%;
    min-height: 780px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background: #020b18;
    isolation: isolate;
}

/* ---------------- BACKGROUND IMAGE ---------------- */

.london-hero-image {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* ---------------- BACKGROUND OVERLAYS ---------------- */

.london-hero-overlay,
.london-hero-gradient,
.london-hero-pattern,
.london-hero-light {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.london-hero-overlay {
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(1, 9, 22, 0.58) 0%,
            rgba(2, 18, 38, 0.44) 38%,
            rgba(3, 24, 48, 0.22) 68%,
            rgba(1, 10, 22, 0.88) 100%
        );
}

.london-hero-gradient {
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(1, 8, 18, 0.58) 0%,
            transparent 25%,
            transparent 62%,
            rgba(1, 8, 18, 0.98) 100%
        );
}

.london-hero-pattern {
    z-index: 1;
    opacity: 0.16;
    background-image:
        linear-gradient(
            rgba(218, 178, 91, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(218, 178, 91, 0.12) 1px,
            transparent 1px
        );
    background-size: 85px 85px;
}

.london-hero-light {
    z-index: 1;
    inset: auto;
    top: 8%;
    left: 18%;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    opacity: 0.18;
    background: #d9ad51;
    filter: blur(130px);
}

/* ---------------- DECORATIVE LINES ---------------- */

.london-decoration {
    position: absolute;
    z-index: 2;
    width: 1px;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(224, 184, 95, 0.72),
            transparent
        );
}

.london-decoration::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 8px;
    height: 8px;
    transform: translateX(-50%) rotate(45deg);
    border: 1px solid #e0b85f;
    background: #06172d;
}

.london-hero .decoration-left {
    top: 15%;
    left: 3%;
    height: 60%;
}

.london-hero .decoration-left::before {
    top: 0;
}

.london-hero .decoration-right {
    top: 20%;
    right: 3%;
    height: 50%;
}

.london-hero .decoration-right::before {
    bottom: 0;
}

/* ---------------- MAIN CONTAINER ---------------- */

.london-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 75px 30px 115px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
    align-items: center;
    gap: clamp(45px, 6vw, 90px);
}

.london-hero-content {
    width: 100%;
    max-width: 820px;
}

/* ---------------- BREADCRUMB ---------------- */

.london-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 20px;
    color: #a7b6c5;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.london-breadcrumb a {
    color: #a7b6c5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.london-breadcrumb a:hover,
.london-breadcrumb span {
    color: #f2d58c;
}

.london-breadcrumb i {
    color: #d8aa4e;
    font-size: 8px;
}

/* ---------------- EVENT BADGE ---------------- */

.london-event-badge {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 20px;
    padding: 10px 17px;
    color: #f4d991;
    background: rgba(216, 170, 78, 0.09);
    border: 1px solid rgba(224, 184, 95, 0.38);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.badge-live-dot {
    position: relative;
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #42e789;
    box-shadow: 0 0 12px rgba(66, 231, 137, 0.9);
}

.badge-live-dot::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(66, 231, 137, 0.55);
    border-radius: 50%;
    animation: londonPulse 2s infinite;
}

@keyframes londonPulse {
    0% {
        opacity: 0.8;
        transform: scale(0.5);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.7);
    }
}

/* ---------------- MAIN HEADING ---------------- */

.london-hero-title {
    max-width: 850px;
    margin: 0 0 22px;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(46px, 5vw, 76px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-shadow: 0 10px 32px rgba(0, 0, 0, 0.48);
}

.london-hero-title span {
    display: block;
    margin-top: 8px;
    color: #e2b85a;
    background:
        linear-gradient(
            90deg,
            #fff1bf 0%,
            #e2b85a 48%,
            #b57b27 100%
        );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------------- DESCRIPTION ---------------- */

.london-hero-description {
    max-width: 720px;
    margin: 0 0 29px;
    color: #c4d0dc;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

/* ---------------- EVENT INFORMATION ---------------- */

.london-event-information {
    width: fit-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 30px;
    padding: 15px 19px;
    background:
        linear-gradient(
            90deg,
            rgba(12, 52, 92, 0.78),
            rgba(4, 25, 48, 0.62)
        );
    border: 1px solid rgba(224, 184, 95, 0.28);
    border-radius: 6px;
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.05),
        0 16px 35px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.london-info-item {
    display: flex;
    align-items: center;
    gap: 11px;
}

.london-info-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    color: #f2d58c;
    background: rgba(216, 170, 78, 0.09);
    border: 1px solid rgba(224, 184, 95, 0.3);
    border-radius: 50%;
    font-size: 14px;
}

.london-info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.london-info-content small {
    color: #8fa3b7;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.london-info-content strong {
    color: #f4f7fa;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.london-info-divider {
    width: 1px;
    height: 40px;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(224, 184, 95, 0.42),
            transparent
        );
}

/* ---------------- HERO BUTTONS ---------------- */

.london-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.london-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 25px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.london-btn-gold {
    color: #07162a;
    background:
        linear-gradient(
            135deg,
            #fff0bd,
            #dcae50 55%,
            #a66d20
        );
    border: 1px solid #f3d785;
    box-shadow: 0 14px 30px rgba(216, 170, 78, 0.24);
}

.london-btn-gold:hover {
    color: #07162a;
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(216, 170, 78, 0.35);
}

.london-btn-outline {
    color: #f2f5f8;
    background: rgba(5, 27, 51, 0.62);
    border: 1px solid rgba(224, 184, 95, 0.5);
    backdrop-filter: blur(8px);
}

.london-btn-outline i {
    color: #f2d58c;
}

.london-btn-outline:hover {
    color: #f2d58c;
    background: rgba(216, 170, 78, 0.12);
    transform: translateY(-3px);
}

/* ---------------- TRUST DETAILS ---------------- */

.london-trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 27px;
    margin-top: 27px;
}

.london-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.london-trust-item > i {
    color: #dcae50;
    font-size: 16px;
}

.london-trust-item span {
    display: flex;
    flex-direction: column;
}

.london-trust-item strong {
    color: #f4d991;
    font-family: "Cinzel", Georgia, serif;
    font-size: 17px;
    line-height: 1.2;
}

.london-trust-item small {
    color: #91a4b7;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* =========================================================
   RIGHT-SIDE LUXURY EVENT CARD
========================================================= */

.london-event-card {
    position: relative;
    z-index: 3;
    width: min(100%, 410px);
    justify-self: end;
    overflow: hidden;
    padding: 27px;
    background:
        linear-gradient(
            145deg,
            rgba(14, 56, 98, 0.94),
            rgba(3, 18, 36, 0.97)
        );
    border: 1px solid rgba(224, 184, 95, 0.48);
    border-radius: 9px;
    box-shadow:
        0 35px 75px rgba(0, 0, 0, 0.48),
        inset 0 1px rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.london-event-card::before {
    content: "";
    position: absolute;
    top: -110px;
    right: -95px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    opacity: 0.18;
    background: #dcae50;
    filter: blur(70px);
}

.london-card-corner {
    position: absolute;
    z-index: 4;
    width: 28px;
    height: 28px;
    pointer-events: none;
}

.london-event-card .corner-one {
    top: 10px;
    left: 10px;
    border-top: 1px solid #e2b85a;
    border-left: 1px solid #e2b85a;
}

.london-event-card .corner-two {
    top: 10px;
    right: 10px;
    border-top: 1px solid #e2b85a;
    border-right: 1px solid #e2b85a;
}

.london-event-card .corner-three {
    bottom: 10px;
    left: 10px;
    border-bottom: 1px solid #e2b85a;
    border-left: 1px solid #e2b85a;
}

.london-event-card .corner-four {
    right: 10px;
    bottom: 10px;
    border-right: 1px solid #e2b85a;
    border-bottom: 1px solid #e2b85a;
}

.london-card-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(224, 184, 95, 0.22);
}

.london-card-header span {
    color: #dcae50;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.london-card-header strong {
    color: #f4d991;
    font-family: "Cinzel", Georgia, serif;
    font-size: 21px;
}

.london-card-logo {
    position: relative;
    min-height: 105px;
    display: grid;
    place-items: center;
    margin: 7px 0;
}

.london-card-logo-glow {
    position: absolute;
    width: 120px;
    height: 70px;
    border-radius: 50%;
    opacity: 0.28;
    background: #dcae50;
    filter: blur(35px);
}

.london-card-logo img {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 145px;
    height: 95px;
    object-fit: contain;
    filter: drop-shadow(0 9px 18px rgba(0, 0, 0, 0.48));
}

.london-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.london-card-label {
    display: block;
    margin-bottom: 8px;
    color: #dcae50;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.london-card-content h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(22px, 2vw, 27px);
    font-weight: 600;
    line-height: 1.35;
}

.london-card-content h2 span {
    display: block;
    color: #f2d58c;
}

.london-card-content p {
    margin: 0;
    color: #98aabd;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.04em;
}

/* ---------------- VENUE BOX ---------------- */

.london-venue-box {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 18px;
    padding: 14px;
    background: rgba(216, 170, 78, 0.065);
    border-top: 1px solid rgba(224, 184, 95, 0.24);
    border-bottom: 1px solid rgba(224, 184, 95, 0.24);
}

.venue-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    color: #f2d58c;
    border: 1px solid rgba(224, 184, 95, 0.35);
    border-radius: 50%;
    font-size: 14px;
}

.london-venue-box div {
    display: flex;
    flex-direction: column;
}

.london-venue-box small {
    color: #8297ab;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.london-venue-box strong {
    color: #f1f5f8;
    font-family: "Cinzel", Georgia, serif;
    font-size: 14px;
}

.london-venue-box div > span {
    color: #91a4b7;
    font-size: 10px;
}

/* ---------------- CARD HIGHLIGHTS ---------------- */

.london-card-highlights {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 19px;
}

.london-card-highlights > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 0 6px;
    text-align: center;
    border-right: 1px solid rgba(224, 184, 95, 0.18);
}

.london-card-highlights > div:last-child {
    border-right: 0;
}

.london-card-highlights i {
    color: #dcae50;
    font-size: 15px;
}

.london-card-highlights span {
    display: flex;
    flex-direction: column;
}

.london-card-highlights strong {
    color: #edf3f8;
    font-size: 10px;
}

.london-card-highlights small {
    color: #8195a8;
    font-size: 8px;
}

/* ---------------- CARD BUTTON ---------------- */

.london-card-button {
    position: relative;
    z-index: 2;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 20px;
    color: #06162c;
    background:
        linear-gradient(
            135deg,
            #f5dc92,
            #bd812b
        );
    border: 1px solid #f2d58c;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.london-card-button:hover {
    color: #06162c;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(216, 170, 78, 0.3);
}

/* =========================================================
   HERO BOTTOM STRIP
========================================================= */

.london-hero-bottom {
    position: absolute;
    z-index: 5;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(2, 12, 26, 0.96),
            rgba(8, 36, 68, 0.86),
            rgba(2, 12, 26, 0.96)
        );
    border-top: 1px solid rgba(224, 184, 95, 0.2);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.london-bottom-inner {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.london-scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #9bafc2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-decoration: none;
    text-transform: uppercase;
}

.london-scroll-link:hover {
    color: #f2d58c;
}

.london-scroll-mouse {
    position: relative;
    width: 23px;
    height: 35px;
    border: 1px solid rgba(224, 184, 95, 0.7);
    border-radius: 15px;
}

.london-scroll-mouse i {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 2px;
    height: 6px;
    transform: translateX(-50%);
    border-radius: 2px;
    background: #f2d58c;
    animation: londonScroll 1.8s infinite;
}

@keyframes londonScroll {
    0% {
        opacity: 0;
        transform: translate(-50%, -2px);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 9px);
    }
}

.london-bottom-keywords {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #8ea2b5;
    font-family: "Cinzel", Georgia, serif;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.london-bottom-keywords i {
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
    background: #dcae50;
}

/* =========================================================
   TABLET RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .london-hero {
        min-height: auto;
    }

    .london-hero-container {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
        gap: 38px;
        padding-top: 65px;
        padding-bottom: 115px;
    }

    .london-event-information {
        gap: 12px;
        padding: 13px;
    }

    .london-info-content strong {
        font-size: 11px;
    }

    .london-event-card {
        padding: 23px;
    }
}

/* =========================================================
   MOBILE / SMALL TABLET
========================================================= */

@media (max-width: 900px) {
    .london-hero {
        min-height: auto;
        display: block;
    }

    .london-hero-image {
        object-position: 58% center;
    }

    .london-hero-overlay {
        background: rgba(2, 14, 29, 0.88);
    }

    .london-hero-gradient {
        background:
            linear-gradient(
                180deg,
                rgba(2, 11, 24, 0.4),
                rgba(2, 15, 31, 0.8) 50%,
                rgba(2, 10, 22, 0.99)
            );
    }

    .london-hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-top: 60px;
        padding-bottom: 115px;
    }

    .london-event-card {
        width: min(100%, 590px);
        justify-self: start;
    }

    .london-hero .decoration-right {
        display: none;
    }
}

@media (max-width: 767px) {
    .london-hero-container {
        display: block;
        padding: 45px 20px 100px;
    }

    .london-hero-title {
        font-size: clamp(36px, 10vw, 50px);
        line-height: 1.12;
    }

    .london-hero-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .london-breadcrumb {
        font-size: 10px;
    }

    .london-event-badge {
        padding: 9px 13px;
        font-size: 9px;
        letter-spacing: 0.1em;
    }

    .london-event-information {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 6px 15px;
    }

    .london-info-item {
        padding: 11px 0;
    }

    .london-info-divider {
        width: 100%;
        height: 1px;
        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(224, 184, 95, 0.36),
                transparent
            );
    }

    .london-info-content small {
        font-size: 9px;
    }

    .london-info-content strong {
        font-size: 12px;
    }

    .london-hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .london-btn {
        width: 100%;
        min-height: 52px;
    }

    .london-trust-row {
        justify-content: space-between;
        gap: 12px;
    }

    .london-trust-item > i {
        font-size: 14px;
    }

    .london-trust-item strong {
        font-size: 15px;
    }

    .london-trust-item small {
        font-size: 8px;
    }

    .london-event-card {
        width: 100%;
        margin-top: 43px;
        padding: 21px 17px;
    }

    .london-card-content h2 {
        font-size: 22px;
    }

    .london-hero-bottom {
        min-height: 64px;
    }

    .london-bottom-inner {
        justify-content: center;
        padding: 0 20px;
    }

    .london-bottom-keywords {
        display: none;
    }

    .london-hero .decoration-left {
        left: 8px;
        opacity: 0.5;
    }
}

@media (max-width: 430px) {
    .london-hero-container {
        padding-top: 35px;
    }

    .london-hero-title {
        font-size: 34px;
    }

    .london-trust-row {
        align-items: flex-start;
    }

    .london-trust-item {
        gap: 6px;
    }

    .london-card-highlights > div {
        padding-inline: 3px;
    }

    .london-card-highlights strong {
        font-size: 9px;
    }

    .london-card-highlights small {
        font-size: 7px;
    }
}

/* ---------------- REDUCED MOTION ---------------- */

@media (prefers-reduced-motion: reduce) {
    .badge-live-dot::before,
    .london-scroll-mouse i {
        animation: none !important;
    }
}

/* ==============================================
   HERO IMAGE — 8 SECOND ZOOM IN / ZOOM OUT
============================================== */

.london-hero {
    overflow: hidden;
}

.london-hero-image {
    transform-origin: center center;
    will-change: transform;
    animation: londonHeroZoom 8s ease-in-out infinite;
}

@keyframes londonHeroZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}
@media (max-width: 767px) {
    @keyframes londonHeroZoom {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.045);
        }

        100% {
            transform: scale(1);
        }
    }
}
@media (prefers-reduced-motion: reduce) {
    .london-hero-image {
        animation: none;
        transform: scale(1);
    }
}
/* =========================================================
   ABOUT LONDON SUMMIT SECTION
========================================================= */

.london-about,
.london-about * {
    box-sizing: border-box;
}

.london-about {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 110px 0 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 10% 25%,
            rgba(24, 78, 130, 0.22),
            transparent 34%
        ),
        radial-gradient(
            circle at 90% 75%,
            rgba(205, 158, 66, 0.09),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #020b17 0%,
            #06172b 52%,
            #020b17 100%
        );
}

/* Subtle pattern */

.london-about::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.17;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(214, 171, 83, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(214, 171, 83, 0.08) 1px,
            transparent 1px
        );
    background-size: 85px 85px;
}

/* Top golden line */

.london-about::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(90%, 1180px);
    height: 1px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(226, 184, 90, 0.7),
            transparent
        );
}

/* Decorative glows */

.london-about-glow {
    position: absolute;
    z-index: -1;
    display: block;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(110px);
}

.london-about-glow-one {
    top: 80px;
    left: -180px;
    width: 430px;
    height: 430px;
    opacity: 0.16;
    background: #1768a5;
}

.london-about-glow-two {
    right: -170px;
    bottom: 120px;
    width: 400px;
    height: 400px;
    opacity: 0.12;
    background: #d6a943;
}

/* =========================================================
   MAIN ABOUT CONTAINER
========================================================= */

.london-about-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px 100px;
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(60px, 7vw, 110px);
}

/* =========================================================
   LEFT IMAGE
========================================================= */

.london-about-visual {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.london-about-image-frame {
    position: relative;
    width: calc(100% - 22px);
    height: clamp(520px, 53vw, 650px);
    overflow: hidden;
    border: 1px solid rgba(224, 183, 91, 0.45);
    border-radius: 5px;
    box-shadow:
        0 35px 75px rgba(0, 0, 0, 0.45),
        inset 0 0 0 8px rgba(255, 255, 255, 0.018);
}

.london-about-image-frame > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s ease;
}

.london-about-image-frame:hover > img {
    transform: scale(1.045);
}

/* Image overlays */

.london-about-image-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(1, 10, 22, 0.04) 25%,
            rgba(1, 10, 22, 0.35) 68%,
            rgba(1, 10, 22, 0.92) 100%
        ),
        linear-gradient(
            90deg,
            rgba(2, 13, 28, 0.2),
            transparent 55%
        );
}

/* Outer decorative frame */

.london-about-frame-line {
    position: absolute;
    z-index: -1;
    top: 25px;
    right: 0;
    width: calc(100% - 22px);
    height: 100%;
    border-right: 1px solid rgba(224, 183, 91, 0.32);
    border-bottom: 1px solid rgba(224, 183, 91, 0.32);
    border-radius: 4px;
    pointer-events: none;
}

.london-about-frame-line::before,
.london-about-frame-line::after {
    content: "";
    position: absolute;
    background: #dfb65a;
    box-shadow: 0 0 14px rgba(223, 182, 90, 0.48);
}

.london-about-frame-line::before {
    right: -3px;
    bottom: 35px;
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
}

.london-about-frame-line::after {
    right: 35px;
    bottom: -3px;
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
}

/* 2027 badge */

.london-about-year {
    position: absolute;
    z-index: 3;
    top: 25px;
    left: 25px;
    min-width: 105px;
    padding: 14px 17px;
    text-align: center;
    background: rgba(3, 18, 36, 0.84);
    border: 1px solid rgba(231, 193, 105, 0.58);
    border-radius: 3px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.london-about-year strong {
    display: block;
    color: #f2d58c;
    font-family: "Cinzel", Georgia, serif;
    font-size: 27px;
    font-weight: 600;
    line-height: 1;
}

.london-about-year span {
    display: block;
    margin-top: 6px;
    color: #bcc9d5;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

/* Venue card */

.london-about-venue {
    position: absolute;
    z-index: 3;
    right: 20px;
    bottom: 23px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background:
        linear-gradient(
            100deg,
            rgba(3, 18, 36, 0.94),
            rgba(7, 37, 68, 0.88)
        );
    border: 1px solid rgba(224, 183, 91, 0.38);
    border-radius: 4px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.london-about-venue-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    color: #f3d88f;
    background: rgba(219, 174, 80, 0.1);
    border: 1px solid rgba(224, 183, 91, 0.35);
    border-radius: 50%;
    font-size: 17px;
}

.london-about-venue > span:last-child {
    display: flex;
    flex-direction: column;
}

.london-about-venue small {
    color: #8fa2b5;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.london-about-venue strong {
    margin: 2px 0;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: 16px;
    font-weight: 600;
}

.london-about-venue em {
    color: #d8b86c;
    font-size: 10px;
    font-style: normal;
}

/* =========================================================
   RIGHT CONTENT
========================================================= */

.london-about-content {
    position: relative;
    width: 100%;
}

/* Section label */

.london-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
}

.london-section-label > span {
    position: relative;
    width: 45px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            #d2a344,
            #f1d78d
        );
}

.london-section-label > span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 6px;
    height: 6px;
    transform: translateY(-50%) rotate(45deg);
    background: #e0b65b;
}

.london-section-label small {
    color: #ddb258;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

/* Main title */

.london-section-title {
    max-width: 780px;
    margin: 0 0 23px;
    color: #f7f9fb;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(34px, 3.6vw, 54px);
    font-weight: 600;
    line-height: 1.17;
    letter-spacing: -0.02em;
}

.london-section-title span {
    display: block;
    margin-top: 6px;
    color: #e0b459;
    background:
        linear-gradient(
            90deg,
            #f5dfa1,
            #d8a744 58%,
            #a87225
        );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paragraphs */

.london-about-lead {
    max-width: 760px;
    margin: 0 0 14px;
    color: #d2dbe4;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
}

.london-about-description {
    max-width: 760px;
    margin: 0;
    color: #8fa3b6;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================================
   FEATURE POINTS
========================================================= */

.london-about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 31px;
}

.london-about-feature {
    position: relative;
    min-height: 105px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    overflow: hidden;
    padding: 17px;
    background:
        linear-gradient(
            135deg,
            rgba(13, 51, 89, 0.56),
            rgba(4, 25, 48, 0.48)
        );
    border: 1px solid rgba(151, 178, 202, 0.12);
    border-radius: 4px;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.london-about-feature::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -35px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0;
    background: #d9a947;
    filter: blur(35px);
    transition: opacity 0.35s ease;
}

.london-about-feature:hover {
    transform: translateY(-4px);
    background:
        linear-gradient(
            135deg,
            rgba(17, 63, 108, 0.72),
            rgba(5, 28, 53, 0.62)
        );
    border-color: rgba(224, 183, 91, 0.4);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.london-about-feature:hover::after {
    opacity: 0.15;
}

.london-feature-icon {
    position: relative;
    z-index: 2;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: grid;
    place-items: center;
    color: #f0d386;
    background: rgba(216, 170, 78, 0.09);
    border: 1px solid rgba(224, 183, 91, 0.3);
    border-radius: 50%;
    font-size: 15px;
}

.london-about-feature > span:last-child {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.london-about-feature strong {
    margin-bottom: 5px;
    color: #edf3f8;
    font-size: 13px;
    font-weight: 700;
}

.london-about-feature small {
    color: #869bad;
    font-size: 10px;
    line-height: 1.6;
}

/* =========================================================
   ABOUT CTA
========================================================= */

.london-about-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 31px;
}

.london-about-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 25px;
    color: #06162b;
    background:
        linear-gradient(
            135deg,
            #f7e1a4,
            #d8aa4e 55%,
            #a66f22
        );
    border: 1px solid #f0d183;
    border-radius: 3px;
    box-shadow: 0 14px 30px rgba(215, 169, 76, 0.2);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.london-about-button:hover {
    color: #06162b;
    transform: translateY(-3px);
    box-shadow: 0 19px 36px rgba(215, 169, 76, 0.34);
}

.london-about-button i {
    transition: transform 0.3s ease;
}

.london-about-button:hover i {
    transform: translateX(5px);
}

.london-about-trust {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #94a7b8;
    font-size: 10px;
    font-weight: 600;
}

.london-about-trust i {
    color: #dcae50;
    font-size: 15px;
}

/* =========================================================
   STATISTICS STRIP
========================================================= */

.london-about-stats {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background:
        linear-gradient(
            90deg,
            rgba(4, 25, 48, 0.97),
            rgba(12, 49, 86, 0.94),
            rgba(4, 25, 48, 0.97)
        );
    border-top: 1px solid rgba(224, 183, 91, 0.25);
    border-right: 1px solid rgba(224, 183, 91, 0.12);
    border-left: 1px solid rgba(224, 183, 91, 0.12);
    border-radius: 7px 7px 0 0;
    box-shadow: 0 -15px 45px rgba(0, 0, 0, 0.18);
}

.london-about-stat {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 8px 20px;
}

.london-about-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    width: 1px;
    height: 80%;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(224, 183, 91, 0.3),
            transparent
        );
}

.london-stat-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    color: #f0d386;
    background: rgba(218, 172, 78, 0.08);
    border: 1px solid rgba(224, 183, 91, 0.26);
    border-radius: 50%;
    font-size: 16px;
}

.london-about-stat > span:last-child {
    display: flex;
    flex-direction: column;
}

.london-about-stat strong {
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.1;
}

.london-about-stat sup {
    color: #e0b459;
    font-size: 14px;
}

.london-about-stat small {
    margin-top: 4px;
    color: #8fa3b6;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {
    .london-about {
        padding-top: 90px;
    }

    .london-about-container {
        grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
        gap: 50px;
        padding-bottom: 80px;
    }

    .london-about-image-frame {
        height: 590px;
    }

    .london-about-features {
        grid-template-columns: 1fr;
    }

    .london-about-stat {
        padding-inline: 12px;
    }

    .london-stat-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .london-about-stat strong {
        font-size: 23px;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 800px) {
    .london-about {
        padding-top: 75px;
    }

    .london-about-container {
        grid-template-columns: 1fr;
        gap: 65px;
        padding: 0 20px 75px;
    }

    .london-about-visual {
        max-width: 570px;
        margin: 0 auto;
    }

    .london-about-image-frame {
        width: calc(100% - 16px);
        height: min(118vw, 640px);
    }

    .london-section-title {
        font-size: clamp(31px, 8vw, 43px);
    }

    .london-about-lead {
        font-size: 15px;
    }

    .london-about-description {
        font-size: 13px;
    }

    .london-about-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .london-about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 20px;
    }

    .london-about-stat {
        justify-content: flex-start;
        padding: 20px;
    }

    .london-about-stat:nth-child(2)::after {
        display: none;
    }

    .london-about-stat:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(224, 183, 91, 0.14);
    }
}

@media (max-width: 560px) {
    .london-about {
        padding-top: 65px;
    }

    .london-about-container {
        gap: 55px;
    }

    .london-about-image-frame {
        height: 115vw;
        min-height: 470px;
        max-height: 580px;
    }

    .london-about-year {
        top: 17px;
        left: 17px;
        min-width: 92px;
        padding: 12px 14px;
    }

    .london-about-year strong {
        font-size: 23px;
    }

    .london-about-venue {
        right: 14px;
        bottom: 15px;
        left: 14px;
        padding: 13px;
    }

    .london-about-venue-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .london-section-label small {
        font-size: 9px;
    }

    .london-section-title {
        font-size: 30px;
        line-height: 1.22;
    }

    .london-about-features {
        grid-template-columns: 1fr;
    }

    .london-about-feature {
        min-height: auto;
    }

    .london-about-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .london-about-button {
        width: 100%;
    }

    .london-about-stats {
        grid-template-columns: 1fr;
        padding: 12px 20px;
        border-radius: 0;
    }

    .london-about-stat {
        padding: 17px 5px;
    }

    .london-about-stat:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        display: block;
        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(224, 183, 91, 0.25),
                transparent
            );
    }

    .london-about-stat:nth-child(-n + 2) {
        border-bottom: 0;
    }
}

/* Reduced-motion accessibility */

@media (prefers-reduced-motion: reduce) {
    .london-about-image-frame > img,
    .london-about-feature,
    .london-about-button {
        transition: none;
    }

    .london-about-image-frame:hover > img {
        transform: none;
    }
}

/* =========================================================
   WHY LONDON & WHY IBS GLOBAL
========================================================= */

.london-why,
.london-why * {
    box-sizing: border-box;
}

.london-why {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 110px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 18%,
            rgba(20, 76, 127, 0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 12% 85%,
            rgba(210, 164, 68, 0.08),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #f7f9fc 0%,
            #eef3f8 100%
        );
}

/* Subtle background grid */

.london-why::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.35;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(11, 47, 82, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(11, 47, 82, 0.045) 1px,
            transparent 1px
        );
    background-size: 75px 75px;
}

/* Top divider */

.london-why::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(90%, 1200px);
    height: 1px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(190, 144, 55, 0.5),
            transparent
        );
}

/* Background glow */

.london-why-glow {
    position: absolute;
    z-index: -1;
    display: block;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
}

.london-why-glow-left {
    left: -220px;
    bottom: -180px;
    width: 480px;
    height: 480px;
    opacity: 0.12;
    background: #d4a54a;
}

.london-why-glow-right {
    top: -180px;
    right: -180px;
    width: 470px;
    height: 470px;
    opacity: 0.11;
    background: #1569a9;
}

/* =========================================================
   CONTAINER AND SECTION HEADING
========================================================= */

.london-why-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
}

.london-why-heading {
    max-width: 850px;
    margin: 0 auto 58px;
    text-align: center;
}

.london-section-label-center {
    justify-content: center;
}

.london-section-label-center > span:last-child {
    transform: scaleX(-1);
}

.london-why-title {
    max-width: 850px;
    margin-right: auto;
    margin-left: auto;
    color: #08213b;
}

.london-why-heading > p {
    max-width: 760px;
    margin: 20px auto 0;
    color: #64778a;
    font-size: 15px;
    line-height: 1.8;
}

/* =========================================================
   BENEFIT CARDS
========================================================= */

.london-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.london-why-card {
    position: relative;
    isolation: isolate;
    min-height: 275px;
    overflow: hidden;
    padding: 29px 25px 25px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(241, 246, 250, 0.98)
        );
    border: 1px solid rgba(12, 52, 88, 0.1);
    border-radius: 6px;
    box-shadow:
        0 15px 40px rgba(5, 31, 57, 0.07),
        inset 0 1px rgba(255, 255, 255, 0.8);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.london-why-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: -75px;
    bottom: -75px;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    opacity: 0;
    background: #d6a84b;
    filter: blur(55px);
    transition: opacity 0.4s ease;
}

.london-why-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    background:
        linear-gradient(
            90deg,
            #ad7424,
            #e0b65b,
            #f5dda0
        );
    transition: transform 0.4s ease;
}

.london-why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(192, 143, 49, 0.4);
    box-shadow:
        0 25px 55px rgba(5, 31, 57, 0.14),
        inset 0 1px rgba(255, 255, 255, 0.8);
}

.london-why-card:hover::before {
    opacity: 0.13;
}

.london-why-card:hover::after {
    transform: scaleX(1);
}

/* Card number */

.london-why-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: rgba(10, 46, 80, 0.08);
    font-family: "Cinzel", Georgia, serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    transition: color 0.4s ease;
}

.london-why-card:hover .london-why-number {
    color: rgba(190, 143, 53, 0.18);
}

/* Card icon */

.london-why-icon {
    position: relative;
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin-bottom: 23px;
    color: #bd8732;
    background:
        linear-gradient(
            145deg,
            rgba(239, 213, 151, 0.25),
            rgba(205, 158, 66, 0.08)
        );
    border: 1px solid rgba(190, 143, 53, 0.28);
    border-radius: 50%;
    font-size: 19px;
    transition:
        color 0.4s ease,
        background 0.4s ease,
        transform 0.4s ease;
}

.london-why-icon::after {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(190, 143, 53, 0.12);
    border-radius: 50%;
}

.london-why-card:hover .london-why-icon {
    color: #f1d386;
    background:
        linear-gradient(
            145deg,
            #0c355c,
            #061b33
        );
    transform: rotate(-5deg) scale(1.05);
}

/* Card typography */

.london-why-card h3 {
    position: relative;
    margin: 0 0 12px;
    padding-right: 5px;
    color: #0a2947;
    font-family: "Cinzel", Georgia, serif;
    font-size: 17px;
    font-weight: 650;
    line-height: 1.35;
}

.london-why-card p {
    position: relative;
    margin: 0;
    color: #718294;
    font-size: 11px;
    line-height: 1.75;
}

.london-why-line {
    position: absolute;
    bottom: 21px;
    left: 25px;
    width: 35px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            #c48d36,
            transparent
        );
    transition: width 0.4s ease;
}

.london-why-card:hover .london-why-line {
    width: 75px;
}

/* =========================================================
   FEATURED CARDS
========================================================= */

.london-why-card-featured {
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(218, 172, 78, 0.16),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #0c345a,
            #04182e
        );
    border-color: rgba(220, 175, 82, 0.42);
    box-shadow:
        0 22px 50px rgba(4, 26, 49, 0.22),
        inset 0 1px rgba(255, 255, 255, 0.05);
}

.london-why-card-featured h3 {
    color: #ffffff;
}

.london-why-card-featured p {
    color: #aebdca;
}

.london-why-card-featured .london-why-number {
    color: rgba(239, 210, 142, 0.1);
}

.london-why-card-featured .london-why-icon {
    color: #f1d386;
    background: rgba(214, 168, 75, 0.09);
    border-color: rgba(224, 183, 91, 0.4);
}

.london-why-card-featured .london-why-line {
    background:
        linear-gradient(
            90deg,
            #f0d184,
            transparent
        );
}

/* Featured label */

.london-why-featured-label {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    padding: 7px 13px;
    color: #09233e;
    background:
        linear-gradient(
            135deg,
            #f2da99,
            #c99236
        );
    border-radius: 0 5px 0 4px;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.london-why-card-featured:hover {
    border-color: rgba(239, 207, 130, 0.7);
    box-shadow:
        0 28px 58px rgba(4, 26, 49, 0.3),
        0 0 25px rgba(208, 160, 65, 0.08);
}

/* =========================================================
   BOTTOM CALL TO ACTION
========================================================= */

.london-why-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: 45px;
    padding: 25px 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(218, 172, 78, 0.15),
            transparent 27%
        ),
        linear-gradient(
            110deg,
            #051a32,
            #0c3a65,
            #061b33
        );
    border: 1px solid rgba(217, 172, 80, 0.4);
    border-radius: 6px;
    box-shadow: 0 25px 55px rgba(5, 31, 57, 0.18);
}

.london-why-cta::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.13;
    background-image:
        linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px
        );
    background-size: 18px 18px;
}

.london-why-cta-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.london-why-cta-icon {
    width: 57px;
    height: 57px;
    flex: 0 0 57px;
    display: grid;
    place-items: center;
    color: #f1d386;
    background: rgba(218, 172, 78, 0.1);
    border: 1px solid rgba(224, 183, 91, 0.36);
    border-radius: 50%;
    font-size: 20px;
}

.london-why-cta-content > div {
    display: flex;
    flex-direction: column;
}

.london-why-cta-content small {
    margin-bottom: 4px;
    color: #dcb05a;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.london-why-cta-content h3 {
    margin: 0;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(17px, 2vw, 23px);
    font-weight: 600;
    line-height: 1.4;
}

/* CTA button */

.london-why-button {
    min-width: 215px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 23px;
    color: #06172c;
    background:
        linear-gradient(
            135deg,
            #f5dfa1,
            #d7a848 55%,
            #a66e21
        );
    border: 1px solid #f0d183;
    border-radius: 3px;
    box-shadow: 0 14px 30px rgba(208, 160, 65, 0.22);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.london-why-button:hover {
    color: #06172c;
    transform: translateY(-3px);
    box-shadow: 0 19px 36px rgba(208, 160, 65, 0.36);
}

.london-why-button i {
    transition: transform 0.3s ease;
}

.london-why-button:hover i {
    transform: translateX(5px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .london-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .london-why-card {
        min-height: 255px;
    }
}

@media (max-width: 800px) {
    .london-why {
        padding: 85px 0;
    }

    .london-why-container {
        padding: 0 20px;
    }

    .london-why-heading {
        margin-bottom: 45px;
    }

    .london-why-heading > p {
        font-size: 13px;
    }

    .london-why-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .london-why-button {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .london-why {
        padding: 70px 0;
    }

    .london-why-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .london-why-card {
        min-height: 245px;
        padding: 25px 22px;
    }

    .london-why-card h3 {
        font-size: 16px;
    }

    .london-why-line {
        left: 22px;
    }

    .london-why-cta {
        margin-top: 30px;
        padding: 22px 18px;
    }

    .london-why-cta-content {
        align-items: flex-start;
    }

    .london-why-cta-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 17px;
    }

    .london-why-cta-content h3 {
        font-size: 17px;
    }

    .london-section-label-center > span {
        width: 28px;
    }
}

/* Reduced-motion accessibility */

@media (prefers-reduced-motion: reduce) {
    .london-why-card,
    .london-why-icon,
    .london-why-button {
        transition: none;
    }

    .london-why-card:hover,
    .london-why-button:hover {
        transform: none;
    }
}

/* =========================================================
   EXPERIENCE THE LONDON SUMMIT
========================================================= */

.london-experience,
.london-experience * {
    box-sizing: border-box;
}

.london-experience {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 110px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(20, 75, 125, 0.2),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(214, 169, 76, 0.09),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #020b17,
            #071b32 52%,
            #020b17
        );
}

.london-experience::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(220, 175, 82, 0.09) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(220, 175, 82, 0.09) 1px,
            transparent 1px
        );
    background-size: 90px 90px;
}

.london-experience::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(90%, 1200px);
    height: 1px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(225, 183, 88, 0.55),
            transparent
        );
}

/* Background glow */

.london-experience-glow {
    position: absolute;
    z-index: -1;
    display: block;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
}

.experience-glow-one {
    top: 80px;
    left: -220px;
    width: 480px;
    height: 480px;
    opacity: 0.14;
    background: #1769a8;
}

.experience-glow-two {
    right: -170px;
    bottom: 20px;
    width: 400px;
    height: 400px;
    opacity: 0.11;
    background: #d7aa4e;
}

/* =========================================================
   CONTAINER AND HEADING
========================================================= */

.london-experience-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
}

.london-experience-heading {
    margin-bottom: 53px;
}

.london-experience-heading-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: end;
    gap: 65px;
}

.london-experience-heading-grid .london-section-title {
    margin-bottom: 0;
}

.london-experience-heading-grid > p {
    margin: 0 0 5px;
    padding-left: 25px;
    color: #94a7b9;
    border-left: 1px solid rgba(220, 175, 82, 0.35);
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================================
   EXPERIENCE GRID
========================================================= */

.london-experience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.london-experience-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(12, 48, 84, 0.82),
            rgba(3, 20, 39, 0.96)
        );
    border: 1px solid rgba(221, 177, 84, 0.25);
    border-radius: 6px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.london-experience-card:hover {
    transform: translateY(-9px);
    border-color: rgba(235, 200, 119, 0.62);
    box-shadow:
        0 32px 65px rgba(0, 0, 0, 0.38),
        0 0 25px rgba(215, 170, 76, 0.07);
}

/* =========================================================
   CARD IMAGE
========================================================= */

.london-experience-image {
    position: relative;
    height: 335px;
    overflow: hidden;
    background: #071a30;
}

.london-experience-image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition:
        transform 1.1s ease,
        filter 0.6s ease;
}

.london-experience-card:hover
.london-experience-image > img {
    transform: scale(1.07);
    filter: saturate(1.08);
}

.london-experience-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(2, 10, 22, 0.05) 28%,
            rgba(2, 13, 27, 0.28) 58%,
            rgba(3, 18, 35, 0.97) 100%
        );
}

/* Experience number */

.london-experience-number {
    position: absolute;
    z-index: 3;
    top: 17px;
    left: 17px;
    min-width: 43px;
    height: 31px;
    display: grid;
    place-items: center;
    color: #f2d58c;
    background: rgba(3, 18, 36, 0.82);
    border: 1px solid rgba(224, 183, 91, 0.45);
    border-radius: 2px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

/* Floating icon */

.london-experience-icon {
    position: absolute;
    z-index: 3;
    right: 20px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #f3d88f;
    background:
        linear-gradient(
            145deg,
            rgba(20, 68, 111, 0.96),
            rgba(4, 24, 46, 0.96)
        );
    border: 1px solid rgba(224, 183, 91, 0.5);
    border-radius: 50%;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.32);
    font-size: 16px;
    transition:
        color 0.4s ease,
        background 0.4s ease,
        transform 0.4s ease;
}

.london-experience-card:hover
.london-experience-icon {
    color: #09213c;
    background:
        linear-gradient(
            135deg,
            #f5dea0,
            #c99034
        );
    transform: rotate(-7deg) scale(1.08);
}

/* =========================================================
   CARD CONTENT
========================================================= */

.london-experience-content {
    position: relative;
    min-height: 205px;
    padding: 24px 23px 31px;
}

.london-experience-content small {
    display: block;
    margin-bottom: 9px;
    color: #d8aa4e;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.london-experience-content h3 {
    margin: 0 0 12px;
    color: #f7f9fb;
    font-family: "Cinzel", Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.london-experience-content p {
    margin: 0;
    color: #91a4b7;
    font-size: 11px;
    line-height: 1.75;
}

.london-experience-border {
    position: absolute;
    bottom: 21px;
    left: 23px;
    width: 38px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            #e0b65b,
            transparent
        );
    transition: width 0.4s ease;
}

.london-experience-card:hover
.london-experience-border {
    width: 90px;
}

/* =========================================================
   BOTTOM FEATURES AND CTA
========================================================= */

.london-experience-footer {
    margin-top: 43px;
    padding: 23px 25px;
    display: flex;
    align-items: center;
    gap: 28px;
    background:
        linear-gradient(
            90deg,
            rgba(5, 28, 53, 0.92),
            rgba(12, 52, 91, 0.78),
            rgba(5, 28, 53, 0.92)
        );
    border-top: 1px solid rgba(224, 183, 91, 0.27);
    border-bottom: 1px solid rgba(224, 183, 91, 0.27);
}

.london-experience-footer-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #a8b8c7;
    font-size: 10px;
    font-weight: 600;
}

.london-experience-footer-item i {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: grid;
    place-items: center;
    color: #071a31;
    background: #d9ac50;
    border-radius: 50%;
    font-size: 9px;
}

.london-experience-button {
    min-width: 205px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-left: auto;
    padding: 0 22px;
    color: #06162b;
    background:
        linear-gradient(
            135deg,
            #f5dfa1,
            #d8a948 55%,
            #a66e21
        );
    border: 1px solid #f0d183;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.london-experience-button:hover {
    color: #06162b;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(215, 169, 75, 0.3);
}

.london-experience-button i {
    transition: transform 0.3s ease;
}

.london-experience-button:hover i {
    transform: translateX(5px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1120px) {
    .london-experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .london-experience-image {
        height: 380px;
    }

    .london-experience-footer {
        flex-wrap: wrap;
    }

    .london-experience-button {
        margin-left: 0;
    }
}

@media (max-width: 800px) {
    .london-experience {
        padding: 85px 0;
    }

    .london-experience-container {
        padding: 0 20px;
    }

    .london-experience-heading-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .london-experience-heading-grid > p {
        padding-left: 18px;
        font-size: 13px;
    }

    .london-experience-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .london-experience-button {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .london-experience {
        padding: 70px 0;
    }

    .london-experience-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .london-experience-image {
        height: 390px;
    }

    .london-experience-content {
        min-height: auto;
        padding-bottom: 43px;
    }

    .london-experience-footer {
        margin-top: 30px;
        padding: 20px 18px;
        gap: 17px;
    }
}

/* Reduced-motion accessibility */

@media (prefers-reduced-motion: reduce) {
    .london-experience-card,
    .london-experience-image > img,
    .london-experience-icon,
    .london-experience-button {
        transition: none;
    }

    .london-experience-card:hover,
    .london-experience-button:hover {
        transform: none;
    }

    .london-experience-card:hover
    .london-experience-image > img {
        transform: none;
    }
}
/* =========================================================
   DISTINGUISHED GUESTS — COMING SOON
========================================================= */

.london-guests,
.london-guests * {
    box-sizing: border-box;
}

.london-guests {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 110px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 12% 25%,
            rgba(20, 77, 128, 0.2),
            transparent 31%
        ),
        radial-gradient(
            circle at 88% 78%,
            rgba(211, 164, 68, 0.1),
            transparent 29%
        ),
        linear-gradient(
            145deg,
            #020b17,
            #071b32 50%,
            #020b17
        );
}

/* Background grid */

.london-guests::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.13;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(221, 177, 84, 0.09) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(221, 177, 84, 0.09) 1px,
            transparent 1px
        );
    background-size: 88px 88px;
}

/* Top decorative divider */

.london-guests::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(90%, 1200px);
    height: 1px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(225, 183, 88, 0.62),
            transparent
        );
}

/* Background glows */

.london-guests-glow {
    position: absolute;
    z-index: -1;
    display: block;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
}

.guests-glow-left {
    top: 70px;
    left: -210px;
    width: 470px;
    height: 470px;
    opacity: 0.15;
    background: #176aa8;
}

.guests-glow-right {
    right: -180px;
    bottom: -120px;
    width: 420px;
    height: 420px;
    opacity: 0.12;
    background: #d4a548;
}

/* =========================================================
   CONTAINER AND HEADING
========================================================= */

.london-guests-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
}

.london-guests-heading {
    max-width: 830px;
    margin: 0 auto 52px;
    text-align: center;
}

.london-guests-title {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}

.london-guests-heading > p {
    max-width: 730px;
    margin: 18px auto 0;
    color: #9aabba;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================================
   MAIN SHOWCASE PANEL
========================================================= */

.london-guests-showcase {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 460px;
    padding: 55px 65px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
    align-items: center;
    gap: 70px;
    background:
        radial-gradient(
            circle at 82% 50%,
            rgba(217, 171, 77, 0.15),
            transparent 30%
        ),
        linear-gradient(
            115deg,
            rgba(13, 55, 95, 0.94),
            rgba(4, 24, 46, 0.98)
        );
    border: 1px solid rgba(224, 183, 91, 0.4);
    border-radius: 8px;
    box-shadow:
        0 35px 75px rgba(0, 0, 0, 0.34),
        inset 0 1px rgba(255, 255, 255, 0.05);
}

/* Diagonal texture */

.london-guests-showcase::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
    background-image:
        linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.13) 1px,
            transparent 1px
        );
    background-size: 22px 22px;
}

/* Decorative corner */

.london-guests-showcase::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 60px;
    height: 60px;
    border-right: 1px solid rgba(225, 183, 88, 0.52);
    border-bottom: 1px solid rgba(225, 183, 88, 0.52);
}

/* =========================================================
   SHOWCASE LEFT CONTENT
========================================================= */

.london-guests-showcase-content {
    position: relative;
    z-index: 2;
}

.london-guests-eyebrow {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 9px 14px;
    color: #f0d486;
    background: rgba(218, 172, 78, 0.08);
    border: 1px solid rgba(225, 183, 88, 0.3);
    border-radius: 30px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.london-guests-eyebrow i {
    font-size: 11px;
}

.london-guests-showcase-content > h3 {
    max-width: 710px;
    margin: 0 0 18px;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(31px, 3.6vw, 51px);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.london-guests-showcase-content > h3 span {
    display: block;
    margin-top: 5px;
    color: #e0b55a;
    background:
        linear-gradient(
            90deg,
            #f6dfa0,
            #d6a644 58%,
            #a67023
        );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.london-guests-showcase-content > p {
    max-width: 690px;
    margin: 0;
    color: #9cafc0;
    font-size: 13px;
    line-height: 1.8;
}

/* =========================================================
   GUEST CATEGORIES
========================================================= */

.london-guests-categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 29px;
}

.london-guests-categories > div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    background: rgba(3, 20, 39, 0.46);
    border: 1px solid rgba(157, 180, 201, 0.12);
    border-radius: 4px;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.london-guests-categories > div:hover {
    transform: translateY(-3px);
    background: rgba(218, 172, 78, 0.075);
    border-color: rgba(225, 183, 88, 0.34);
}

.london-guests-categories i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    color: #f0d486;
    background: rgba(218, 172, 78, 0.08);
    border: 1px solid rgba(225, 183, 88, 0.24);
    border-radius: 50%;
    font-size: 13px;
}

.london-guests-categories > div > span {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.london-guests-categories strong {
    color: #ecf2f7;
    font-size: 11px;
    font-weight: 700;
}

.london-guests-categories small {
    margin-top: 2px;
    color: #8196aa;
    font-size: 8px;
}

/* =========================================================
   ANNOUNCEMENT SEAL
========================================================= */

.london-guests-seal {
    position: relative;
    width: min(100%, 315px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    justify-self: center;
}

.london-seal-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(225, 183, 88, 0.34);
    border-radius: 50%;
    animation: londonSealRotate 25s linear infinite;
}

.london-seal-ring::before,
.london-seal-ring::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    transform: rotate(45deg);
    background: #d8aa4e;
    box-shadow: 0 0 15px rgba(216, 170, 78, 0.7);
}

.london-seal-ring::before {
    left: -4px;
}

.london-seal-ring::after {
    right: -4px;
}

.london-seal-ring-two {
    inset: 16px;
    border-style: dashed;
    border-color: rgba(225, 183, 88, 0.21);
    animation-direction: reverse;
    animation-duration: 32s;
}

.london-seal-ring-two::before,
.london-seal-ring-two::after {
    display: none;
}

@keyframes londonSealRotate {
    to {
        transform: rotate(360deg);
    }
}

.london-seal-content {
    position: relative;
    width: calc(100% - 58px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(245, 221, 158, 0.13),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #103f6b,
            #04182f
        );
    border: 1px solid rgba(225, 183, 88, 0.45);
    border-radius: 50%;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.32),
        inset 0 0 35px rgba(219, 173, 78, 0.07);
}

.london-seal-content i {
    margin-bottom: 11px;
    color: #e1b75c;
    font-size: 22px;
}

.london-seal-content small {
    color: #92a7ba;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.london-seal-content strong {
    margin: 6px 0 2px;
    color: #f4d992;
    font-family: "Cinzel", Georgia, serif;
    font-size: 45px;
    font-weight: 600;
    line-height: 1;
}

.london-seal-content span {
    color: #eaf0f5;
    font-family: "Cinzel", Georgia, serif;
    font-size: 13px;
}

.london-seal-content em {
    margin-top: 10px;
    padding: 6px 11px;
    color: #09233e;
    background:
        linear-gradient(
            135deg,
            #f4dc9b,
            #c99137
        );
    border-radius: 20px;
    font-size: 7px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* =========================================================
   NOTIFICATION BAR
========================================================= */

.london-guests-notification {
    position: relative;
    margin-top: 22px;
    padding: 21px 23px;
    display: flex;
    align-items: center;
    gap: 24px;
    background:
        linear-gradient(
            90deg,
            rgba(4, 25, 48, 0.96),
            rgba(12, 51, 89, 0.83),
            rgba(4, 25, 48, 0.96)
        );
    border-top: 1px solid rgba(225, 183, 88, 0.24);
    border-bottom: 1px solid rgba(225, 183, 88, 0.24);
}

.london-guests-notification-text {
    display: flex;
    align-items: center;
    gap: 13px;
}

.london-notification-icon {
    position: relative;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: grid;
    place-items: center;
    color: #f0d486;
    background: rgba(218, 172, 78, 0.08);
    border: 1px solid rgba(225, 183, 88, 0.3);
    border-radius: 50%;
    font-size: 14px;
}

.london-notification-icon::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(225, 183, 88, 0.18);
    border-radius: 50%;
}

.london-guests-notification-text > div {
    display: flex;
    flex-direction: column;
}

.london-guests-notification-text small {
    margin-bottom: 3px;
    color: #d9ac50;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.london-guests-notification-text strong {
    color: #e9eff4;
    font-size: 11px;
    font-weight: 600;
}

/* Social links */

.london-guests-social {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: auto;
}

.london-guests-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #dfb65b;
    background: rgba(2, 15, 30, 0.5);
    border: 1px solid rgba(225, 183, 88, 0.27);
    border-radius: 50%;
    text-decoration: none;
    font-size: 12px;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.london-guests-social a:hover {
    color: #071a31;
    background:
        linear-gradient(
            135deg,
            #f4dc9b,
            #c99137
        );
    transform: translateY(-3px);
}

/* Notification CTA */

.london-guests-button {
    min-width: 205px;
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    color: #06162b;
    background:
        linear-gradient(
            135deg,
            #f5dfa1,
            #d8a948 55%,
            #a66e21
        );
    border: 1px solid #f0d183;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.london-guests-button:hover {
    color: #06162b;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(215, 169, 75, 0.3);
}

.london-guests-button i {
    transition: transform 0.3s ease;
}

.london-guests-button:hover i {
    transform: translateX(5px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
    .london-guests-showcase {
        padding: 45px;
        grid-template-columns: minmax(0, 1fr) 270px;
        gap: 45px;
    }

    .london-guests-seal {
        max-width: 270px;
    }

    .london-guests-notification {
        flex-wrap: wrap;
    }

    .london-guests-social {
        margin-left: 0;
    }

    .london-guests-button {
        margin-left: auto;
    }
}

@media (max-width: 800px) {
    .london-guests {
        padding: 85px 0;
    }

    .london-guests-container {
        padding: 0 20px;
    }

    .london-guests-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px 30px;
    }

    .london-guests-seal {
        width: 285px;
        max-width: 100%;
    }

    .london-guests-notification {
        align-items: flex-start;
    }

    .london-guests-notification-text {
        width: 100%;
    }

    .london-guests-button {
        margin-left: auto;
    }
}

@media (max-width: 560px) {
    .london-guests {
        padding: 70px 0;
    }

    .london-guests-heading {
        margin-bottom: 40px;
    }

    .london-guests-heading > p {
        font-size: 13px;
    }

    .london-guests-showcase {
        min-height: auto;
        padding: 32px 19px;
    }

    .london-guests-eyebrow {
        align-items: flex-start;
        font-size: 8px;
        line-height: 1.5;
    }

    .london-guests-showcase-content > h3 {
        font-size: 29px;
    }

    .london-guests-showcase-content > p {
        font-size: 12px;
    }

    .london-guests-categories {
        grid-template-columns: 1fr;
    }

    .london-guests-seal {
        width: 250px;
    }

    .london-seal-content strong {
        font-size: 37px;
    }

    .london-guests-notification {
        align-items: stretch;
        flex-direction: column;
        padding: 20px 17px;
    }

    .london-guests-social {
        margin: 0;
    }

    .london-guests-button {
        width: 100%;
        margin: 0;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .london-seal-ring {
        animation: none;
    }

    .london-guests-categories > div,
    .london-guests-social a,
    .london-guests-button {
        transition: none;
    }

    .london-guests-categories > div:hover,
    .london-guests-social a:hover,
    .london-guests-button:hover {
        transform: none;
    }
}
/* =========================================================
   IBS LONDON 2027 — EVENT AGENDA
========================================================= */

.london-agenda,
.london-agenda * {
    box-sizing: border-box;
}

.london-agenda {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(18, 74, 123, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 12% 85%,
            rgba(210, 163, 67, 0.08),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #f8fafc,
            #edf3f8
        );
}

.london-agenda::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.32;
    background-image:
        linear-gradient(
            rgba(8, 42, 74, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(8, 42, 74, 0.04) 1px,
            transparent 1px
        );
    background-size: 80px 80px;
}

.london-agenda::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(90%, 1200px);
    height: 1px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(194, 145, 50, 0.5),
            transparent
        );
}

/* Background glows */

.london-agenda-glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
}

.agenda-glow-one {
    top: 50px;
    right: -200px;
    width: 450px;
    height: 450px;
    opacity: 0.1;
    background: #176aa8;
}

.agenda-glow-two {
    left: -170px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    opacity: 0.09;
    background: #d4a548;
}

/* =========================================================
   CONTAINER AND HEADING
========================================================= */

.london-agenda-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 30px;
}

.london-agenda-heading {
    margin-bottom: 55px;
}

.london-agenda-heading-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 60px;
}

.london-agenda-title {
    max-width: 780px;
    margin-bottom: 0;
    color: #092845;
}

.london-agenda-introduction {
    max-width: 760px;
    margin: 20px 0 0;
    color: #687b8e;
    font-size: 14px;
    line-height: 1.8;
}

/* Heading summary */

.london-agenda-summary {
    min-width: 260px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 17px;
    background: #ffffff;
    border: 1px solid rgba(10, 47, 81, 0.1);
    border-left: 3px solid #cc963b;
    border-radius: 4px;
    box-shadow: 0 14px 35px rgba(5, 31, 57, 0.08);
}

.london-agenda-summary-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    color: #c18a33;
    background: rgba(207, 157, 63, 0.1);
    border: 1px solid rgba(193, 138, 51, 0.25);
    border-radius: 50%;
    font-size: 15px;
}

.london-agenda-summary > div {
    display: flex;
    flex-direction: column;
}

.london-agenda-summary small {
    color: #9b7532;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.london-agenda-summary strong {
    margin: 2px 0;
    color: #0a2b49;
    font-family: "Cinzel", Georgia, serif;
    font-size: 15px;
}

.london-agenda-summary div > span {
    color: #738598;
    font-size: 9px;
}

/* =========================================================
   TIMELINE
========================================================= */

.london-agenda-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.london-agenda-timeline::before {
    content: "";
    position: absolute;
    top: 38px;
    bottom: 38px;
    left: 158px;
    width: 1px;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(191, 143, 52, 0.4) 8%,
            rgba(191, 143, 52, 0.4) 92%,
            transparent
        );
}

.london-agenda-item {
    position: relative;
    display: grid;
    grid-template-columns: 125px 67px minmax(0, 1fr);
    align-items: center;
}

/* Time */

.london-agenda-time {
    display: grid;
    grid-template-columns: auto auto;
    align-items: end;
    justify-content: end;
    column-gap: 5px;
    text-align: right;
}

.london-agenda-time small {
    grid-column: 1 / -1;
    margin-bottom: 2px;
    color: #9a7535;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.london-agenda-time strong {
    color: #0a2b49;
    font-family: "Cinzel", Georgia, serif;
    font-size: 22px;
    font-weight: 650;
    line-height: 1;
}

.london-agenda-time span {
    color: #77899a;
    font-size: 8px;
    font-weight: 800;
    line-height: 1.2;
}

/* Timeline marker */

.london-agenda-marker {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
}

.london-agenda-marker > span {
    position: relative;
    width: 15px;
    height: 15px;
    display: block;
    background: #f8fafc;
    border: 2px solid #c18a33;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(193, 138, 51, 0.1);
}

.london-agenda-marker > span::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #c18a33;
}

/* Agenda card */

.london-agenda-card {
    position: relative;
    min-height: 135px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    overflow: hidden;
    padding: 24px 65px 24px 24px;
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f5f8fb
        );
    border: 1px solid rgba(10, 47, 81, 0.1);
    border-radius: 5px;
    box-shadow: 0 14px 36px rgba(5, 31, 57, 0.07);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.london-agenda-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: bottom;
    background:
        linear-gradient(
            180deg,
            #f1d386,
            #ad7424
        );
    transition: transform 0.35s ease;
}

.london-agenda-item:hover .london-agenda-card {
    transform: translateX(6px);
    border-color: rgba(193, 138, 51, 0.36);
    box-shadow: 0 21px 45px rgba(5, 31, 57, 0.12);
}

.london-agenda-item:hover .london-agenda-card::after {
    transform: scaleY(1);
}

.london-agenda-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: #bd8731;
    background:
        linear-gradient(
            145deg,
            rgba(239, 213, 151, 0.25),
            rgba(205, 158, 66, 0.08)
        );
    border: 1px solid rgba(190, 143, 53, 0.27);
    border-radius: 50%;
    font-size: 17px;
}

.london-agenda-card-content small {
    color: #b57d29;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.london-agenda-card-content h3 {
    margin: 5px 0 7px;
    color: #0a2a48;
    font-family: "Cinzel", Georgia, serif;
    font-size: 17px;
    font-weight: 650;
    line-height: 1.35;
}

.london-agenda-card-content p {
    max-width: 760px;
    margin: 0;
    color: #718396;
    font-size: 10px;
    line-height: 1.7;
}

.london-agenda-number {
    position: absolute;
    top: 50%;
    right: 21px;
    transform: translateY(-50%);
    color: rgba(8, 42, 74, 0.07);
    font-family: "Cinzel", Georgia, serif;
    font-size: 42px;
    font-weight: 700;
}

/* =========================================================
   FEATURED AWARD ITEM
========================================================= */

.london-agenda-featured .london-agenda-card {
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(218, 172, 78, 0.14),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #0d3a64,
            #04192f
        );
    border-color: rgba(221, 177, 84, 0.48);
}

.london-agenda-featured
.london-agenda-card-content h3 {
    color: #ffffff;
}

.london-agenda-featured
.london-agenda-card-content p {
    color: #a8b7c5;
}

.london-agenda-featured
.london-agenda-card-content small {
    color: #dfb65b;
}

.london-agenda-featured
.london-agenda-number {
    color: rgba(241, 211, 134, 0.09);
}

.london-agenda-featured
.london-agenda-icon {
    color: #f1d386;
    background: rgba(218, 172, 78, 0.09);
    border-color: rgba(225, 183, 88, 0.4);
}

.london-agenda-featured-label {
    position: absolute;
    top: 0;
    right: 0;
    padding: 7px 12px;
    color: #09233e;
    background:
        linear-gradient(
            135deg,
            #f3da96,
            #c78e34
        );
    border-radius: 0 4px 0 3px;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* =========================================================
   BOTTOM NOTE
========================================================= */

.london-agenda-note {
    margin-top: 34px;
    padding: 19px 21px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: rgba(8, 44, 76, 0.05);
    border: 1px solid rgba(10, 47, 81, 0.1);
    border-left: 3px solid #c18a33;
}

.london-agenda-note-icon {
    color: #bd8731;
    font-size: 17px;
}

.london-agenda-note p {
    margin: 0;
    color: #718396;
    font-size: 10px;
    line-height: 1.6;
}

.london-agenda-note a {
    min-width: 175px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
    color: #a97020;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.london-agenda-note a:hover {
    color: #082b4a;
}

.london-agenda-note a i {
    transition: transform 0.3s ease;
}

.london-agenda-note a:hover i {
    transform: translateX(4px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 800px) {
    .london-agenda {
        padding: 85px 0;
    }

    .london-agenda-container {
        padding: 0 20px;
    }

    .london-agenda-heading-grid {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 22px;
    }

    .london-agenda-summary {
        min-width: 0;
        width: fit-content;
    }

    .london-agenda-timeline::before {
        left: 15px;
    }

    .london-agenda-item {
        grid-template-columns: 31px minmax(0, 1fr);
        align-items: start;
    }

    .london-agenda-time {
        grid-column: 2;
        grid-row: 1;
        justify-content: start;
        margin-bottom: 9px;
        text-align: left;
    }

    .london-agenda-marker {
        grid-column: 1;
        grid-row: 1 / 3;
        padding-top: 7px;
    }

    .london-agenda-card {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (max-width: 560px) {
    .london-agenda {
        padding: 70px 0;
    }

    .london-agenda-introduction {
        font-size: 13px;
    }

    .london-agenda-timeline {
        gap: 21px;
    }

    .london-agenda-card {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 13px;
        padding: 20px 18px 25px;
    }

    .london-agenda-icon {
        width: 46px;
        height: 46px;
    }

    .london-agenda-card-content h3 {
        padding-right: 30px;
        font-size: 15px;
    }

    .london-agenda-number {
        top: 20px;
        right: 15px;
        transform: none;
        font-size: 31px;
    }

    .london-agenda-note {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .london-agenda-note a {
        width: 100%;
        justify-content: flex-start;
        margin: 5px 0 0 30px;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .london-agenda-card,
    .london-agenda-note a i {
        transition: none;
    }

    .london-agenda-item:hover .london-agenda-card {
        transform: none;
    }
}
/* =========================================================
   EVENT AGENDA — DARK BLUE THEME OVERRIDE
========================================================= */

.london-agenda {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(24, 91, 148, 0.22),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 85%,
            rgba(214, 169, 76, 0.1),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #020b17 0%,
            #071b32 50%,
            #020c19 100%
        );
}

.london-agenda::before {
    opacity: 0.13;
    background-image:
        linear-gradient(
            rgba(222, 178, 84, 0.09) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(222, 178, 84, 0.09) 1px,
            transparent 1px
        );
}

/* Heading */

.london-agenda-title {
    color: #ffffff;
}

.london-agenda-introduction {
    color: #a9b8c6;
}

.london-agenda-summary {
    background:
        linear-gradient(
            135deg,
            rgba(13, 52, 90, 0.9),
            rgba(4, 24, 47, 0.95)
        );
    border-color: rgba(224, 183, 91, 0.28);
    border-left-color: #d7a84b;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.london-agenda-summary small {
    color: #d8ad55;
}

.london-agenda-summary strong {
    color: #ffffff;
}

.london-agenda-summary div > span {
    color: #9cafc0;
}

/* Timeline line */

.london-agenda-timeline::before {
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(224, 183, 91, 0.5) 8%,
            rgba(224, 183, 91, 0.5) 92%,
            transparent
        );
}

/* Time */

.london-agenda-time small {
    color: #d5a84f;
}

.london-agenda-time strong {
    color: #f3d78c;
}

.london-agenda-time span {
    color: #9cafc0;
}

/* Timeline marker */

.london-agenda-marker > span {
    background: #06182e;
    border-color: #d8aa4e;
    box-shadow:
        0 0 0 6px rgba(216, 170, 78, 0.11),
        0 0 18px rgba(216, 170, 78, 0.18);
}

.london-agenda-marker > span::after {
    background: #f0d082;
}

/* All agenda cards */

.london-agenda-card {
    background:
        radial-gradient(
            circle at 92% 15%,
            rgba(217, 171, 77, 0.07),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            rgba(13, 53, 92, 0.92),
            rgba(4, 24, 47, 0.97)
        );
    border-color: rgba(224, 183, 91, 0.22);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.27),
        inset 0 1px rgba(255, 255, 255, 0.04);
}

.london-agenda-item:hover .london-agenda-card {
    border-color: rgba(236, 202, 121, 0.58);
    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.38),
        0 0 24px rgba(216, 170, 78, 0.07);
}

/* Card icon */

.london-agenda-icon {
    color: #f1d386;
    background: rgba(218, 172, 78, 0.08);
    border-color: rgba(224, 183, 91, 0.34);
}

/* Card text */

.london-agenda-card-content small {
    color: #d8aa4e;
}

.london-agenda-card-content h3 {
    color: #f7f9fb;
}

.london-agenda-card-content p {
    color: #9cafc0;
}

.london-agenda-number {
    color: rgba(240, 210, 134, 0.08);
}

/* Main ceremony card को थोड़ा अधिक highlighted रखें */

.london-agenda-featured .london-agenda-card {
    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(225, 183, 88, 0.2),
            transparent 31%
        ),
        linear-gradient(
            120deg,
            #124774,
            #061c35
        );
    border-color: rgba(236, 202, 121, 0.65);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.38),
        0 0 28px rgba(216, 170, 78, 0.09);
}

/* Bottom information note */

.london-agenda-note {
    background:
        linear-gradient(
            90deg,
            rgba(8, 38, 70, 0.82),
            rgba(5, 26, 50, 0.82)
        );
    border-color: rgba(224, 183, 91, 0.2);
    border-left-color: #d8aa4e;
}

.london-agenda-note-icon {
    color: #f0d183;
}

.london-agenda-note p {
    color: #9cafc0;
}

.london-agenda-note a {
    color: #f0d183;
}

.london-agenda-note a:hover {
    color: #ffffff;
}
/* =========================================================
   IBS LONDON 2027 — AWARD CATEGORIES
========================================================= */

.london-awards,
.london-awards * {
    box-sizing: border-box;
}

.london-awards {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(21, 76, 126, 0.11),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 85%,
            rgba(209, 161, 64, 0.08),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #f8fafc,
            #edf3f8
        );
}

.london-awards::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.32;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(8, 42, 74, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(8, 42, 74, 0.04) 1px,
            transparent 1px
        );
    background-size: 80px 80px;
}

.london-awards::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(90%, 1200px);
    height: 1px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(194, 145, 50, 0.55),
            transparent
        );
}

/* Background glows */

.london-awards-glow {
    position: absolute;
    z-index: -1;
    display: block;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
}

.awards-glow-one {
    top: 50px;
    right: -190px;
    width: 450px;
    height: 450px;
    opacity: 0.1;
    background: #176aa8;
}

.awards-glow-two {
    left: -170px;
    bottom: 10%;
    width: 420px;
    height: 420px;
    opacity: 0.09;
    background: #d3a345;
}

/* =========================================================
   CONTAINER AND HEADING
========================================================= */

.london-awards-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
}

.london-awards-heading {
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}

.london-awards-title {
    max-width: 850px;
    margin-right: auto;
    margin-left: auto;
    color: #092845;
}

.london-awards-heading > p {
    max-width: 760px;
    margin: 19px auto 0;
    color: #687b8e;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================================
   AWARD SUMMARY
========================================================= */

.london-awards-summary {
    max-width: 870px;
    margin: 0 auto 45px;
    padding: 23px 30px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(218, 172, 78, 0.13),
            transparent 30%
        ),
        linear-gradient(
            110deg,
            #061c35,
            #0d3c67,
            #061b33
        );
    border: 1px solid rgba(220, 175, 82, 0.42);
    border-radius: 6px;
    box-shadow: 0 22px 50px rgba(5, 31, 57, 0.2);
}

.london-awards-summary-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.london-awards-summary-item strong {
    color: #f2d58c;
    font-family: "Cinzel", Georgia, serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}

.london-awards-summary-item span {
    margin-top: 7px;
    color: #a8b8c7;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.london-awards-summary-divider {
    width: 1px;
    height: 45px;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(224, 183, 91, 0.36),
            transparent
        );
}

/* =========================================================
   CATEGORY GROUP GRID
========================================================= */

.london-awards-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.london-award-group {
    position: relative;
    isolation: isolate;
    grid-column: span 2;
    min-height: 435px;
    overflow: hidden;
    padding: 27px 25px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(218, 172, 78, 0.08),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #0d3a64,
            #04182f
        );
    border: 1px solid rgba(221, 177, 84, 0.31);
    border-radius: 7px;
    box-shadow:
        0 24px 55px rgba(5, 31, 57, 0.2),
        inset 0 1px rgba(255, 255, 255, 0.04);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

/* Last row centered */

.london-award-group:nth-child(4) {
    grid-column: 2 / span 2;
}

.london-award-group:nth-child(5) {
    grid-column: 4 / span 2;
}

.london-award-group::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: -75px;
    bottom: -75px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    opacity: 0;
    background: #d8aa4e;
    filter: blur(55px);
    transition: opacity 0.4s ease;
}

.london-award-group::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 31px;
    height: 31px;
    border-right: 1px solid rgba(224, 183, 91, 0.38);
    border-bottom: 1px solid rgba(224, 183, 91, 0.38);
}

.london-award-group:hover {
    transform: translateY(-8px);
    border-color: rgba(238, 204, 124, 0.66);
    box-shadow:
        0 32px 68px rgba(5, 31, 57, 0.29),
        0 0 25px rgba(216, 170, 78, 0.08);
}

.london-award-group:hover::before {
    opacity: 0.15;
}

/* Card number */

.london-award-group-number {
    position: absolute;
    top: 19px;
    right: 20px;
    color: rgba(241, 211, 134, 0.09);
    font-family: "Cinzel", Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

/* =========================================================
   CATEGORY HEADING
========================================================= */

.london-award-group-heading {
    position: relative;
    z-index: 2;
    min-height: 80px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 42px 20px 0;
    border-bottom: 1px solid rgba(224, 183, 91, 0.18);
}

.london-award-group-icon {
    width: 53px;
    height: 53px;
    flex: 0 0 53px;
    display: grid;
    place-items: center;
    color: #f0d486;
    background: rgba(218, 172, 78, 0.08);
    border: 1px solid rgba(224, 183, 91, 0.32);
    border-radius: 50%;
    font-size: 17px;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.london-award-group:hover
.london-award-group-icon {
    color: #09233e;
    background:
        linear-gradient(
            135deg,
            #f4dc9b,
            #c99137
        );
    transform: rotate(-6deg) scale(1.06);
}

.london-award-group-heading > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.london-award-group-heading small {
    margin-bottom: 4px;
    color: #d8aa4e;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.london-award-group-heading h3 {
    margin: 0;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

/* =========================================================
   AWARD LIST
========================================================= */

.london-award-list {
    position: relative;
    z-index: 2;
    margin: 21px 0 0;
    padding: 0;
    list-style: none;
}

.london-award-list li {
    min-height: 49px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 0;
    color: #adbdcb;
    border-bottom: 1px solid rgba(157, 181, 202, 0.1);
    font-size: 10px;
    line-height: 1.45;
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.london-award-list li:last-child {
    border-bottom: 0;
}

.london-award-list li:hover {
    padding-left: 5px;
    color: #ffffff;
}

.london-award-list i {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    display: grid;
    place-items: center;
    color: #d8aa4e;
    background: rgba(218, 172, 78, 0.07);
    border: 1px solid rgba(224, 183, 91, 0.18);
    border-radius: 50%;
    font-size: 9px;
}

/* =========================================================
   FEATURED CATEGORY
========================================================= */

.london-award-group-featured {
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(238, 204, 124, 0.2),
            transparent 33%
        ),
        linear-gradient(
            145deg,
            #124b7c,
            #061c35
        );
    border-color: rgba(238, 204, 124, 0.67);
}

.london-award-featured-label {
    position: absolute;
    z-index: 4;
    top: 0;
    left: 25px;
    padding: 7px 12px;
    color: #08223d;
    background:
        linear-gradient(
            135deg,
            #f4dc9b,
            #c99137
        );
    border-radius: 0 0 4px 4px;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.london-award-group-featured
.london-award-group-heading {
    padding-top: 15px;
}

/* =========================================================
   WINNER BENEFITS
========================================================= */

.london-awards-benefits {
    margin-top: 43px;
    padding: 25px 27px;
    display: grid;
    grid-template-columns: 1.3fr repeat(4, 1fr);
    align-items: center;
    gap: 18px;
    background: #ffffff;
    border: 1px solid rgba(10, 47, 81, 0.1);
    border-top: 3px solid #c89137;
    border-radius: 5px;
    box-shadow: 0 18px 45px rgba(5, 31, 57, 0.08);
}

.london-awards-benefits-heading small {
    color: #b57d29;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.london-awards-benefits-heading h3 {
    margin: 5px 0 0;
    color: #092845;
    font-family: "Cinzel", Georgia, serif;
    font-size: 17px;
    font-weight: 650;
    line-height: 1.4;
}

.london-award-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.london-award-benefit > i {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    color: #bd8731;
    background: rgba(207, 157, 63, 0.1);
    border: 1px solid rgba(193, 138, 51, 0.22);
    border-radius: 50%;
    font-size: 13px;
}

.london-award-benefit > span {
    display: flex;
    flex-direction: column;
}

.london-award-benefit strong {
    color: #173b5b;
    font-size: 10px;
}

.london-award-benefit small {
    margin-top: 2px;
    color: #8191a1;
    font-size: 7px;
}

/* =========================================================
   NOMINATION CTA
========================================================= */

.london-awards-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: 22px;
    padding: 27px 29px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(218, 172, 78, 0.17),
            transparent 30%
        ),
        linear-gradient(
            110deg,
            #051a31,
            #0d3c67,
            #061b33
        );
    border: 1px solid rgba(220, 175, 82, 0.43);
    border-radius: 6px;
    box-shadow: 0 25px 55px rgba(5, 31, 57, 0.21);
}

.london-awards-cta::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.1;
    background-image:
        linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.11) 1px,
            transparent 1px
        );
    background-size: 18px 18px;
}

.london-awards-cta-content {
    display: flex;
    align-items: center;
    gap: 17px;
}

.london-awards-cta-icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    display: grid;
    place-items: center;
    color: #f2d58c;
    background: rgba(218, 172, 78, 0.09);
    border: 1px solid rgba(224, 183, 91, 0.38);
    border-radius: 50%;
    font-size: 21px;
}

.london-awards-cta-content > div {
    display: flex;
    flex-direction: column;
}

.london-awards-cta-content small {
    margin-bottom: 4px;
    color: #dcb05a;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.london-awards-cta-content h3 {
    margin: 0 0 4px;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(17px, 2vw, 23px);
    font-weight: 600;
    line-height: 1.4;
}

.london-awards-cta-content p {
    margin: 0;
    color: #9cafc0;
    font-size: 9px;
    line-height: 1.6;
}

/* Nomination button */

.london-awards-button {
    min-width: 225px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    color: #06162b;
    background:
        linear-gradient(
            135deg,
            #f5dfa1,
            #d8a948 55%,
            #a66e21
        );
    border: 1px solid #f0d183;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.london-awards-button:hover {
    color: #06162b;
    transform: translateY(-3px);
    box-shadow: 0 17px 34px rgba(215, 169, 75, 0.34);
}

.london-awards-button i {
    transition: transform 0.3s ease;
}

.london-awards-button:hover i {
    transform: translateX(5px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .london-awards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .london-award-group,
    .london-award-group:nth-child(4),
    .london-award-group:nth-child(5) {
        grid-column: auto;
    }

    .london-award-group:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 9px);
        justify-self: center;
    }

    .london-awards-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .london-awards-benefits-heading {
        grid-column: 1 / -1;
    }
}

@media (max-width: 800px) {
    .london-awards {
        padding: 85px 0;
    }

    .london-awards-container {
        padding: 0 20px;
    }

    .london-awards-summary {
        padding-inline: 20px;
    }

    .london-awards-summary-item strong {
        font-size: 27px;
    }

    .london-awards-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .london-awards-button {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .london-awards {
        padding: 70px 0;
    }

    .london-awards-heading > p {
        font-size: 13px;
    }

    .london-awards-summary {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .london-awards-summary-divider {
        width: 100%;
        height: 1px;
        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(224, 183, 91, 0.34),
                transparent
            );
    }

    .london-awards-grid {
        grid-template-columns: 1fr;
    }

    .london-award-group,
    .london-award-group:last-child {
        width: 100%;
        min-height: auto;
        grid-column: auto;
    }

    .london-awards-benefits {
        grid-template-columns: 1fr;
        padding: 22px 18px;
    }

    .london-awards-benefits-heading {
        grid-column: auto;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(10, 47, 81, 0.1);
    }

    .london-awards-cta {
        padding: 24px 19px;
    }

    .london-awards-cta-content {
        align-items: flex-start;
    }

    .london-awards-cta-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        font-size: 17px;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .london-award-group,
    .london-award-group-icon,
    .london-awards-button {
        transition: none;
    }

    .london-award-group:hover,
    .london-awards-button:hover {
        transform: none;
    }
}
/* ==================================================
   AWARD CATEGORY FONT SIZE FIX
================================================== */

/* Group headings */

.london-award-group-heading h3 {
    font-size: 19px;
    line-height: 1.35;
}

/* All 25 award category names */

.london-award-list li {
    min-height: 54px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

/* Award icons भी थोड़ा बड़े */

.london-award-list i {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    font-size: 11px;
}

/* Group label */

.london-award-group-heading small {
    font-size: 9px;
}

/* Cards में थोड़ा अधिक space */

.london-award-group {
    min-height: 475px;
}

@media (max-width: 560px) {
    .london-award-group-heading h3 {
        font-size: 18px;
    }

    .london-award-list li {
        min-height: 52px;
        font-size: 12px;
    }

    .london-award-group {
        min-height: auto;
    }
}
/* =========================================================
   OFFICIAL PARTNERS & STRATEGIC COLLABORATION
========================================================= */

.london-partners,
.london-partners * {
    box-sizing: border-box;
}

.london-partners {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 110px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(21, 80, 134, 0.2),
            transparent 31%
        ),
        radial-gradient(
            circle at 88% 82%,
            rgba(211, 164, 68, 0.1),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #020b17,
            #071b32 52%,
            #020b17
        );
}

.london-partners::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.13;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(221, 177, 84, 0.09) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(221, 177, 84, 0.09) 1px,
            transparent 1px
        );
    background-size: 86px 86px;
}

.london-partners::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(90%, 1200px);
    height: 1px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(225, 183, 88, 0.6),
            transparent
        );
}

/* Background glow */

.london-partners-glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
}

.partners-glow-one {
    top: 60px;
    left: -210px;
    width: 470px;
    height: 470px;
    opacity: 0.15;
    background: #176aa8;
}

.partners-glow-two {
    right: -180px;
    bottom: -120px;
    width: 430px;
    height: 430px;
    opacity: 0.12;
    background: #d4a548;
}

/* =========================================================
   CONTAINER AND HEADING
========================================================= */

.london-partners-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
}

.london-partners-heading {
    max-width: 830px;
    margin: 0 auto 53px;
    text-align: center;
}

.london-partners-title {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
}

.london-partners-heading > p {
    max-width: 750px;
    margin: 19px auto 0;
    color: #9cafc0;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================================
   PARTNERSHIP CARDS
========================================================= */

.london-partners-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 19px;
}

.london-partner-card {
    position: relative;
    isolation: isolate;
    min-height: 500px;
    overflow: hidden;
    padding: 31px 27px 27px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(218, 172, 78, 0.08),
            transparent 31%
        ),
        linear-gradient(
            145deg,
            rgba(13, 55, 95, 0.91),
            rgba(4, 24, 47, 0.97)
        );
    border: 1px solid rgba(224, 183, 91, 0.29);
    border-radius: 7px;
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.28),
        inset 0 1px rgba(255, 255, 255, 0.04);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.london-partner-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: -80px;
    bottom: -80px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    opacity: 0;
    background: #d8aa4e;
    filter: blur(60px);
    transition: opacity 0.4s ease;
}

.london-partner-card::after {
    content: "";
    position: absolute;
    right: 13px;
    bottom: 13px;
    width: 34px;
    height: 34px;
    border-right: 1px solid rgba(224, 183, 91, 0.38);
    border-bottom: 1px solid rgba(224, 183, 91, 0.38);
}

.london-partner-card:hover {
    transform: translateY(-9px);
    border-color: rgba(238, 204, 124, 0.65);
    box-shadow:
        0 34px 70px rgba(0, 0, 0, 0.38),
        0 0 25px rgba(216, 170, 78, 0.07);
}

.london-partner-card:hover::before {
    opacity: 0.15;
}

/* Card number */

.london-partner-number {
    position: absolute;
    top: 21px;
    right: 22px;
    color: rgba(241, 211, 134, 0.09);
    font-family: "Cinzel", Georgia, serif;
    font-size: 49px;
    font-weight: 700;
    line-height: 1;
}

/* Card icon */

.london-partner-icon {
    width: 59px;
    height: 59px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    color: #f1d386;
    background: rgba(218, 172, 78, 0.08);
    border: 1px solid rgba(224, 183, 91, 0.34);
    border-radius: 50%;
    font-size: 20px;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.london-partner-card:hover
.london-partner-icon {
    color: #09233e;
    background:
        linear-gradient(
            135deg,
            #f4dc9b,
            #c99137
        );
    transform: rotate(-6deg) scale(1.06);
}

/* Card typography */

.london-partner-card > small {
    display: block;
    margin-bottom: 8px;
    color: #d8aa4e;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.london-partner-card > h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.35;
}

.london-partner-card > p {
    margin: 0;
    color: #9cafc0;
    font-size: 12px;
    line-height: 1.75;
}

/* Feature list */

.london-partner-card ul {
    margin: 25px 0 60px;
    padding: 0;
    list-style: none;
}

.london-partner-card li {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bac6d1;
    border-bottom: 1px solid rgba(157, 181, 202, 0.1);
    font-size: 11px;
}

.london-partner-card li:last-child {
    border-bottom: 0;
}

.london-partner-card li i {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: grid;
    place-items: center;
    color: #081d35;
    background: #d8aa4e;
    border-radius: 50%;
    font-size: 8px;
}

/* Application status */

.london-partner-status {
    position: absolute;
    left: 27px;
    bottom: 27px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a9bdca;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.london-partner-status i {
    color: #43dc83;
    font-size: 7px;
    text-shadow: 0 0 9px rgba(67, 220, 131, 0.8);
}

/* =========================================================
   FEATURED PARTNER CARD
========================================================= */

.london-partner-card-featured {
    transform: translateY(-12px);
    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(238, 204, 124, 0.21),
            transparent 33%
        ),
        linear-gradient(
            145deg,
            #124b7c,
            #061c35
        );
    border-color: rgba(238, 204, 124, 0.68);
}

.london-partner-card-featured:hover {
    transform: translateY(-20px);
}

.london-partner-featured-label {
    position: absolute;
    top: 0;
    left: 27px;
    padding: 8px 13px;
    color: #08223d;
    background:
        linear-gradient(
            135deg,
            #f4dc9b,
            #c99137
        );
    border-radius: 0 0 4px 4px;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.london-partner-card-featured
.london-partner-icon {
    margin-top: 15px;
}

/* =========================================================
   PARTNER ANNOUNCEMENT
========================================================= */

.london-partner-announcement {
    margin-top: 44px;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    background:
        linear-gradient(
            90deg,
            rgba(13, 52, 90, 0.8),
            rgba(4, 24, 47, 0.88)
        );
    border-top: 1px solid rgba(224, 183, 91, 0.23);
    border-bottom: 1px solid rgba(224, 183, 91, 0.23);
}

.london-partner-announcement-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    color: #f1d386;
    background: rgba(218, 172, 78, 0.08);
    border: 1px solid rgba(224, 183, 91, 0.3);
    border-radius: 50%;
    font-size: 16px;
}

.london-partner-announcement > div {
    display: flex;
    flex-direction: column;
}

.london-partner-announcement small {
    margin-bottom: 3px;
    color: #d8aa4e;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.london-partner-announcement h3 {
    margin: 0 0 4px;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: 16px;
    font-weight: 600;
}

.london-partner-announcement p {
    margin: 0;
    color: #91a5b8;
    font-size: 10px;
    line-height: 1.6;
}

/* =========================================================
   PARTNERSHIP CTA
========================================================= */

.london-partners-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: 22px;
    padding: 27px 29px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(218, 172, 78, 0.17),
            transparent 30%
        ),
        linear-gradient(
            110deg,
            #061c35,
            #0e416f,
            #061b33
        );
    border: 1px solid rgba(220, 175, 82, 0.45);
    border-radius: 6px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
}

.london-partners-cta::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.1;
    background-image:
        linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.11) 1px,
            transparent 1px
        );
    background-size: 18px 18px;
}

.london-partners-cta-content {
    display: flex;
    align-items: center;
    gap: 17px;
}

.london-partners-cta-icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    display: grid;
    place-items: center;
    color: #f2d58c;
    background: rgba(218, 172, 78, 0.09);
    border: 1px solid rgba(224, 183, 91, 0.38);
    border-radius: 50%;
    font-size: 21px;
}

.london-partners-cta-content > div {
    display: flex;
    flex-direction: column;
}

.london-partners-cta-content small {
    margin-bottom: 4px;
    color: #dcb05a;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.london-partners-cta-content h3 {
    margin: 0 0 4px;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(17px, 2vw, 23px);
    font-weight: 600;
    line-height: 1.4;
}

.london-partners-cta-content p {
    margin: 0;
    color: #9cafc0;
    font-size: 10px;
}

/* CTA button */

.london-partners-button {
    min-width: 240px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    color: #06162b;
    background:
        linear-gradient(
            135deg,
            #f5dfa1,
            #d8a948 55%,
            #a66e21
        );
    border: 1px solid #f0d183;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.london-partners-button:hover {
    color: #06162b;
    transform: translateY(-3px);
    box-shadow: 0 17px 34px rgba(215, 169, 75, 0.34);
}

.london-partners-button i {
    transition: transform 0.3s ease;
}

.london-partners-button:hover i {
    transform: translateX(5px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {
    .london-partners-grid {
        grid-template-columns: 1fr;
    }

    .london-partner-card {
        min-height: auto;
    }

    .london-partner-card-featured,
    .london-partner-card-featured:hover {
        transform: none;
    }

    .london-partner-card ul {
        margin-bottom: 60px;
    }
}

@media (max-width: 800px) {
    .london-partners {
        padding: 85px 0;
    }

    .london-partners-container {
        padding: 0 20px;
    }

    .london-partners-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .london-partners-button {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .london-partners {
        padding: 70px 0;
    }

    .london-partners-heading > p {
        font-size: 13px;
    }

    .london-partner-card {
        padding: 27px 21px;
    }

    .london-partner-card > h3 {
        font-size: 19px;
    }

    .london-partner-card > p {
        font-size: 11px;
    }

    .london-partner-status {
        left: 21px;
    }

    .london-partner-announcement {
        align-items: flex-start;
        padding: 20px 17px;
    }

    .london-partners-cta {
        padding: 24px 19px;
    }

    .london-partners-cta-content {
        align-items: flex-start;
    }

    .london-partners-cta-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        font-size: 17px;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .london-partner-card,
    .london-partner-icon,
    .london-partners-button {
        transition: none;
    }

    .london-partner-card:hover,
    .london-partners-button:hover {
        transform: none;
    }
}
/* =========================================================
   IBS LONDON 2027 — FINAL CALL TO ACTION
========================================================= */

.london-final-cta,
.london-final-cta * {
    box-sizing: border-box;
}

.london-final-cta {
    position: relative;
    isolation: isolate;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background: #020b17;
}

/* =========================================================
   BACKGROUND IMAGE AND OVERLAYS
========================================================= */

.london-final-cta-image {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.05) contrast(1.03);
    transition: transform 10s ease-in-out;
}

.london-final-cta:hover
.london-final-cta-image {
    transform: scale(1.045);
}

.london-final-cta-overlay,
.london-final-cta-gradient,
.london-final-cta-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.london-final-cta-overlay {
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(1, 9, 21, 0.9) 0%,
            rgba(2, 15, 31, 0.72) 32%,
            rgba(2, 15, 31, 0.55) 52%,
            rgba(2, 13, 27, 0.76) 75%,
            rgba(1, 9, 21, 0.92) 100%
        );
}

.london-final-cta-gradient {
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(1, 8, 18, 0.72) 0%,
            rgba(1, 9, 20, 0.1) 27%,
            rgba(1, 9, 20, 0.15) 60%,
            rgba(1, 8, 18, 0.94) 100%
        );
}

.london-final-cta-pattern {
    z-index: 1;
    opacity: 0.11;
    background-image:
        linear-gradient(
            rgba(224, 183, 91, 0.1) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(224, 183, 91, 0.1) 1px,
            transparent 1px
        );
    background-size: 90px 90px;
}

/* =========================================================
   DECORATIVE LINES
========================================================= */

.london-final-decoration {
    position: absolute;
    z-index: 2;
    top: 17%;
    width: 1px;
    height: 58%;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(224, 183, 91, 0.68),
            transparent
        );
}

.london-final-decoration::before,
.london-final-decoration::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 7px;
    height: 7px;
    transform: translateX(-50%) rotate(45deg);
    background: #d8aa4e;
    border: 1px solid #f0d183;
    box-shadow: 0 0 14px rgba(216, 170, 78, 0.5);
}

.london-final-decoration::before {
    top: 0;
}

.london-final-decoration::after {
    bottom: 0;
}

.final-decoration-left {
    left: 3%;
}

.final-decoration-right {
    right: 3%;
}

/* =========================================================
   MAIN CONTENT
========================================================= */

.london-final-cta-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 105px 30px 145px;
    text-align: center;
}

/* Section label */

.london-final-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-bottom: 22px;
}

.london-final-label > span {
    position: relative;
    width: 55px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            #dfb65b
        );
}

.london-final-label > span:last-child {
    transform: scaleX(-1);
}

.london-final-label > span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 5px;
    height: 5px;
    transform: translateY(-50%) rotate(45deg);
    background: #dfb65b;
}

.london-final-label small {
    color: #f0d486;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* Main title */

.london-final-cta-container > h2 {
    max-width: 1000px;
    margin: 0 auto 22px;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(43px, 5vw, 70px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.025em;
    text-shadow: 0 12px 35px rgba(0, 0, 0, 0.55);
}

.london-final-cta-container > h2 span {
    display: block;
    margin-top: 6px;
    color: #e0b459;
    background:
        linear-gradient(
            90deg,
            #f7e4ac,
            #d8aa4e 55%,
            #aa7225
        );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description */

.london-final-cta-container > p {
    max-width: 760px;
    margin: 0 auto 31px;
    color: #c0ccd7;
    font-size: 15px;
    line-height: 1.8;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

/* =========================================================
   EVENT DETAILS
========================================================= */

.london-final-details {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 32px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    background:
        linear-gradient(
            90deg,
            rgba(5, 29, 55, 0.8),
            rgba(13, 53, 91, 0.72),
            rgba(5, 29, 55, 0.8)
        );
    border: 1px solid rgba(224, 183, 91, 0.31);
    border-radius: 5px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.27);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.london-final-details > div {
    display: flex;
    align-items: center;
    gap: 11px;
    text-align: left;
}

.london-final-detail-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    color: #f0d486;
    background: rgba(218, 172, 78, 0.09);
    border: 1px solid rgba(224, 183, 91, 0.3);
    border-radius: 50%;
    font-size: 13px;
}

.london-final-details > div > span:last-child {
    display: flex;
    flex-direction: column;
}

.london-final-details small {
    color: #8fa3b7;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.london-final-details strong {
    margin-top: 2px;
    color: #f5f7fa;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.london-final-divider {
    width: 1px;
    height: 38px;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(224, 183, 91, 0.38),
            transparent
        );
}

/* =========================================================
   CTA BUTTONS
========================================================= */

.london-final-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.london-final-button {
    min-width: 195px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 23px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.london-final-button-gold {
    color: #06162b;
    background:
        linear-gradient(
            135deg,
            #f7e2a7,
            #d8aa4e 55%,
            #a66e21
        );
    border: 1px solid #f0d183;
    box-shadow: 0 15px 32px rgba(215, 169, 75, 0.25);
}

.london-final-button-gold:hover {
    color: #06162b;
    transform: translateY(-4px);
    box-shadow: 0 21px 40px rgba(215, 169, 75, 0.4);
}

.london-final-button-outline {
    color: #eef3f7;
    background: rgba(4, 25, 48, 0.66);
    border: 1px solid rgba(224, 183, 91, 0.48);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.london-final-button-outline i {
    color: #f0d486;
}

.london-final-button-outline:hover {
    color: #f0d486;
    background: rgba(218, 172, 78, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.london-final-button i {
    transition: transform 0.3s ease;
}

.london-final-button:hover .fa-arrow-right {
    transform: translateX(5px);
}

/* =========================================================
   TRUST LINE
========================================================= */

.london-final-trust {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.london-final-trust > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #93a7b9;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.london-final-trust > span i {
    color: #d8aa4e;
    font-size: 12px;
}

.london-final-trust-divider {
    width: 4px;
    height: 4px;
    transform: rotate(45deg);
    background: #d8aa4e;
}

/* =========================================================
   BOTTOM LOCATION STRIP
========================================================= */

.london-final-location {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    padding: 15px 25px;
    color: #93a7b9;
    background:
        linear-gradient(
            90deg,
            rgba(2, 13, 27, 0.96),
            rgba(9, 40, 72, 0.87),
            rgba(2, 13, 27, 0.96)
        );
    border-top: 1px solid rgba(224, 183, 91, 0.22);
    font-family: "Cinzel", Georgia, serif;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.london-final-location i {
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
    background: #d8aa4e;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
    .london-final-cta {
        min-height: 760px;
    }

    .london-final-cta-image {
        object-position: center;
    }

    .london-final-cta-overlay {
        background: rgba(2, 13, 27, 0.72);
    }

    .london-final-cta-container {
        padding-top: 90px;
    }

    .final-decoration-right {
        display: none;
    }
}

@media (max-width: 767px) {
    .london-final-cta {
        min-height: auto;
    }

    .london-final-cta-image {
        object-position: 55% center;
    }

    .london-final-cta-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2, 12, 26, 0.65),
                rgba(2, 14, 29, 0.78) 48%,
                rgba(2, 10, 22, 0.92)
            );
    }

    .london-final-cta-container {
        padding: 80px 20px 125px;
    }

    .london-final-label {
        gap: 9px;
    }

    .london-final-label > span {
        width: 35px;
    }

    .london-final-label small {
        font-size: 8px;
        letter-spacing: 0.12em;
    }

    .london-final-cta-container > h2 {
        font-size: clamp(35px, 9vw, 49px);
    }

    .london-final-cta-container > p {
        font-size: 13px;
    }

    .london-final-details {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 7px 16px;
    }

    .london-final-details > div {
        padding: 11px 0;
    }

    .london-final-divider {
        width: 100%;
        height: 1px;
        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(224, 183, 91, 0.36),
                transparent
            );
    }

    .london-final-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .london-final-button {
        width: 100%;
    }

    .london-final-trust {
        align-items: flex-start;
        flex-direction: column;
        width: fit-content;
        margin-right: auto;
        margin-left: auto;
    }

    .london-final-trust-divider {
        display: none;
    }

    .london-final-location {
        gap: 9px;
        padding-inline: 15px;
        font-size: 7px;
        text-align: center;
    }

    .final-decoration-left {
        left: 8px;
        opacity: 0.5;
    }
}

@media (max-width: 430px) {
    .london-final-cta-container {
        padding-top: 70px;
    }

    .london-final-cta-container > h2 {
        font-size: 33px;
    }

    .london-final-location span:last-child {
        display: none;
    }

    .london-final-location i:last-of-type {
        display: none;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .london-final-cta-image,
    .london-final-button,
    .london-final-button i {
        transition: none;
    }

    .london-final-cta:hover
    .london-final-cta-image {
        transform: none;
    }

    .london-final-button:hover {
        transform: none;
    }
}