/* ═══════════════════════════════════════════════════════════════
   Snow Summit Escape — style.css
   Color Palette: Outbound Hotels inspired
   #33432C  Deep Forest Green  (primary dark)
   #EF9529  Warm Amber         (accent / CTA)
   #ADB4AB  Sage Grey-Green    (secondary mid)
   #757575  Warm Grey          (muted text)
   #F7F5F0  Warm Off-White     (background)
═══════════════════════════════════════════════════════════════ */

:root {
    --navy: #33432C;
    /* deep forest green — primary dark      */
    --blue: #4a5e3a;
    /* mid forest green — secondary dark     */
    --sky: #ADB4AB;
    /* sage grey-green — mid accent          */
    --ice: #e8edea;
    /* very light sage tint                  */
    --orange: #EF9529;
    /* warm amber — primary CTA accent       */
    --amber: #d4801a;
    /* deeper amber — hover states           */
    --cream: #F7F5F0;
    /* warm natural off-white background     */
    --white: #ffffff;
    --text: #33432C;
    /* forest green as body text             */
    --muted: #757575;
    /* warm neutral grey                     */
    --border: rgba(51, 67, 44, 0.10);
    --gold: #EF9529;
    --black: #000000;
    /* gold = same amber accent              */
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

.br-4 {
    border-radius: 4px;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar-brand-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--white) !important;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.navbar-brand-logo span {
    color: var(--orange);
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1rem 0;
    background: transparent;
    transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
}

.site-nav.scrolled {
    background: #00000094;
    /* box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25); */
    padding: 1rem 0;
}

.site-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem !important;
    transition: color 0.2s;
}

.site-nav .nav-link:hover {
    color: var(--orange) !important;
}

.btn-nav {
    background: var(--orange);
    color: #fff !important;
    border-radius: 2px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 0.5rem 1.4rem !important;
    transition: background 0.2s, transform 0.15s;
}

.btn-nav:hover {
    background: var(--amber) !important;
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(to bottom,
            rgba(51, 67, 44, 0.70) 0%,
            rgba(51, 67, 44, 0.35) 60%,
            rgba(51, 67, 44, 0.80) 100%),
        url('../img/photo.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to bottom, transparent, var(--cream));
}

.hero-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 1px;
    margin-bottom: 1.5rem;
    animation: fadeDown 0.8s 0.1s both;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--white);
    line-height: 1.05;
    animation: fadeDown 0.8s 0.25s both;
}

.hero h1 em {
    font-style: italic;
    color: var(--orange);
}

.hero-sub {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 560px;
    line-height: 1.7;
    animation: fadeDown 0.8s 0.4s both;
}

.hero-actions {
    animation: fadeDown 0.8s 0.55s both;
}

/* Shared buttons */
.btn-primary-orange {
    background: var(--orange);
    border: 2px solid var(--orange);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.85rem 2.4rem;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-orange:hover {
    background: var(--amber);
    border-color: var(--amber);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(239, 149, 41, 0.4);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.85rem 2.4rem;
    border-radius: 2px;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Property pill tags */
.curcle {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0.6rem;
}

.curcle span {
    background: var(--ice);
    color: var(--navy);
    border: 1px solid rgba(51, 67, 44, 0.15);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.74rem;
    font-weight: 600;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.05em;
}



/* Hero stats */
.hero-stats {
    position: absolute;
    bottom: 160px;
    right: 60px;
    display: flex;
    gap: 2rem;
    animation: fadeLeft 0.8s 0.7s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat .num {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--orange);
    line-height: 1;
}

.hero-stat .lbl {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.3rem;
}

/* ── Keyframes ── */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }

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

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 1;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 1;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0;
    }
}

@keyframes bounceArrow {

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

    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

/* ══════════════════════════════════════════
   BOOKING BAR
══════════════════════════════════════════ */
#bannerBookingBar {
    animation: fadeUp 0.8s 0.75s both;
    margin-top: 3rem;
}

.booking-bar {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    overflow: hidden;
    max-width: 780px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.booking-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.85rem 1.2rem;
    gap: 0.25rem;
}

.booking-field:hover {
    background: rgba(255, 255, 255, 0.07);
}

.booking-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.booking-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    -webkit-appearance: none;
}

.booking-input option {
    background: var(--navy);
    color: #fff;
}

.booking-input::-webkit-calendar-picker-indicator {
    filter: invert(1) opacity(0.6);
    cursor: pointer;
}

