﻿
@font-face {
    font-family: "Saudi Serif";
    src: url("./assets/fonts/SaudiSerif-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Saudi Serif";
    src: url("./assets/fonts/SaudiSerif-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Saudi Serif";
    src: url("./assets/fonts/SaudiSerif-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5.25rem;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #4c4d4c;
    background: #ffffff;
}

main > section[id] {
    scroll-margin-top: 4.75rem;
}

.font-saudi {
    font-family: "Saudi Serif", Georgia, serif;
}

.hero-scrim {
    display: none;
}

.hero-content-fade {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient( to right, rgba(20, 10, 24, 0.72) 0%, rgba(20, 10, 24, 0.45) 28%, rgba(20, 10, 24, 0.12) 48%, transparent 70% );
}

.attraction-carousel {
    position: relative;
    padding-top: 0;
}

.attraction-carousel-viewport {
    overflow: hidden;
}

.attraction-carousel-track {
    display: flex;
    align-items: stretch;
    gap: 1.25rem;
    transition: transform 0.4s ease;
    will-change: transform;
}

    .attraction-carousel-track .dest-card {
        flex: 0 0 100%;
        min-width: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        background: #ffffff;
        color: #4c4d4c;
        border-top: 4px solid #be008d;
        box-shadow: 0 16px 40px rgba(120, 0, 110, 0.24);
        transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }

@media (min-width: 640px) {
    .attraction-carousel-track .dest-card {
        flex: 0 0 calc((100% - 1.25rem) / 2);
    }
}

@media (min-width: 1024px) {
    .attraction-carousel-track .dest-card {
        flex: 0 0 calc((100% - 2.5rem) / 3);
    }
}

.attraction-carousel-track .dest-card:hover {
    transform: translateY(-8px);
    border-color: #78006e;
    box-shadow: 0 28px 56px rgba(190, 0, 141, 0.34);
}

.dest-card-media {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #4c4d4c;
}

    .dest-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.dest-card:hover .dest-card-media img {
    transform: scale(1.1);
}

.dest-card-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(120, 0, 110, 0.88) 0%, rgba(120, 0, 110, 0.35) 42%, rgba(76, 77, 76, 0.08) 100% );
    pointer-events: none;
}

.dest-card-place {
    display: block;
    width: 100%;
    font-family: "Saudi Serif", Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.15;
    text-transform: none;
    background: transparent;
    color: #be008d;
    padding: 0;
}

@media (min-width: 640px) {
    .dest-card-place {
        font-size: 1.6rem;
    }
}

.dest-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.35rem 1.35rem 1.55rem;
    background: linear-gradient(180deg, #ffffff 0%, #fff8fc 100%);
}

    .dest-card-body h3 {
        position: relative;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        padding-bottom: 0.75rem;
        font-family: "Saudi Serif", Georgia, serif;
        font-size: 1.125rem;
        font-weight: 400;
        line-height: 1.35;
        color: #4c4d4c;
    }

        .dest-card-body h3 > b {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            padding: 0.2rem 0.5rem;
            border-radius: 0.375rem;
            background: rgba(190, 0, 141, 0.1);
            color: #be008d;
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.2;
            white-space: nowrap;
        }

@media (min-width: 768px) {
    .dest-card-body h3 > b {
        font-size: 1.5rem;
    }
}

.dest-card-body h3 > span {
    flex: 1 1 0;
    min-width: 0;
}

.dest-card-body h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.5rem;
    height: 3px;
    background: #be008d;
    transition: width 0.3s ease;
}

.dest-card:hover .dest-card-body h3::after {
    width: 4rem;
}

.dest-card-body p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    flex: 0 0 auto;
    max-height: calc(1.625em * 3);
}

.dest-card-cta {
    margin-top: 1.25rem;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.45rem;
    background: #be008d;
    color: #ffffff;
    padding: 0.7rem 1.2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 8px 18px rgba(190, 0, 141, 0.28);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

    .dest-card-cta svg {
        width: 1rem;
        height: 1rem;
        transition: transform 0.25s ease;
    }

    .dest-card-cta:hover {
        background: #78006e;
        transform: translateY(-1px);
        box-shadow: 0 12px 24px rgba(120, 0, 110, 0.34);
    }

        .dest-card-cta:hover svg {
            transform: translateX(3px);
        }

.attraction-carousel-btn {
    position: absolute;
    top: 0;
    z-index: 2;
    display: none;
    height: 2.75rem;
    width: 2.75rem;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #be008d;
    border: none;
    box-shadow: 0 8px 20px rgba(120, 0, 110, 0.28);
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

@media (min-width: 640px) {
    .attraction-carousel {
        padding-top: 3.5rem;
    }

    .attraction-carousel-btn {
        display: inline-flex;
    }
}

.attraction-carousel-btn:hover:not(:disabled) {
    background: #be008d;
    color: #ffffff;
}

.attraction-carousel-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.attraction-carousel-btn--prev {
    right: 3.25rem;
}

.attraction-carousel-btn--next {
    right: 0;
}

.attraction-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.attraction-carousel-dot {
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 9999px;
    border: none;
    background: rgba(255, 255, 255, 0.45);
    transition: background 0.2s ease, width 0.2s ease;
}

    .attraction-carousel-dot.is-active {
        width: 1.35rem;
        background: #ffffff;
    }

.attraction-hero {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #4c4d4c;
}

    .attraction-hero img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.attraction-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(120, 0, 110, 0.92) 0%, rgba(120, 0, 110, 0.45) 45%, rgba(120, 0, 110, 0.15) 100% );
}

