/* ==============================================
   DYNAMIC BRAND PAGE — brand-dynamic.css
   Matches hmhhotelgroup.com/coral-hotels-resort &
   the bahi-hotels-resorts layout pattern.
   ============================================== */

/* ─── RESET / SHARED ────────────────────────── */
.bdp-page * {
    box-sizing: border-box;
}

/* ─── 1. HERO ─────────────────────────────────── */
.bdp-hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    background: #0b1a26;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bdp-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 0;
}

.bdp-hero-slide.active {
    opacity: 1;
}

.bdp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.52) 100%);
    z-index: 1;
}

.bdp-hero-header {
    position: relative;
    z-index: 10;
}

.bdp-hero-content {
    position: absolute;
    bottom: 64px;
    left: 0;
    z-index: 10;
    padding: 0 56px;
}

.bdp-hero-title {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: clamp(1.4rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
    line-height: 1.2;
}

/* Carousel arrow buttons on hero */
.bdp-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 12;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.bdp-hero-arrow:hover {
    background: rgba(194, 160, 85, 0.35);
    border-color: #c2a055;
}

.bdp-hero-arrow--prev {
    left: 24px;
}

.bdp-hero-arrow--next {
    right: 24px;
}

/* ─── 2. SHARED LAYOUT WRAPPER ──────────────── */
.bdp-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 56px;
}

/* ─── 3. INTRO / WELCOME ─────────────────────── */
.bdp-intro {
    background: #f0efed;
    padding: 80px 24px 64px;
    text-align: center;
}

.bdp-gold-label {
    display: block;
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: #8a7045;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bdp-intro-title {
    font-family: var(--font-serif, Georgia, serif);
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
    line-height: 1.25;
}

.bdp-intro-body {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.92rem;
    font-weight: 300;
    color: #555;
    line-height: 1.9;
    max-width: 680px;
    margin: 0 auto 48px;
}

.bdp-gold-divider {
    width: 130px;
    height: 3px;
    background: #8a7045;
    margin: 0 auto;
}