.booking-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0.6rem 0;
    flex-shrink: 0;
}

.btn-avail {
    background: var(--orange);
    border: none;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0 1.8rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.btn-avail:hover {
    background: var(--amber);
    box-shadow: 0 0 24px rgba(239, 149, 41, 0.5);
}

.questions-link {
    margin: 0.7rem 0 0 0.3rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.questions-link a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.questions-link a:hover {
    color: var(--orange);
}

/* ══════════════════════════════════════════
   SCROLL HINT
══════════════════════════════════════════ */
.vb-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    animation: fadeUp 0.8s 1.1s both;
    cursor: pointer;
    text-decoration: none;
}

.vb-scroll-hint span {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.vb-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    position: relative;
    overflow: hidden;
}

.vb-scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: top;
    animation: scrollLine 2s ease-in-out infinite;
}

.vb-scroll-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    animation: bounceArrow 1.8s ease-in-out infinite;
}

/* ══════════════════════════════════════════
   SECTION UTILITIES
══════════════════════════════════════════ */
.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.7rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--navy);
}

.section-title em {
    font-style: italic;
    color: var(--sky);
}

.divider-orange {
    width: 56px;
    height: 3px;
    background: var(--orange);
    margin: 1.2rem 0 1.5rem;
}

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */
.about-section {
    padding: 100px 0;
}

.about-card {
    background: var(--white);
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 4px 32px rgba(51, 67, 44, 0.07);
    border-left: 4px solid var(--orange);
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(51, 67, 44, 0.12);
}

.about-card .icon {
    width: 52px;
    height: 52px;
    background: var(--ice);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.about-card h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.about-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ── About Image Composition ── */
.about-img-outer {
    height: 100%;
    min-height: 680px;
    display: flex;
    flex-direction: column;
}

.about-img-composition {
    position: relative;
    flex: 1;
    min-height: 680px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    bottom: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(51, 67, 44, 0.18);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-main:hover img {
    transform: scale(1.04);
}

.about-img-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: var(--orange);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    height: 190px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(51, 67, 44, 0.20);
    border: 4px solid var(--cream);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-secondary:hover img {
    transform: scale(1.06);
}

.about-img-third {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(80% - 180px - 16px);
    height: 190px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(51, 67, 44, 0.16);
    border: 4px solid var(--cream);
}

.about-img-third img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-third:hover img {
    transform: scale(1.06);
}

.about-img-accent {
    position: absolute;
    top: 38%;
    right: -8px;
    transform: translateY(-50%);
    z-index: 2;
}

.about-img-stat {
    background: var(--navy);
    border-radius: 6px;
    padding: 1.1rem 1.4rem;
    text-align: center;
    box-shadow: 0 8px 28px rgba(51, 67, 44, 0.30);
    border-left: 3px solid var(--orange);
}

.astat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--white);
    line-height: 1.2;
}

.astat-lbl {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.3rem;
}

/* ══════════════════════════════════════════
   PROPERTY SECTION
══════════════════════════════════════════ */
.property-section {
    background: var(--navy);
    padding: 100px 0;
    overflow: hidden;
}

/* Tab switcher */
.prop-tabs {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 5px;
    width: fit-content;
    margin: 0 auto 3.5rem;
}

.prop-tab {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.prop-tab.active {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 18px rgba(239, 149, 41, 0.4);
}

.prop-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
}

/* Info banner */
.prop-info-banner {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-left: 4px solid var(--orange);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.75;
    display: none;
}

.prop-info-banner.active {
    display: block;
}

.prop-info-banner strong {
    color: #fff;
}

/* Carousel container */
.prop-carousel-outer {
    position: relative;
    overflow: hidden;
}

.prop-carousel-track-wrap {
    overflow: hidden;
}

.prop-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

/* Property card */
.prop-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.prop-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.prop-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 149, 41, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.prop-card-body {
    padding: 1.25rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.prop-card-title {

    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.prop-card-stars {
    color: var(--orange);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.prop-card-reviews {
    color: rgba(255, 255, 255, 0.40);
    font-size: 0.78rem;
    margin-bottom: 0.8rem;
}

.prop-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 1px;
    margin-top: auto;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0.8rem;
}

.prop-meta-pill {
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.70);
    white-space: nowrap;
}

.prop-meta-pill i {
    margin-right: 4px;
    color: var(--orange);
}

/* Carousel nav */
.prop-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 2.5rem;
}