.attraction-hero-content {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 1.5rem;
    text-align: center;
    color: #ffffff;
}

.attraction-detail-item {
    border: 1px solid rgba(190, 0, 141, 0.12);
    background: #fafafa;
    box-shadow: 0 8px 20px rgba(120, 0, 110, 0.08);
}

.attraction-showcase {
    position: relative;
    padding-top: 0;
}

.attraction-showcase-viewport {
    overflow: hidden;
}

.attraction-showcase-track {
    display: flex;
    align-items: stretch;
    gap: 1.25rem;
    transition: transform 0.45s ease;
    will-change: transform;
}

    .attraction-showcase-track .attraction-panel {
        flex: 0 0 100%;
        min-width: 0;
        width: 100%;
    }

.attraction-showcase .attraction-carousel-btn {
    display: none;
}

.attraction-showcase .attraction-carousel-dots {
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .attraction-showcase {
        padding-top: 3.5rem;
    }

        .attraction-showcase .attraction-carousel-btn {
            display: inline-flex;
        }

        .attraction-showcase .attraction-carousel-dots {
            margin-top: 1.25rem;
        }
}

.attraction-panel {
    display: grid;
    overflow: hidden;
    background: #ffffff;
    color: #4c4d4c;
    box-shadow: 0 18px 48px rgba(76, 0, 70, 0.22);
}

@media (min-width: 1024px) {
    .attraction-panel {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        min-height: 420px;
    }

    .attraction-panel--reverse {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    }

        .attraction-panel--reverse .attraction-panel-media {
            order: 2;
        }

        .attraction-panel--reverse .attraction-panel-body {
            order: 1;
        }
}

.attraction-panel-media {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    background: #4c4d4c;
}

@media (min-width: 1024px) {
    .attraction-panel-media {
        min-height: 100%;
    }
}

.attraction-panel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.attraction-panel:hover .attraction-panel-media img {
    transform: scale(1.06);
}

.attraction-panel-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(120, 0, 110, 0.35) 0%, rgba(76, 77, 76, 0.08) 55%, rgba(190, 0, 141, 0.28) 100% );
    pointer-events: none;
}

.attraction-panel-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 1.35rem 1.65rem;
    background: linear-gradient(180deg, #ffffff 0%, #fff8fc 100%);
    border-top: 4px solid #be008d;
}

@media (min-width: 1024px) {
    .attraction-panel-body {
        border-top: none;
        border-left: 4px solid #be008d;
        padding: 2.25rem 2rem;
    }

    .attraction-panel--reverse .attraction-panel-body {
        border-left: none;
        border-right: 4px solid #be008d;
    }
}

.attraction-panel-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #be008d;
}

.attraction-panel-title {
    margin-top: 0.65rem;
    font-family: "Saudi Serif", Georgia, serif;
    font-size: clamp(1.5rem, 2.5vw, 2.15rem);
    font-weight: 700;
    line-height: 1.25;
    color: #4c4d4c;
}

    .attraction-panel-title span {
        display: block;
        margin-top: 0.2rem;
        font-size: 0.92em;
        font-weight: 500;
        color: #be008d;
    }

.attraction-panel-copy {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(76, 77, 76, 0.88);
}

.attraction-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

    .attraction-highlights li {
        background: rgba(190, 0, 141, 0.08);
        color: #78006e;
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
        font-weight: 600;
        line-height: 1.3;
    }

.attraction-panel .dest-card-cta {
    margin-top: 1.4rem;
}

.hotel-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hotel-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-card-img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    object-fit: cover;
    object-position: center;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(190, 0, 141, 0.16);
}

.hotel-card > .flex-1 {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.hotel-card h3 {
    min-height: 3.5rem;
    text-align: center;
}

.hotel-card a[href="#lets-connect"] {
    margin-top: auto;
}

.hotel-stars {
    color: #be008d;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-align: center;
}

.season-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .season-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 48px rgba(120, 0, 110, 0.35) !important;
    }

    .season-card ul li {
        transition: background 0.25s ease, color 0.25s ease;
    }

    .season-card:hover ul li {
        background: rgba(190, 0, 141, 0.16);
        color: #78006e;
    }