/* ─── 4. SECTION SHARED ──────────────────────── */
.bdp-section-heading {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: clamp(0.9rem, 1.6vw, 1.25rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.bdp-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.bdp-underline-link {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s;
    white-space: nowrap;
}

.bdp-underline-link:hover {
    color: #8a7045;
}

.bdp-gold-rule {
    width: 130px;
    height: 3px;
    background: #8a7045;
    margin: 48px auto 0;
}

/* ─── 5. EXPERIENCE SLIDER (Coral Hotels style) ──── */
.bdp-experience {
    background: #f0efed;
    padding: 64px 0 48px;
}

/* Slider outer wrapper */
.bdp-exp-slider {
    width: 100%;
    overflow: hidden;
}

/* ── 3-column grid ── */
.bdp-exp-grid {
    display: grid;
    grid-template-columns: 1fr 1.18fr 1fr;
    /* center col slightly wider */
    align-items: end;
    /* bottom-align all cards */
    gap: 0;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.38s ease;
    will-change: transform, opacity;
}

/* Slide animations */
@keyframes bdpSlideInLeft {
    from {
        transform: translateX(4%);
        opacity: 0;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

@keyframes bdpSlideInRight {
    from {
        transform: translateX(-4%);
        opacity: 0;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.bdp-exp-anim-left {
    animation: bdpSlideInLeft 0.38s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.bdp-exp-anim-right {
    animation: bdpSlideInRight 0.38s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ── Base card ── */
.bdp-exp-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

/* ── Side cards: slightly shorter, no elevation ── */
.bdp-exp-card--side {
    box-shadow: none;
}

/* ── Center card: elevated (taller via -24px top margin) ── */
.bdp-exp-card--center {
    z-index: 2;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    margin-top: -28px;
    /* lifts the card above side cards */
}

/* ── BADGE (top-right corner of center card image) ── */
.bdp-exp-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 9px 16px;
    z-index: 5;
    white-space: nowrap;
}

/* ── Card image wrapper ── */
.bdp-exp-card-img {
    position: relative;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

/* Side card image height */
.bdp-exp-card--side .bdp-exp-card-img {
    height: 320px;
}

/* Center card image height — taller */
.bdp-exp-card--center .bdp-exp-card-img,
.bdp-exp-card-img--center {
    height: 380px;
}

.bdp-exp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.bdp-exp-card:hover .bdp-exp-card-img img {
    transform: scale(1.04);
}

/* ── Side card: subtle bottom gradient + promo text ── */
.bdp-exp-side-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 20px 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
    pointer-events: none;
}

.bdp-exp-side-promo {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.4;
}

/* ── Center card: darker bottom gradient + icon + title ── */
.bdp-exp-center-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 64px 28px 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    pointer-events: none;
}

.bdp-exp-center-icon {
    color: rgba(255, 255, 255, 0.85);
    line-height: 0;
}

.bdp-exp-center-promo {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin: 0;
}

/* ── Card footer (below image) ── */
.bdp-exp-card-foot {
    background: #fff;
    flex-grow: 1;
}

/* Side card footer: just the title link — minimal */
.bdp-exp-card-foot--side {
    padding: 18px 20px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
}

.bdp-exp-side-title {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    line-height: 1.5;
    transition: opacity 0.2s;
}

.bdp-exp-side-title:hover {
    opacity: 0.7;
}

/* Center card footer: title + desc + READ MORE + BOOK NOW */
.bdp-exp-card-foot--center {
    padding: 22px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bdp-exp-center-title {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.5;
}

.bdp-exp-center-desc {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.82rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bdp-exp-readmore {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.bdp-exp-readmore:hover {
    color: #8a7045;
}

.bdp-exp-book-btn {
    display: inline-block;
    color: #fff;
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 28px;
    text-decoration: none;
    align-self: flex-start;
    transition: filter 0.22s;
    border: none;
    cursor: pointer;
}

.bdp-exp-book-btn:hover {
    filter: brightness(1.15);
    color: #fff;
}

/* ── Controls: ← ⏸ → ── */
.bdp-exp-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.bdp-exp-ctrl-btn {
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: color 0.2s;
    line-height: 0;
}

.bdp-exp-ctrl-btn:hover {
    color: #8a7045;
}

/* Pause/play button gets a circle border */
.bdp-exp-ctrl-btn--pause {
    border: 1.5px solid #aaa;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    transition: border-color 0.2s, color 0.2s;
}

.bdp-exp-ctrl-btn--pause:hover,
.bdp-exp-ctrl-btn--paused {
    border-color: #8a7045;
    color: #8a7045;
}

/* ── Dot pagination ── */
.bdp-exp-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.bdp-exp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid #aaa;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.bdp-exp-dot:hover {
    border-color: #8a7045;
    transform: scale(1.2);
}

.bdp-exp-dot--active {
    transform: scale(1.2);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .bdp-exp-grid {
        grid-template-columns: 1fr 1.1fr 1fr;
    }

    .bdp-exp-card--side .bdp-exp-card-img {
        height: 250px;
    }

    .bdp-exp-card-img--center,
    .bdp-exp-card--center .bdp-exp-card-img {
        height: 300px;
    }

    .bdp-exp-card--center {
        margin-top: -18px;
    }
}

@media (max-width: 767px) {
    .bdp-exp-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bdp-exp-card--center {
        margin-top: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }

    .bdp-exp-card--side .bdp-exp-card-img {
        height: 220px;
    }

    .bdp-exp-card-img--center,
    .bdp-exp-card--center .bdp-exp-card-img {
        height: 260px;
    }

    .bdp-exp-card-foot--side {
        min-height: auto;
    }
}



/* ─── 6. OUR HOTELS SECTION ──────────────────── */
.bdp-our-hotels {
    background: transparent;
    padding: 64px 0 48px;
}

.bdp-hotel-row {
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-bottom: 48px;
}

.bdp-hotel-img-wrap {
    width: 80%;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 2px;
}

.bdp-hotel-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.bdp-hotel-row:hover .bdp-hotel-img {
    transform: scale(1.02);
}

.bdp-hotel-info {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36%;
    background: #1e1e1e;
    padding: 36px 32px 32px;
    color: #fff;
    z-index: 2;
}

.bdp-hotel-name {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    line-height: 1.4;
}

.bdp-hotel-meta {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.bdp-hotel-meta a {
    color: #c2a055;
    text-decoration: none;
    font-weight: 500;
}

.bdp-hotel-meta a:hover {
    opacity: 0.8;
}

.bdp-hotel-meta svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.bdp-hotel-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.bdp-hotel-btn-outline {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 16px;
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s;
}

.bdp-hotel-btn-outline:hover {
    border-color: #c2a055;
    color: #c2a055;
}

.bdp-hotel-btn-gold {
    display: inline-block;
    background: #8a7045;
    color: #fff;
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 16px;
    text-decoration: none;
    transition: background 0.25s;
}

.bdp-hotel-btn-gold:hover {
    background: #6e5934;
    color: #fff;
}

.bdp-no-hotels {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    padding: 40px 0;
}

/* ─── 7. LOCATIONS / MAP SECTION ─────────────── */
.bdp-locations {
    background: #f0efed;
    padding-top: 64px;
    padding-bottom: 0;
}

.bdp-where-bar {
    background: #f0efed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 40px 56px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.bdp-where-title {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: clamp(0.9rem, 1.6vw, 1.25rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

.bdp-map-row {
    position: relative;
    width: 100%;
}

.bdp-map-wrap {
    width: 100%;
    height: 500px;
    background: #e0e0e0;
}

.bdp-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(15%);
}

.bdp-map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d0c8b8, #e8e0d0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: #8a7045;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bdp-map-placeholder svg {
    opacity: 0.5;
}

/* Hotel cards overlaid on top-right of map */
.bdp-map-hotel-card {
    position: absolute;
    top: 0;
    right: 0;
    width: 360px;
    max-height: 500px;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.bdp-map-hotel-card-item {
    border-bottom: 1px solid #eee;
}

.bdp-map-hotel-card-item:last-child {
    border-bottom: none;
}

.bdp-map-hotel-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.bdp-map-hotel-info {
    background: #1e1e1e;
    padding: 20px 20px 24px;
}

.bdp-map-hotel-name {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.bdp-map-hotel-addr,
.bdp-map-hotel-phone {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.76rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.bdp-map-hotel-phone a {
    color: #c2a055;
    text-decoration: none;
    font-weight: 500;
}

.bdp-map-hotel-phone a:hover {
    opacity: 0.8;
}

/* No map placeholder */
.bdp-no-map {
    text-align: center;
    padding: 60px 24px;
    color: #aaa;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #f0efed;
}

/* ─── WHERE WE ARE section ───────────────────── */
.bdp-where-section {
    padding: 60px 0 0;
    background: #f0efed;
}

/* Map + info wrap */
.bdp-where-map-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 32px;
}

.bdp-where-map-col {
    flex: 1 1 65%;
    min-width: 300px;
}

/* The map iframe */
.bdp-where-iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: none;
}

.bdp-where-info-col {
    flex: 1 1 35%;
    min-width: 300px;
    background-color: #fff;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bdp-where-info-col .bdp-section-heading {
    margin-bottom: 40px;
    font-size: 1.25rem;
}

.bdp-where-location-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.bdp-where-location-icon {
    color: #1a1a1a;
    flex-shrink: 0;
    margin-top: 3px;
}

.bdp-where-location-city {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #1a1a1a;
}

.bdp-where-location-address {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .bdp-where-iframe {
        height: 380px;
    }

    .bdp-where-info-col {
        padding: 40px 24px;
    }

    .bdp-where-map-col {
        flex: 1 1 100%;
    }

    .bdp-where-info-col {
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .bdp-where-iframe {
        height: 300px;
    }
}

/* ─── 8. OUR BRANDS (bottom) ─────────────────── */
/* Same as existing brands-section but with bdp- prefix for safety */
.bdp-brands-section {
    background: #0b1a26;
    padding: 60px 24px 72px;
}

.bdp-brands-title {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

.bdp-brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 36px;
}

.bdp-brand-item {
    opacity: 0.55;
    transition: opacity 0.3s, transform 0.3s;
    padding: 8px 16px;
}

.bdp-brand-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.bdp-brand-item img {
    max-height: 90px;
    max-width: 220px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1199px) {
    .bdp-inner {
        padding: 0 32px;
    }

    .bdp-where-bar {
        padding: 32px 32px 20px;
    }

    .bdp-hero-content {
        padding: 0 32px;
    }

    .bdp-map-hotel-card {
        width: 300px;
    }
}

@media (max-width: 991px) {
    .bdp-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bdp-cards-grid .bdp-card:last-child {
        grid-column: 1 / -1;
    }

    .bdp-card--featured {
        margin: -8px 0;
    }

    .bdp-hotel-img-wrap {
        width: 100%;
    }

    .bdp-hotel-info {
        position: static;
        width: 100%;
    }

    .bdp-hotel-row {
        flex-direction: column;
    }

    .bdp-map-hotel-card {
        width: 260px;
    }

    .bdp-map-wrap {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .bdp-cards-grid {
        grid-template-columns: 1fr;
    }

    .bdp-cards-grid .bdp-card:last-child {
        grid-column: unset;
    }

    .bdp-card--featured {
        margin: 0;
    }

    .bdp-inner {
        padding: 0 20px;
    }

    .bdp-where-bar {
        padding: 24px 20px 16px;
    }

    .bdp-hero-content {
        padding: 0 24px;
        bottom: 48px;
    }

    .bdp-hotel-img {
        height: 260px;
    }

    .bdp-map-wrap {
        height: 340px;
    }

    .bdp-map-hotel-card {
        position: static;
        width: 100%;
        max-height: none;
    }

    .bdp-brands-grid {
        gap: 12px 20px;
    }
}


/* ═══════════════════════════════════════════════════
   HOTELS SLIDER — bdp-hs-*
   One hotel at a time, large arrows on left/right
   edges. Matches Coral Hotels reference design.
═══════════════════════════════════════════════════ */

/* Outer wrapper — full-width, position relative for arrows */
.bdp-hs-wrap {
    position: relative;
    width: 100%;
    background: transparent;
    padding: 20px 0 0;
    overflow: hidden;
}

/* ── Slide frame ── */
.bdp-hs-slide {
    position: relative;
    display: block;
    width: 100%;
    transition: opacity 0.38s ease, transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Entrance / exit animation classes */
.bdp-hs-slide-in {
    opacity: 1;
    transform: translateX(0);
}

.bdp-hs-slide-out-left {
    opacity: 0;
    transform: translateX(-3%);
    pointer-events: none;
}

.bdp-hs-slide-out-right {
    opacity: 0;
    transform: translateX(3%);
    pointer-events: none;
}

/* ── Hotel image ── */
.bdp-hs-img-wrap {
    width: 88%;
    margin: 0;
    /* Force left alignment to fix the gap issue */
    overflow: hidden;
    border-radius: 2px;
}

.bdp-hs-img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.bdp-hs-slide:hover .bdp-hs-img {
    transform: scale(1.02);
}

/* ── Hotel info panel (overlapping bottom-right) ── */
.bdp-hs-info {
    position: absolute;
    right: 0;
    bottom: 50px;
    width: 380px;
    background: #2a2a2a;
    padding: 30px 28px 28px;
    color: #fff;
    z-index: 4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bdp-hs-info .bdp-hotel-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.bdp-hs-info .bdp-hotel-btn-outline {
    border: none;
    padding: 0;
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
    font-size: 0.7rem;
    color: #fff;
}

.bdp-hs-info .bdp-hotel-btn-outline:hover {
    color: #fff;
    opacity: 0.8;
}

.bdp-hs-info .bdp-hotel-btn-gold {
    background: #e62d29;
    padding: 10px 24px;
    border-radius: 2px;
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    text-decoration: none;
}

.bdp-hs-info .bdp-hotel-btn-gold:hover {
    background: #c5221f;
}

/* ── Centered Navigation Buttons replaced by CarouselNav (see style.css .offers-carousel-nav) ── */

/* ── Dot pagination removed ── */

/* ── Responsive ── */
@media (max-width: 1100px) {
    .bdp-hs-img {
        height: 360px;
    }

    .bdp-hs-info {
        width: 280px;
        padding: 22px 20px 20px;
        right: 0;
    }
}

@media (max-width: 767px) {
    .bdp-hs-slide {
        flex-direction: column;
    }

    .bdp-hs-img {
        height: 260px;
    }

    .bdp-hs-info {
        position: static;
        width: 100%;
        padding: 22px 20px;
    }
}