.prop-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.prop-nav-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.prop-nav-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.prop-nav-dots {
    display: flex;
    gap: 8px;
}

.prop-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.prop-nav-dot.active {
    background: var(--orange);
    width: 24px;
    border-radius: 4px;
}

/* ── Big Bear Info Grid ── */
.bigbear-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.bigbear-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    padding: 1.5rem;
    transition: border-color 0.3s, transform 0.3s;
    overflow: hidden;
}

.bigbear-card:hover {
    border-color: rgba(239, 149, 41, 0.4);
    transform: translateY(-3px);
}

.bigbear-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
    object-fit: cover;
    height: 180px;
}

.bigbear-card-icon {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.bigbear-card h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bigbear-card p {
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0;
}

.bigbear-card a {
    display: inline-block;
    margin-top: 0.6rem;
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
}

.bigbear-card a:hover {
    text-decoration: underline;
}

/* ── Lake Havasu Panel ── */
.havasu-hero-strip {
    display: flex;
    gap: 16px;
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
}

.havasu-img-main {
    position: relative;
    flex: 2;
}

.havasu-img-main img,
.havasu-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.havasu-img-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.havasu-img-side img {
    height: 188px;
}

.havasu-img-placeholder {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    height: 100%;
    min-height: 160px;
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.havasu-img-placeholder.main {
    min-height: 340px;
    font-size: 5rem;
}

.havasu-hero-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--orange);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 6px 14px;
    border-radius: 20px;
}

.havasu-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 2rem;
}

.havasu-detail-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    padding: 1.5rem;
    transition: border-color 0.3s, transform 0.3s;
}

.havasu-detail-card:hover {
    border-color: rgba(239, 149, 41, 0.4);
    transform: translateY(-3px);
}

.havasu-detail-icon {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}

.havasu-detail-card h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.havasu-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.havasu-detail-card ul li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    line-height: 1.6;
    padding: 3px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.havasu-detail-card ul li:last-child {
    border-bottom: none;
}

.havasu-detail-card ul li strong {
    color: rgba(255, 255, 255, 0.9);
}

.havasu-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.havasu-hl {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 30px;
    padding: 8px 18px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.85rem;
    font-weight: 600;
}

.havasu-hl i {
    color: var(--orange);
}

/* ══════════════════════════════════════════
   ACTIVITIES SECTION
══════════════════════════════════════════ */
.activities-section {
    padding: 100px 0;
    background: var(--white);
}

/* Season toggle tabs */
.act-season-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(51, 67, 44, 0.07);
    border-radius: 50px;
    padding: 5px;
    width: fit-content;
    margin: 0 auto 3.5rem;
}

.act-season-tab {
    background: transparent;
    border: none;
    color: rgba(51, 67, 44, 0.5);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 10px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.act-season-tab.active-winter {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 4px 18px rgba(51, 67, 44, 0.3);
}

.act-season-tab.active-summer {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 18px rgba(239, 149, 41, 0.4);
}

/* Activity grid */
.act-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    transition: opacity 0.35s, transform 0.35s;
}

.act-grid.hidden {
    display: none;
}

.act-card {
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 3px 20px rgba(51, 67, 44, 0.08);
    transition: transform 0.28s, box-shadow 0.28s;
    cursor: pointer;
    position: relative;
}

.act-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 42px rgba(51, 67, 44, 0.15);
}

.act-card-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.act-card-img-placeholder {
    width: 100%;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.act-card-img-placeholder.winter-bg {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
}

.act-card-img-placeholder.summer-bg {
    background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
}

.act-card-badge {
    position: absolute;
    top: 10rem;
    left: 12px;
    background: var(--orange);
    color: #fff;
    font-size: 0.62rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 2px;
    z-index: 2;
}

.act-card-body {
    padding: 1.1rem 1.2rem 1.3rem;
}

.act-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.35rem;
    line-height: 1.35;
}

.act-card-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* Peak season banner */
.act-peak-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--blue) 100%);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.act-peak-banner .peak-badge {
    background: var(--orange);
    color: #fff;
    font-size: 0.65rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.25rem 0.8rem;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.act-peak-banner span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
}

/* ══════════════════════════════════════════
   REVIEWS SECTION
══════════════════════════════════════════ */
.reviews-section {
    padding: 20px 0 60px;
    background: var(--navy);
}

.reviews-section .section-title {
    color: #fff;
}