.events-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.events-switch-btn {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 0.7rem 1.15rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

    .events-switch-btn:hover {
        background: rgba(255, 255, 255, 0.16);
        transform: translateY(-2px);
    }

    .events-switch-btn.is-active {
        background: #ffffff;
        border-color: #ffffff;
        color: #be008d;
    }

        .events-switch-btn.is-active::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -8px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid #ffffff;
            transform: translateX(-50%);
            filter: drop-shadow(0 2px 3px rgba(120, 0, 110, 0.2));
            pointer-events: none;
        }

.events-view {
    display: none;
    opacity: 0;
}

    .events-view.is-active {
        display: block;
        animation: events-fade-in 0.5s ease forwards;
    }

@keyframes events-fade-in {
    from {
        opacity: 0;
        transform: translateY(0.6rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.events-hero-tall {
    position: relative;
    min-height: 22rem;
    overflow: hidden;
    background: #4c4d4c;
}

@media (min-width: 768px) {
    .events-hero-tall {
        min-height: 28rem;
    }
}

@media (min-width: 1024px) {
    .events-hero-tall {
        min-height: 32rem;
    }
}

.events-hero-tall > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.events-view.is-active .events-hero-tall > img {
    transform: scale(1.1);
}

.events-hero-tall-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(76, 77, 76, 0.35) 0%, rgba(76, 77, 76, 0.1) 40%, transparent 70% );
}

.events-hero-tall-copy {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    width: 100%;
    padding: 0 0 1.5rem;
    color: #ffffff;
    text-align: center;
    background: rgba(76, 77, 76, 0.38);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.18);
}

.events-hero-strip {
    display: block;
    position: relative;
    width: 100%;
    height: 1.25rem;
    max-height: 1.25rem;
    flex-shrink: 0;
    object-fit: cover;
    object-position: left center;
}

.events-hero-tall-inner {
    width: 100%;
    max-width: 56rem;
    margin: 0 auto;
    padding: 1.25rem 1.25rem 0;
}

@media (min-width: 768px) {
    .events-hero-tall-inner {
        padding: 1.5rem 2.5rem 0;
    }
}

.events-hero-desc-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

    .events-hero-desc-wrap.is-open {
        display: block;
        text-align: center;
    }

.events-hero-desc-block {
    min-width: 0;
    flex: 0 1 auto;
    max-width: calc(100% - 5.5rem);
}

.events-hero-desc-wrap:not(.is-open) .events-hero-desc-block {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.events-hero-desc-wrap.is-open .events-hero-desc-block {
    display: inline;
    max-width: none;
}

.events-hero-tall-copy p.events-hero-desc {
    display: inline;
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}

.events-read-more {
    display: inline;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: inherit;
    font-weight: 600;
    line-height: inherit;
    text-decoration: underline;
    text-underline-offset: 0.15em;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.events-hero-desc-wrap.is-open .events-read-more {
    margin-left: 0.35rem;
}

.events-read-more:hover {
    opacity: 0.85;
}

@media (min-width: 640px) {
    .events-hero-desc-wrap {
        font-size: 0.95rem;
    }
}

.events-zone-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
}

.event-zone-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 13.5rem;
    overflow: hidden;
    border: 1px solid rgba(190, 0, 141, 0.18);
    background: linear-gradient(165deg, rgba(190, 0, 141, 0.12) 0%, rgba(255, 255, 255, 0.96) 42%, #ffffff 100%);
    padding: 1.1rem 0.95rem 1rem;
    opacity: 0;
    transform: translateY(0.75rem);
    box-shadow: 0 8px 22px rgba(120, 0, 110, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

    .event-zone-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #78006e 0%, #be008d 50%, #ff5600 100%);
    }

    .event-zone-card::after {
        content: "";
        position: absolute;
        right: -1.25rem;
        bottom: -1.25rem;
        width: 5.5rem;
        height: 5.5rem;
        border-radius: 9999px;
        background: rgba(190, 0, 141, 0.08);
        transition: transform 0.35s ease, background 0.35s ease;
    }

    .event-zone-card h5 {
        position: relative;
        z-index: 1;
        margin-top: 0.35rem;
        font-size: 0.95rem;
        line-height: 1.25;
        color: #78006e;
    }

    .event-zone-card p:not(.zone-num) {
        position: relative;
        z-index: 1;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
        line-clamp: 5;
        overflow: hidden;
        margin-top: 0.45rem;
        font-size: 0.78rem;
        line-height: 1.5;
        color: #4c4d4c;
    }

@media (min-width: 1280px) {
    .event-zone-card {
        min-height: 14.5rem;
        padding: 1.2rem 1.05rem 1.1rem;
    }

        .event-zone-card h5 {
            font-size: 1.05rem;
        }

        .event-zone-card p:not(.zone-num) {
            font-size: 0.82rem;
            -webkit-line-clamp: 6;
            line-clamp: 6;
        }
}

@media (max-width: 1023px) {
    .events-zone-grid {
        display: flex;
        gap: 0.85rem;
        overflow-x: auto;
        padding-bottom: 0.35rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

        .events-zone-grid .event-zone-card {
            flex: 0 0 min(72vw, 15rem);
            min-height: 13rem;
            scroll-snap-align: start;
        }
}

.events-view.is-active .event-zone-card {
    animation: events-fade-in 0.55s ease forwards;
}

    .events-view.is-active .event-zone-card:nth-child(1) {
        animation-delay: 0.05s;
    }

    .events-view.is-active .event-zone-card:nth-child(2) {
        animation-delay: 0.12s;
    }

    .events-view.is-active .event-zone-card:nth-child(3) {
        animation-delay: 0.19s;
    }

    .events-view.is-active .event-zone-card:nth-child(4) {
        animation-delay: 0.26s;
    }

    .events-view.is-active .event-zone-card:nth-child(5) {
        animation-delay: 0.33s;
    }

.event-zone-card:hover {
    transform: translateY(-6px);
    border-color: #be008d;
    background: linear-gradient(165deg, rgba(190, 0, 141, 0.2) 0%, #ffffff 48%, #ffffff 100%);
    box-shadow: 0 18px 36px rgba(190, 0, 141, 0.22);
}

    .event-zone-card:hover::after {
        transform: scale(1.2);
        background: rgba(190, 0, 141, 0.14);
    }

.event-zone-card .zone-num {
    position: relative;
    z-index: 1;
    font-family: "Saudi Serif", Georgia, serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #be008d;
    line-height: 1;
    letter-spacing: 0.02em;
}

.event-zone-card:hover .zone-num {
    color: #78006e;
}

.event-zone-card:hover h5 {
    color: #be008d;
}

.events-love-grid {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .events-love-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.events-love-grid li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4c4d4c;
}

    .events-love-grid li::before {
        content: "";
        flex: 0 0 auto;
        width: 0.45rem;
        height: 0.45rem;
        margin-top: 0.4rem;
        background: #be008d;
    }

@media (prefers-reduced-motion: reduce) {
    .events-view.is-active,
    .events-view.is-active .event-zone-card,
    .events-hero-tall > img {
        animation: none;
        transition: none;
        transform: none;
        opacity: 1;
    }
}

.hotel-tabs {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 0.15rem;
}

    .hotel-tabs::-webkit-scrollbar {
        display: none;
    }

    .hotel-tabs .tab-btn {
        position: relative;
        flex: 1 1 0;
        min-width: 0;
        white-space: nowrap;
        text-align: center;
        border: none;
        box-shadow: 0 4px 14px rgba(76, 77, 76, 0.16) !important;
    }

        .hotel-tabs .tab-btn.is-active {
            box-shadow: 0 8px 22px rgba(190, 0, 141, 0.4) !important;
        }

            .hotel-tabs .tab-btn.is-active::after {
                content: "";
                position: absolute;
                left: 50%;
                bottom: -8px;
                width: 0;
                height: 0;
                border-left: 8px solid transparent;
                border-right: 8px solid transparent;
                border-top: 8px solid #be008d;
                transform: translateX(-50%);
                filter: drop-shadow(0 2px 3px rgba(190, 0, 141, 0.25));
                pointer-events: none;
            }

@media (max-width: 639px) {
    .hotel-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
        overflow-x: visible;
        margin-bottom: 0.5rem;
    }

        .hotel-tabs .tab-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 2.875rem;
            padding: 0.5rem 0.625rem !important;
            font-size: 0.8125rem !important;
            line-height: 1.25;
            white-space: normal;
            -webkit-tap-highlight-color: transparent;
        }

            .hotel-tabs .tab-btn.is-active {
                background: #be008d !important;
                color: #ffffff !important;
            }

                .hotel-tabs .tab-btn.is-active::after {
                    display: none;
                }
}

@media (min-width: 640px) {
    .hotel-tabs {
        gap: 0.5rem;
        overflow-x: visible;
    }

        .hotel-tabs .tab-btn {
            flex: 0 0 auto;
        }
}

@media (min-width: 1024px) {
    .hotel-tabs {
        gap: 0.75rem;
    }

        .hotel-tabs .tab-btn {
            min-width: 9.5rem;
            padding-left: 2rem;
            padding-right: 2rem;
        }
}

.hotel-carousel {
    position: relative;
    padding-top: 0;
}

.hotel-carousel-viewport {
    overflow: hidden;
}

.hotel-carousel-track {
    display: flex;
    align-items: stretch;
    gap: 1.25rem;
    transition: transform 0.4s ease;
    will-change: transform;
}

    .hotel-carousel-track .hotel-card {
        flex: 0 0 100%;
        min-width: 0;
        align-self: stretch;
    }

@media (min-width: 640px) {
    .hotel-carousel {
        padding-top: 3.5rem;
    }

    .hotel-carousel-track .hotel-card {
        flex: 0 0 calc((100% - 1.25rem) / 2);
    }
}

@media (min-width: 1024px) {
    .hotel-carousel-track .hotel-card {
        flex: 0 0 calc((100% - 3.75rem) / 4);
    }
}

.hotel-carousel-btn {
    position: absolute;
    top: 0;
    z-index: 2;
    display: none;
    height: 2.75rem;
    width: 2.75rem;
    align-items: center;
    justify-content: center;
    background: #be008d;
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 20px rgba(120, 0, 110, 0.28);
    transition: background 0.2s ease, opacity 0.2s ease;
}

@media (min-width: 640px) {
    .hotel-carousel-btn {
        display: inline-flex;
    }
}

.hotel-carousel-btn:hover:not(:disabled) {
    background: #78006e;
}

.hotel-carousel-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.hotel-carousel-btn--prev {
    right: 3.25rem;
}

.hotel-carousel-btn--next {
    right: 0;
}

.hotel-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.hotel-carousel-dot {
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 999px;
    background: rgba(76, 77, 76, 0.25);
    border: none;
    padding: 0;
    transition: background 0.2s ease, width 0.2s ease;
}

    .hotel-carousel-dot.is-active {
        width: 1.5rem;
        background: #be008d;
    }

.scroll-top-btn {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 70;
    display: inline-flex;
    height: 2.75rem;
    width: 2.75rem;
    align-items: center;
    justify-content: center;
    background: #be008d;
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 28px rgba(120, 0, 110, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.send-query-fixed {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: translateY(-50%);
    background: #be008d;
    color: #ffffff;
    padding: 1.15rem 0.7rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(120, 0, 110, 0.35);
    transition: background 0.2s ease;
}

    .send-query-fixed:hover {
        background: #78006e;
    }

.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #78006e;
}

@media (min-width: 640px) {
    .scroll-top-btn {
        right: 1.75rem;
        bottom: 1.75rem;
    }
}

.media-centers-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 70% 50% at 0% 0%, rgba(190, 0, 141, 0.1), transparent 55%), radial-gradient(ellipse 60% 45% at 100% 100%, rgba(61, 194, 194, 0.1), transparent 50%), #ffffff;
    padding-block: 3rem;
}

@media (min-width: 1024px) {
    .media-centers-section {
        padding-block: 4.5rem;
    }
}

.media-gallery {
    max-width: 58rem;
    margin-top: 1.75rem;
    margin-inline: auto;
}

.media-collage-frame {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 1.35fr 1fr 1fr;
    gap: 0.55rem;
    aspect-ratio: 16 / 11;
    padding: 0.7rem;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(76, 77, 76, 0.14);
}

@media (min-width: 768px) {
    .media-collage-frame {
        gap: 0.8rem;
        padding: 0.95rem;
    }
}

.media-gallery-item {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    border: none;
    padding: 0;
    cursor: pointer;
    background: #4c4d4c;
    -webkit-tap-highlight-color: transparent;
}

.media-gallery-item--a {
    grid-area: 1 / 1 / 2 / 2;
}

.media-gallery-item--b {
    grid-area: 1 / 2 / 2 / 3;
}

.media-gallery-item--c {
    grid-area: 1 / 3 / 3 / 4;
}

.media-gallery-item--d {
    grid-area: 2 / 1 / 3 / 2;
}

.media-gallery-item--e {
    grid-area: 3 / 1 / 4 / 2;
}

.media-gallery-item--f {
    grid-area: 2 / 2 / 4 / 3;
}

.media-gallery-item--g {
    grid-area: 3 / 3 / 4 / 4;
}

.media-gallery-item--circle {
    position: absolute;
    z-index: 3;
    top: 58%;
    left: 66.666%;
    width: min(28%, 9.5rem);
    height: auto;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    border-radius: 9999px;
    border: 0.45rem solid #ffffff;
    box-shadow: 0 10px 28px rgba(76, 77, 76, 0.18);
}

@media (min-width: 768px) {
    .media-gallery-item--circle {
        width: min(26%, 11rem);
        border-width: 0.6rem;
    }
}

.media-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    transition: transform 0.7s ease;
}