.reviews-section .section-label {
    color: var(--orange);
}

.rating-summary {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 3rem;
}

.rating-number {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 4.5rem;
    color: var(--orange);
    line-height: 1;
}

.stars-row {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.rating-sub {
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.88rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 1.8rem;
    height: 100%;
    transition: background 0.2s, border-color 0.2s;
    position: relative;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(239, 149, 41, 0.4);
}

.review-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--orange);
    opacity: 0.25;
    position: absolute;
    top: 0.5rem;
    left: 1.2rem;
    line-height: 1;
}

.review-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.review-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.reviewer-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: var(--white);
}

.reviewer-location {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.1rem;
}

.reviewer-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

/* Reviews Carousel */
.reviews-carousel-wrap {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.review-slide {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 0;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.20);
    background: transparent;
    color: rgba(255, 255, 255, 0.70);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.carousel-btn:hover:not(:disabled) {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: scale(1.08);
}

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

.carousel-dots {
    display: flex;
    gap: 0.45rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
    background: var(--orange);
    transform: scale(1.35);
}

/* ══════════════════════════════════════════
   RELATED SITES SECTION
══════════════════════════════════════════ */
.related-section {
    padding: 100px 0;
}

.related-card {
    background: var(--white);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 32px rgba(51, 67, 44, 0.07);
    height: 100%;
    text-align: center;
    border-top: 4px solid var(--navy);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(51, 67, 44, 0.13);
    border-color: var(--orange);
}

.related-card .icon {
    width: 64px;
    height: 64px;
    background: var(--ice);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--navy);
    margin: 0 auto 1.5rem;
}

.related-card h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.related-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

.related-card a {
    display: inline-block;
    margin-top: 1.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    text-decoration: none;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.related-card a:hover {
    color: var(--navy);
    border-color: var(--navy);
}


.related-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.related-card:hover {
    transform: translateY(-6px);
}

.related-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.related-content {
    padding: 20px;
}

.related-content .icon {
    font-size: 22px;
    color: var(--primary-accent);
    margin-bottom: 10px;
}

.related-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.related-content .subheading {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.related-content .desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

.related-content a {
    font-weight: 500;
    color: var(--primary-accent);
    text-decoration: none;
}

.related-content a:hover {
    text-decoration: underline;
}

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
    padding: 120px 0;
    background:
        linear-gradient(135deg, rgba(51, 67, 44, 0.92) 0%, rgba(74, 94, 58, 0.88) 100%),
        url('https://images.unsplash.com/photo-1516655855035-d521ea294b3b?w=1600&q=80') center/cover no-repeat;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
    background: #1e2a17;
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

footer .footer-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

footer .footer-brand span {
    color: var(--orange);
}

footer a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--orange);
}

footer .footer-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.55rem;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 2.5rem 0 1.5rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.social-link:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s, transform 0.65s;
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1199px) {
    .about-img-composition {
        min-height: 580px;
    }

    .about-img-outer {
        min-height: 580px;
    }
}

@media (max-width: 991px) {
    .about-img-composition {
        min-height: 420px;
    }

    .about-img-outer {
        min-height: 420px;
    }

    .about-img-main {
        bottom: 160px;
    }

    .about-img-secondary,
    .about-img-third {
        height: 150px;
    }

    .prop-card {
        flex: 0 0 calc(50% - 12px);
    }

    .bigbear-grid {
        grid-template-columns: 1fr;
    }

    .havasu-details-grid {
        grid-template-columns: 1fr;
    }

    .act-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-slide {
        flex: 0 0 calc(50% - 0.75rem);
    }

    div#navMenu {
        background: #656562;
        padding: 20px 0;
        margin-top: 5px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-stats {
        position: static;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 2rem;
    }

    .property-section {

        padding: 40px 0;

    }

    .act-peak-banner {
        display: flex;
        align-items: center;

        flex-direction: column;
        align-content: space-around;
        justify-content: flex-end;
    }

    .btn-primary-orange {

        margin: auto;
    }

    .related-section {
        padding: 40px 0;
    }

    .cta-section {
        padding: 40px 0;

    }

    .booking-bar {
        flex-direction: column;
    }

    .booking-divider {
        width: auto;
        height: 1px;
        margin: 0 0.6rem;
    }

    .btn-avail {
        padding: 1rem;
        border-radius: 0;
    }

    .vb-scroll-hint {
        display: none;
    }

    .havasu-hero-strip {
        flex-direction: column;
    }

    .havasu-img-side {
        flex-direction: row;
    }

    .about-section {
        padding: 32px 0;
    }
}