.media-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(76, 77, 76, 0.78) 0%, rgba(120, 0, 110, 0.22) 45%, transparent 72% );
    opacity: 0.88;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.media-gallery-item--circle::after {
    border-radius: 9999px;
}

.media-gallery-label {
    position: absolute;
    left: 0.45rem;
    right: 0.45rem;
    bottom: 0.4rem;
    z-index: 1;
    color: #ffffff;
    font-family: "Saudi Serif", Georgia, serif;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.15;
    text-align: left;
    pointer-events: none;
}

.media-gallery-item--circle .media-gallery-label {
    left: 50%;
    right: auto;
    bottom: 18%;
    width: max-content;
    max-width: 85%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.7rem;
}

@media (min-width: 768px) {
    .media-gallery-label {
        left: 0.65rem;
        right: 0.65rem;
        bottom: 0.55rem;
        font-size: 0.85rem;
    }

    .media-gallery-item--circle .media-gallery-label {
        font-size: 0.95rem;
    }
}

.media-gallery-item:hover img,
.media-gallery-item:focus-visible img {
    transform: scale(1.08);
}

.media-gallery-item:hover::after,
.media-gallery-item:focus-visible::after {
    opacity: 1;
    background: linear-gradient( to top, rgba(120, 0, 110, 0.88) 0%, rgba(190, 0, 141, 0.32) 48%, transparent 75% );
}

.media-gallery-item:focus-visible {
    outline: 2px solid #be008d;
    outline-offset: 3px;
}

.media-gallery-item--circle:focus-visible {
    outline-offset: 4px;
}

@media (max-width: 639px) {
    .media-collage-frame {
        gap: 0.4rem;
        padding: 0.5rem;
        aspect-ratio: 1 / 1.05;
    }

    .media-gallery-item--circle {
        width: min(32%, 7.25rem);
        border-width: 0.35rem;
        top: 60%;
    }

    .media-gallery-label {
        font-size: 0.55rem;
        left: 0.3rem;
        right: 0.3rem;
        bottom: 0.28rem;
    }

    .media-gallery-item--circle .media-gallery-label {
        font-size: 0.58rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .media-gallery-item img,
    .media-gallery-item::after {
        transition: none;
    }

    .media-gallery-item:hover img,
    .media-gallery-item:focus-visible img {
        transform: none;
    }
}

.media-asset-section {
    max-width: 58rem;
    margin-inline: auto;
}

.media-asset-tabs {
    max-width: 22rem;
    margin-inline: auto;
}

.media-asset-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .media-asset-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.media-asset-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(76, 77, 76, 0.1);
}

.media-asset-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(76, 77, 76, 0.08);
}

.media-asset-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.media-asset-card__media--emailer {
    aspect-ratio: auto;
    height: 16rem;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.media-asset-card__media--emailer img {
    width: 100%;
    height: auto;
    object-fit: unset;
}

@media (min-width: 640px) {
    .media-asset-card__media--emailer {
        height: 18rem;
    }
}

@media (min-width: 1024px) {
    .media-asset-card__media--emailer {
        height: 20rem;
    }
}

.media-asset-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem;
    padding: 0.7rem 1rem;
    background: #be008d;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.25s ease;
}

.media-asset-download:hover {
    background: #78006e;
}

.media-asset-download:focus-visible {
    outline: 2px solid #be008d;
    outline-offset: 3px;
}

.media-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 90;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: rgba(76, 77, 76, 0.88);
}

    .media-lightbox.is-open {
        display: flex;
        animation: modal-fade 0.25s ease;
    }

.media-lightbox-inner {
    position: relative;
    width: min(100%, 1080px);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.media-lightbox-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    min-height: 45vh;
    max-height: 78vh;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

    .media-lightbox-stage img {
        max-width: 100%;
        max-height: 78vh;
        width: auto;
        height: auto;
        object-fit: contain;
    }

.media-lightbox-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
}

.media-lightbox-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 3;
    display: inline-flex;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    background: #be008d;
    color: #ffffff;
    border: none;
}

    .media-lightbox-close svg {
        width: 0.9rem;
        height: 0.9rem;
    }

.media-lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    height: 1.65rem;
    width: 1.65rem;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
    color: #be008d;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

    .media-lightbox-nav svg {
        width: 0.75rem;
        height: 0.75rem;
    }

.media-lightbox-nav--prev {
    left: 0.4rem;
}

.media-lightbox-nav--next {
    right: 0.4rem;
}

.media-lightbox-close:hover,
.media-lightbox-nav:hover {
    background: #78006e;
    color: #ffffff;
}

@media (min-width: 768px) {
    .media-lightbox {
        padding: 1rem;
    }

    .media-lightbox-caption {
        font-size: 0.95rem;
    }

    .media-lightbox-close {
        top: 0.75rem;
        right: 0.75rem;
        height: 2.25rem;
        width: 2.25rem;
    }

        .media-lightbox-close svg {
            width: 1rem;
            height: 1rem;
        }

    .media-lightbox-nav {
        height: 2rem;
        width: 2rem;
    }

        .media-lightbox-nav svg {
            width: 0.9rem;
            height: 0.9rem;
        }

    .media-lightbox-nav--prev {
        left: 0.65rem;
    }

    .media-lightbox-nav--next {
        right: 0.65rem;
    }
}

.tab-panel {
    display: none;
}

    .tab-panel.is-active {
        display: block;
    }

.hub-modal {
    display: none;
}

    .hub-modal.is-open {
        display: flex;
        animation: modal-fade 0.25s ease;
    }

        .hub-modal.is-open .hub-modal-panel {
            animation: modal-rise 0.3s ease;
        }

@keyframes modal-fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modal-rise {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

body.modal-open {
    overflow: hidden;
}

.hub-trigger {
    align-items: stretch;
    justify-content: flex-start;
}

.hub-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 65% 50% at 0% 0%, rgba(190, 0, 141, 0.1), transparent 55%), radial-gradient(ellipse 55% 45% at 100% 100%, rgba(61, 194, 194, 0.12), transparent 50%), #ffffff;
}