@media (max-width: 600px) {
    .prop-card {
        flex: 0 0 94%;
    }

    .prop-tabs {
        flex-wrap: wrap;
        border-radius: 12px;
    }

    .act-season-tabs {
        flex-wrap: wrap;
        border-radius: 14px;
    }

    .review-slide {
        flex: 0 0 100%;
    }
}

@media (max-width: 575px) {
    .about-img-composition {
        min-height: 320px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-badge {
        display: block;

        text-align: center;

    }

    .hero h1 {

        text-align: center;
    }

    .hero-sub {

        text-align: center;
    }

    footer .footer-brand {

        text-align: center;
    }



    .about-img-outer {
        min-height: 320px;
    }

    .about-img-accent,
    .about-img-third {
        display: none;
    }

    .about-img-main {
        bottom: 120px;
        width: 100%;
    }

    .about-img-secondary {
        width: 60%;
        height: 110px;
    }

    .act-grid {
        grid-template-columns: 1fr;
    }

    .havasu-img-side {
        flex-direction: column;
    }

    .activities-section {
        padding: 40px 0;
        background: var(--white);
    }
}

.summer-btn {
    /* background: local; */
}

/* Footer inline CSS extractions */
.footer-desc {
    max-width: 300px;
    line-height: 1.8;
}

.footer-icon {
    color: var(--primary-accent);
}

.footer-address {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Breadcrumb Styles */
.page-breadcrumb {
    background: var(--navy);
    padding: 119px 0 119px;
    text-align: center;
}

.page-breadcrumb h1 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    font-weight: 700;
    font-style: italic;
}

.page-breadcrumb .breadcrumb-item a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
}

.page-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

/* Breadcrumb Image Setup */
.page-breadcrumb {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--navy);
    /* Fallback */
}

.page-breadcrumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(51, 67, 44, 0.70) 0%, rgba(51, 67, 44, 0.35) 98%, rgba(51, 67, 44, 0.80) 100%);
    /* Dark overlay */
    z-index: -1;
}

/* Autogenerated Extracted Inline CSS */
.ext-abo-1 {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ext-abo-2 {
    border-left: 3px solid var(--orange);
    padding-left: 1.5rem;
    margin: 0 0 2rem;
}

.ext-abo-3 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--navy);
    line-height: 1.7;
    margin: 0;
}

.ext-abo-4 {
    display: flex;
    flex-direction: column;
}

.ext-act-5 {
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

.ext-act-6 {
    grid-column: 1 / -1;
}

.ext-act-7 {
    white-space: nowrap;
    font-size: .82rem;
    padding: .5rem 1.2rem;
}

.ext-act-8 {
    display: none;
}

.ext-act-9 {
    display: none;
}

.ext-act-10 {
    display: none;
}

.ext-act-11 {
    display: none;
}

.ext-act-12 {
    display: none;
}

.ext-act-13 {
    display: none;
}

.ext-act-14 {
    display: none;
}

.ext-act-15 {
    display: none;
}

.ext-act-16 {
    grid-column: 1 / -1;
}

.ext-act-17 {
    white-space: nowrap;
    font-size: .82rem;
    padding: .5rem 1.2rem;
}

.ext-act-18 {
    display: none;
}

.ext-act-19 {
    display: none;
}

.ext-act-20 {
    display: none;
}

.ext-act-21 {
    display: none;
}

.ext-act-22 {
    display: none;
}

.ext-act-23 {
    display: none;
}

.ext-act-24 {
    display: none;
}

.ext-act-25 {
    display: none;
}

.ext-con-26 {
    color: var(--orange);
}

.ext-con-27 {
    font-style: italic;
    color: var(--orange);
}

.ext-con-28 {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    margin-top: 2rem;
}

.ext-hea-29 {
    color: #fff;
}

.ext-ind-30 {
    z-index: 1;
}

.ext-ind-31 {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ext-ind-32 {
    border-left: 3px solid var(--orange);
    padding-left: 1.5rem;
    margin: 0 0 2rem;
}

.ext-ind-33 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--navy);
    line-height: 1.7;
    margin: 0;
}

.ext-ind-34 {
    display: flex;
    flex-direction: column;
}

.ext-ind-35 {
    color: #fff;
}

.ext-ind-36 {
    color: var(--orange);
}

.ext-ind-37 {
    color: rgba(255, 255, 255, 0.6);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
    margin-top: 1rem;
}

.ext-ind-38 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ext-ind-39 {
    display: none;
}

.ext-ind-40 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ext-ind-41 {
    display: none;
}

.ext-ind-42 {
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.ext-ind-43 {
    color: var(--orange);
}

.ext-ind-44 {
    max-width: 900px;
    margin: 0 auto;
}

.ext-ind-45 {
    flex: 1;
}

.ext-ind-46 {
    flex: 1;
}

.ext-ind-47 {
    flex: 1;
}

.ext-ind-48 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ext-ind-49 {
    display: none;
}

.ext-ind-50 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ext-ind-51 {
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

.ext-ind-52 {
    grid-column: 1 / -1;
}

.ext-ind-53 {
    white-space: nowrap;
    font-size: .82rem;
    padding: .5rem 1.2rem;
}

.ext-ind-54 {
    display: none;
}

.ext-ind-55 {
    display: none;
}

.ext-ind-56 {
    display: none;
}

.ext-ind-57 {
    display: none;
}

.ext-ind-58 {
    display: none;
}

.ext-ind-59 {
    display: none;
}

.ext-ind-60 {
    display: none;
}

.ext-ind-61 {
    display: none;
}

.ext-ind-62 {
    grid-column: 1 / -1;
}

.ext-ind-63 {
    white-space: nowrap;
    font-size: .82rem;
    padding: .5rem 1.2rem;
}

.ext-ind-64 {
    display: none;
}

.ext-ind-65 {
    display: none;
}

.ext-ind-66 {
    display: none;
}

.ext-ind-67 {
    display: none;
}

.ext-ind-68 {
    display: none;
}

.ext-ind-69 {
    display: none;
}

.ext-ind-70 {
    display: none;
}

.ext-ind-71 {
    display: none;
}

.ext-ind-72 {
    color: var(--orange);
}

.ext-ind-73 {
    color: var(--orange);
}

.ext-ind-74 {
    font-style: italic;
    color: var(--orange);
}

.ext-ind-75 {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    margin-top: 2rem;
}

.ext-pro-76 {
    color: #fff;
}

.ext-pro-77 {
    color: var(--orange);
}

.ext-pro-78 {
    color: rgba(255, 255, 255, 0.6);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
    margin-top: 1rem;
}

.ext-pro-79 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ext-pro-80 {
    display: none;
}

.ext-pro-81 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ext-pro-82 {
    display: none;
}

.ext-pro-83 {
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.ext-pro-84 {
    color: var(--orange);
}

.ext-pro-85 {
    max-width: 900px;
    margin: 0 auto;
}

.ext-pro-86 {
    flex: 1;
}

.ext-pro-87 {
    flex: 1;
}

.ext-pro-88 {
    flex: 1;
}

.ext-pro-89 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ext-pro-90 {
    display: none;
}

.ext-pro-91 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ext-rev-92 {
    color: var(--orange);
}

@media (max-width: 767px) {
    footer {

        padding: 37px 0 30px;

    }
}

@media (max-width: 575px) {

    .footer-desc {
        max-width: 100%;
        line-height: 1.8;
        text-align: center;
    }

    .d-flex.ff.gap-2.mt-3 {

        justify-content: center;
    }

    .rating-summary {

        padding: 1.5rem;

        margin-bottom: 2rem;
    }

    .rating-number {

        font-size: 2.5rem;

    }

    .carousel-dots {
        display: none;
        gap: 0.45rem;
    }

    .act-season-tabs {
        flex-wrap: wrap;
        border-radius: 14px;
        padding: 15px;
        margin-bottom: 22px;
    }

    .about-img-secondary {
        width: 100%;
        height: 110px;
    }

    .prop-tabs {
        display: flex;
        gap: 0;
        background: rgba(255, 255, 255, 0.06);
        /* border-radius: 50px; */
        padding: 9px;
        width: fit-content;
        margin: 0 auto 1.5rem;
        align-content: space-around;
        justify-content: space-around;
    }

    .prop-info-banner {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.10);
        border-left: 4px solid var(--orange);
        border-radius: 12px;
        padding: 1rem 1rem;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.95rem;
        line-height: 1.75;
        display: none;
    }

}

@media (max-width: 400px) {
    .prop-card-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 5px 1px;
        margin: inherit;
        padding-top: 0.8rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 0.8rem;
    }
}