.hub-panel {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    width: 100%;
    border: none;
    border-left: 4px solid #be008d;
    background: #ffffff;
    padding: 1.25rem 1.25rem 1.25rem 1.1rem;
    text-align: left;
    box-shadow: 0 10px 28px rgba(120, 0, 110, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
    cursor: pointer;
}

@media (min-width: 768px) {
    .hub-panel {
        grid-template-columns: 4.5rem auto 1fr auto;
        gap: 1.35rem;
        padding: 1.5rem 1.75rem;
    }
}

.hub-panel:hover {
    transform: translateY(-4px);
    border-left-color: #78006e;
    background: linear-gradient(105deg, rgba(190, 0, 141, 0.06), #ffffff 45%);
    box-shadow: 0 18px 40px rgba(190, 0, 141, 0.16);
}

.hub-panel-num {
    font-family: "Saudi Serif", Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(190, 0, 141, 0.28);
    transition: color 0.25s ease;
}

.hub-panel:hover .hub-panel-num {
    color: #be008d;
}

.hub-panel-icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    background: rgba(190, 0, 141, 0.1);
    color: #be008d;
    transition: background 0.25s ease, color 0.25s ease;
}

@media (min-width: 768px) {
    .hub-panel-icon {
        display: inline-flex;
    }
}

.hub-panel:hover .hub-panel-icon {
    background: #be008d;
    color: #ffffff;
}

.hub-panel-copy {
    min-width: 0;
}

.hub-panel-title {
    font-family: "Saudi Serif", Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #78006e;
    line-height: 1.2;
}

.hub-panel-desc {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(76, 77, 76, 0.82);
}

.hub-panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #be008d;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

@media (min-width: 768px) {
    .hub-panel-cta {
        margin-top: 0;
        white-space: nowrap;
    }
}

.hub-panel-cta svg {
    transition: transform 0.25s ease;
}

.hub-panel:hover .hub-panel-cta svg {
    transform: translateX(3px);
}

#desktop-nav {
    display: none;
    align-items: center;
    gap: 0.15rem;
}

@media (min-width: 1024px) {
    #desktop-nav {
        display: flex;
    }
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
    padding: 0.55rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s ease, background 0.2s ease;
}

@media (min-width: 1280px) {
    .nav-link {
        padding: 0.6rem 0.85rem;
        font-size: 0.875rem;
    }
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.25rem;
    height: 2px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #ffffff;
}

.nav-link.is-active {
    font-weight: 700;
}

    .nav-link:hover::after,
    .nav-link.is-active::after {
        transform: scaleX(1);
    }

.nav-link-home {
    padding-left: 0.55rem;
    padding-right: 0.55rem;
}

    .nav-link-home svg {
        width: 1.15rem;
        height: 1.15rem;
        flex-shrink: 0;
    }

    .nav-link-home::after {
        left: 0.45rem;
        right: 0.45rem;
    }

#mobile-menu .nav-link-home {
    gap: 0.55rem;
}

    #mobile-menu .nav-link-home svg {
        width: 1.2rem;
        height: 1.2rem;
    }

.nav-cta {
    display: inline-flex;
    align-items: center;
    align-self: center;
    margin-left: 0.35rem;
    padding: 0.6rem 1rem;
    background: #be008d;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .nav-cta:hover {
        background: #78006e;
        transform: translateY(-1px);
    }

@media (min-width: 1280px) {
    .nav-cta {
        font-size: 0.875rem;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .nav-link {
        padding: 0.5rem 0.45rem;
        font-size: 0.75rem;
    }

        .nav-link::after {
            left: 0.45rem;
            right: 0.45rem;
        }

    .nav-cta {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

#site-header {
    background: transparent;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

    #site-header:not(.is-scrolled)::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 140px;
        background: linear-gradient( to bottom, rgba(20, 10, 24, 0.78) 0%, rgba(20, 10, 24, 0.35) 55%, rgba(20, 10, 24, 0) 100% );
        pointer-events: none;
        z-index: -1;
    }

    #site-header.is-scrolled {
        background: #ffffff;
        box-shadow: 0 8px 28px rgba(76, 77, 76, 0.1);
    }

        #site-header.is-scrolled::before {
            display: none;
        }

    #site-header .header-inner {
        position: relative;
        z-index: 1;
        transition: padding 0.25s ease;
    }

#header-logo {
    transition: height 0.25s ease, filter 0.25s ease;
}

#site-header.is-scrolled .header-inner {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
}

#site-header.is-scrolled #header-logo {
    height: 2.25rem;
    filter: none;
}

@media (min-width: 768px) {
    #site-header.is-scrolled #header-logo {
        height: 2.4rem;
    }
}

@media (min-width: 1024px) {
    #site-header.is-scrolled #header-logo {
        height: 3.25rem;
    }
}

#site-header.is-scrolled .nav-link {
    color: #4c4d4c;
}

    #site-header.is-scrolled .nav-link::after {
        background: #be008d;
    }

    #site-header.is-scrolled .nav-link:hover,
    #site-header.is-scrolled .nav-link.is-active {
        color: #be008d;
    }

#menu-toggle {
    position: relative;
    z-index: 2;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

    #menu-toggle .menu-icon-close {
        display: none;
    }

    #menu-toggle[aria-expanded="true"] .menu-icon-open {
        display: none;
    }

    #menu-toggle[aria-expanded="true"] .menu-icon-close {
        display: block;
    }

#site-header.is-scrolled #menu-toggle {
    border-color: rgba(190, 0, 141, 0.35);
    color: #be008d;
    background: rgba(190, 0, 141, 0.08);
}

    #site-header.is-scrolled #menu-toggle:hover,
    #site-header.is-scrolled #menu-toggle[aria-expanded="true"] {
        background: #be008d;
        border-color: #be008d;
        color: #ffffff;
    }

#mobile-menu {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(120, 0, 110, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

    #mobile-menu .mobile-menu-inner {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        padding: 1rem 1.25rem 1.35rem;
    }

    #mobile-menu .nav-link {
        width: 100%;
        padding: 0.85rem 0.75rem;
        color: rgba(255, 255, 255, 0.92);
        border-left: 3px solid transparent;
    }

        #mobile-menu .nav-link::after {
            display: none;
        }

        #mobile-menu .nav-link.is-active,
        #mobile-menu a.is-active {
            font-weight: 700;
            color: #ffffff;
            border-left-color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
        }

    #mobile-menu .mobile-menu-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.65rem;
        margin-top: 0.85rem;
    }

        #mobile-menu .mobile-menu-actions a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 0.75rem;
            font-size: 0.875rem;
            font-weight: 700;
            color: #ffffff;
            background: #be008d;
            transition: background 0.2s ease;
        }

#site-header.is-scrolled #mobile-menu {
    border-top-color: rgba(190, 0, 141, 0.15);
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(76, 77, 76, 0.12);
}

    #site-header.is-scrolled #mobile-menu .nav-link {
        color: #4c4d4c;
    }

        #site-header.is-scrolled #mobile-menu .nav-link.is-active,
        #site-header.is-scrolled #mobile-menu a.is-active {
            color: #be008d;
            border-left-color: #be008d;
            background: rgba(190, 0, 141, 0.06);
        }

.hub-detail-card {
    box-shadow: 0 10px 28px rgba(76, 77, 76, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .hub-detail-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 36px rgba(190, 0, 141, 0.18);
    }

.hub-routes-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(76, 77, 76, 0.15);
}

.hub-routes-table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    text-align: left;
}

    .hub-routes-table th,
    .hub-routes-table td {
        padding: 0.85rem 1rem;
        border-bottom: 1px solid rgba(76, 77, 76, 0.12);
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .hub-routes-table th {
        background: #be008d;
        color: #ffffff;
        font-weight: 600;
    }

    .hub-routes-table tbody tr:nth-child(even) {
        background: rgba(190, 0, 141, 0.04);
    }

    .hub-routes-table tbody tr:last-child td {
        border-bottom: none;
    }

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

@keyframes float-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-hero {
    animation: float-in 0.9s ease forwards;
}

.animate-hero-delay {
    animation: float-in 0.9s ease 0.2s forwards;
    opacity: 0;
}

.hero-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 1.35rem;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transform: translateX(-50%);
    text-decoration: none;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

    .hero-scroll-hint:hover {
        color: #ffffff;
        opacity: 0.85;
    }

    .hero-scroll-hint svg {
        width: 2rem;
        height: 3rem;
    }

    .hero-scroll-hint .hero-scroll-wheel {
        animation: hero-scroll-wheel 1.5s ease-in-out infinite;
    }

@media (min-width: 768px) {
    .hero-scroll-hint {
        bottom: 2rem;
    }

        .hero-scroll-hint svg {
            width: 2.35rem;
            height: 3.5rem;
        }
}

@keyframes hero-scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    70% {
        transform: translateY(5px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

.connect-form-card {
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(120, 0, 110, 0.28);
}

.connect-form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #be008d;
}

.connect-form-field input,
.connect-form-field textarea {
    width: 100%;
    border: 1px solid rgba(76, 77, 76, 0.2);
    background: #ffffff;
    color: #4c4d4c;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .connect-form-field input:focus,
    .connect-form-field textarea:focus {
        border-color: #be008d;
        box-shadow: 0 0 0 3px rgba(190, 0, 141, 0.12);
    }

    .connect-form-field input::placeholder,
    .connect-form-field textarea::placeholder {
        color: rgba(76, 77, 76, 0.45);
    }

.connect-form-field textarea {
    min-height: 7.5rem;
    resize: vertical;
}

