/* ==========================================================================
   GUAYABO HOSTAL — DESIGN SYSTEM & STYLESHEET
   Mindo, Ecuador
   ========================================================================== */

/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* --- DESIGN TOKENS --- */
:root {
    /* Brand Colors */
    --color-forest: #13382c;
    --color-forest-dark: #0c241c;
    --color-forest-light: #1b4b3b;
    --color-teal: #1e8787;
    --color-teal-dark: #166868;
    --color-teal-light: #28a3a3;

    /* Neutrals & Surfaces */
    --color-cream: #fbf9f5;
    --color-cream-tint: #f3efe6;
    --color-surface: #ffffff;
    --color-surface-hover: #faf8f3;
    --color-text-main: #22252a;
    --color-text-muted: #5e666b;
    --color-border: #e6dfd3;
    --color-border-light: #f0ebe1;

    /* Accents */
    --color-wood: #c98642;
    --color-wood-light: #e6b27e;
    --color-sage: #5a7367;
    --color-peach: #e4b5b7;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-script: 'Caveat', cursive, sans-serif;

    /* Spacing & Layout */
    --container-max: 1200px;
    --container-narrow: 840px;
    --nav-height: 76px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 9999px;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(19, 56, 44, 0.06);
    --shadow-card: 0 10px 30px rgba(19, 56, 44, 0.08);
    --shadow-elevated: 0 18px 45px rgba(19, 56, 44, 0.12);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 20px);
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--color-cream);
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
    padding-top: var(--nav-height);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* --- SKIP TO CONTENT (A11Y) --- */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--color-forest);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 600;
    transition: top var(--transition-fast);
}

.skip-to-content:focus {
    top: 20px;
}

/* Focus styling for keyboard accessibility */
:focus-visible {
    outline: 3px solid var(--color-teal);
    outline-offset: 3px;
}

/* --- LAYOUT UTILITIES --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.container-narrow {
    width: 100%;
    max-width: var(--container-narrow);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.section {
    padding-top: clamp(60px, 8vw, 100px);
    padding-bottom: clamp(60px, 8vw, 100px);
}

.section-cream {
    background-color: var(--color-cream-tint);
}

.section-forest {
    background-color: var(--color-forest);
    color: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px auto;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-teal);
    margin-bottom: 12px;
}

.section-forest .eyebrow {
    color: var(--color-wood-light);
}

.heading-display {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.2;
    color: var(--color-forest);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-forest .heading-display {
    color: #ffffff;
}

.subheading {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    color: var(--color-text-muted);
}

.section-forest .subheading {
    color: rgba(255, 255, 255, 0.85);
}

/* --- BUTTONS & CTAS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: all var(--transition-smooth);
    min-height: 48px;
    white-space: nowrap;
}

.btn-teal {
    background-color: var(--color-teal);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(30, 135, 135, 0.25);
}

.btn-teal:hover {
    background-color: var(--color-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 135, 135, 0.35);
}

.btn-forest {
    background-color: var(--color-forest);
    color: #ffffff;
}

.btn-forest:hover {
    background-color: var(--color-forest-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 56, 44, 0.3);
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-forest {
    background-color: transparent;
    color: var(--color-forest);
    border: 1.5px solid var(--color-forest);
}

.btn-outline-forest:hover {
    background-color: var(--color-forest);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* --- NAVIGATION BAR --- */
.site-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: var(--nav-height);
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    border: 1px solid transparent;
    border-radius: 0;
    transition: width 350ms cubic-bezier(0.22, 1, 0.36, 1),
        max-width 350ms cubic-bezier(0.22, 1, 0.36, 1),
        top 350ms cubic-bezier(0.22, 1, 0.36, 1),
        height 350ms cubic-bezier(0.22, 1, 0.36, 1),
        border-radius 350ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 350ms cubic-bezier(0.22, 1, 0.36, 1),
        background-color 350ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 350ms cubic-bezier(0.22, 1, 0.36, 1),
        backdrop-filter 350ms cubic-bezier(0.22, 1, 0.36, 1),
        -webkit-backdrop-filter 350ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: width, top, border-radius, box-shadow;
}

/* Scrolled State: Floating Capsule / Cloud-like Navbar */
.site-header.navbar-scrolled {
    top: 14px;
    width: min(94%, 1380px);
    height: 64px;
    border-radius: 36px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-color: rgba(230, 223, 211, 0.85);
    box-shadow: 0 10px 30px rgba(19, 56, 44, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    transition: padding 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.navbar-scrolled .navbar {
    padding-left: clamp(20px, 2.5vw, 32px);
    padding-right: clamp(20px, 2.5vw, 32px);
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: gap 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-peach);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: width 350ms cubic-bezier(0.22, 1, 0.36, 1),
        height 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.navbar-scrolled .brand-logo-img {
    width: 44px;
    height: 44px;
}

.brand-text-block {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-forest);
    line-height: 1.1;
    letter-spacing: 0.02em;
    transition: font-size 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.navbar-scrolled .brand-name {
    font-size: 1.15rem;
}

.brand-sub {
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-teal);
    font-weight: 600;
    transition: font-size 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.navbar-scrolled .brand-sub {
    font-size: 0.625rem;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 28px;
    transition: gap 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.navbar-scrolled .nav-links {
    gap: clamp(14px, 1.8vw, 22px);
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-main);
    position: relative;
    padding: 6px 0;
    transition: color var(--transition-fast),
        font-size 350ms cubic-bezier(0.22, 1, 0.36, 1),
        padding 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.navbar-scrolled .nav-link {
    font-size: 0.875rem;
    padding: 4px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-teal);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-teal);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: gap 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.navbar-scrolled .nav-actions {
    gap: 12px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background-color: var(--color-cream-tint);
    border: 1px solid var(--color-border);
    transition: all var(--transition-fast),
        padding 350ms cubic-bezier(0.22, 1, 0.36, 1),
        font-size 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.navbar-scrolled .lang-switcher {
    padding: 5px 10px;
    font-size: 0.8125rem;
}

.lang-switcher:hover {
    color: var(--color-forest);
    border-color: var(--color-teal);
}

.nav-cta-btn {
    padding: 10px 22px;
    min-height: 42px;
    font-size: 0.875rem;
    transition: all var(--transition-fast),
        padding 350ms cubic-bezier(0.22, 1, 0.36, 1),
        min-height 350ms cubic-bezier(0.22, 1, 0.36, 1),
        font-size 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.navbar-scrolled .nav-cta-btn {
    padding: 8px 18px;
    min-height: 38px;
    font-size: 0.8125rem;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1010;
}

.hamburger-line {
    width: 100%;
    height: 2.5px;
    background-color: var(--color-forest);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 56, 44, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1005;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 340px;
    height: 100%;
    background: #ffffff;
    z-index: 1006;
    padding: 80px 28px 40px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right var(--transition-smooth);
    overflow-y: auto;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-nav-links .nav-link {
    font-size: 1.125rem;
    font-weight: 600;
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    min-height: clamp(520px, 80vh, 720px);
    display: flex;
    align-items: center;
    background-color: var(--color-forest-dark);
    color: #ffffff;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(12, 36, 28, 0.88) 0%,
            rgba(12, 36, 28, 0.65) 60%,
            rgba(12, 36, 28, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-badge-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-wood-light);
    margin-bottom: 18px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 34px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.hero-script-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-script-phrase {
    font-family: var(--font-script);
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    color: var(--color-wood-light);
    line-height: 1.3;
    text-align: right;
    transform: rotate(-3deg);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* --- TRUST RIBBON --- */
.trust-ribbon {
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.trust-mobile-marquee {
    display: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding: 24px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 12px;
}

.trust-icon-wrapper {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    display: block;
}

.trust-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-forest);
    line-height: 1.2;
}

.trust-desc {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.3;
}

/* --- EDITORIAL ABOUT SECTION --- */
.about-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-cream);
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/about_us_bg.avif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.about-section::after {
    content: '';
    display: none;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 70px);
    align-items: center;
}

.about-media-stack {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--color-forest);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 2px solid var(--color-wood-light);
}

.about-badge-num {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-wood-light);
}

.about-badge-txt {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

.about-body p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

/* --- ROOMS SECTION & CARDS --- */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.room-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border-light);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
}

.room-card-media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.room-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-card:hover .room-card-img {
    transform: scale(1.05);
}

.room-price-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(19, 56, 44, 0.92);
    backdrop-filter: blur(4px);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.room-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-forest);
    margin-bottom: 8px;
    font-weight: 600;
}

.room-card-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 18px;
    flex-grow: 1;
}

.room-specs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border-light);
}

.room-spec-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    background: var(--color-cream);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    color: var(--color-forest);
    font-weight: 500;
}

.room-card-actions {
    display: flex;
    gap: 10px;
}

.room-card-actions .btn {
    flex: 1;
}

/* --- FEATURED ROOMS HORIZONTAL STRIP (HOMEPAGE) --- */
.featured-rooms-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-cream);
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/find_your_room_bg.avif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.featured-rooms-section>.container,
.featured-rooms-section>.featured-rooms-viewport {
    position: relative;
    z-index: 2;
}

.featured-rooms-section::before,
.featured-rooms-section::after {
    content: '';
    display: none;
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 1024px) {
    .featured-rooms-section {
        background-image: none;
        background-color: var(--color-cream);
    }

    .featured-rooms-section::before {
        display: block;
        top: 0;
        left: 0;
        width: clamp(140px, 25vw, 280px);
        height: 100%;
        background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/find_your_room_bg.avif');
        background-repeat: no-repeat;
        background-position: left center;
        background-size: auto 100%;
        opacity: 0.85;
        -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 100%);
    }

    .featured-rooms-section::after {
        display: block;
        top: 0;
        right: 0;
        width: clamp(140px, 25vw, 280px);
        height: 100%;
        background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/find_your_room_bg.avif');
        background-repeat: no-repeat;
        background-position: right center;
        background-size: auto 100%;
        opacity: 0.85;
        -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 100%);
    }
}

@media (max-width: 680px) {
    .featured-rooms-section::before {
        width: clamp(100px, 30vw, 150px);
        opacity: 0.7;
        -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 100%);
    }

    .featured-rooms-section::after {
        width: clamp(100px, 30vw, 150px);
        opacity: 0.7;
        -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 100%);
    }
}

.featured-rooms-header-wrap {
    position: relative;
    margin-bottom: 36px;
}

.rooms-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.rooms-inventory-badge {
    margin-top: 10px;
    font-size: 0.875rem;
    color: var(--color-teal);
    font-weight: 600;
}

.rooms-nav-controls {
    position: absolute;
    right: 0;
    bottom: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rooms-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-pill);
    background-color: var(--color-surface);
    border: 1.5px solid var(--color-border);
    color: var(--color-forest);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.rooms-nav-btn:hover:not(:disabled) {
    background-color: var(--color-teal);
    border-color: var(--color-teal);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(30, 135, 135, 0.25);
}

.rooms-nav-btn:active:not(:disabled) {
    transform: translateY(0);
}

.rooms-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    border-color: var(--color-border-light);
    box-shadow: none;
    pointer-events: none;
}

.featured-rooms-viewport {
    position: relative;
    width: 100%;
}

.featured-rooms-track {
    display: flex;
    flex-wrap: nowrap !important;
    justify-content: safe center;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 24px;
    padding-left: max(24px, calc((100% - 1512px) / 2));
    padding-right: max(24px, calc((100% - 1512px) / 2));
    padding-top: 14px;
    padding-bottom: 24px;
    scrollbar-width: thin;
    scrollbar-color: rgba(30, 135, 135, 0.25) transparent;
}

.featured-rooms-track::-webkit-scrollbar {
    height: 6px;
}

.featured-rooms-track::-webkit-scrollbar-track {
    background: transparent;
}

.featured-rooms-track::-webkit-scrollbar-thumb {
    background: rgba(30, 135, 135, 0.2);
    border-radius: var(--radius-pill);
}

.featured-rooms-track::-webkit-scrollbar-thumb:hover {
    background: rgba(30, 135, 135, 0.4);
}

.featured-rooms-fade-edge {
    display: none;
}

/* Scoped card styles within the horizontal strip */
.featured-rooms-track .room-card {
    flex: 0 0 360px;
    width: 360px;
    max-width: 360px;
    scroll-snap-align: center;
    scroll-snap-stop: normal;
    height: auto;
    text-align: center;
}

.featured-rooms-track .room-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.featured-rooms-track .room-card-title {
    text-align: center;
    width: 100%;
}

.featured-rooms-track .room-card-desc {
    text-align: center;
    width: 100%;
}

.featured-rooms-track .room-specs-list {
    justify-content: center;
    width: 100%;
}

.featured-rooms-track .room-card-actions {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.featured-rooms-track .room-card-actions .btn {
    font-size: 0.875rem;
    padding: 10px 14px;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .featured-rooms-track {
        gap: 20px;
    }

    .featured-rooms-track .room-card {
        flex: 0 0 330px;
        width: 330px;
        max-width: 330px;
    }
}

@media (max-width: 768px) {
    .featured-rooms-header-wrap {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 24px;
    }

    .rooms-nav-controls {
        display: none;
    }

    .featured-rooms-track {
        gap: 16px;
        padding-left: 20px;
        padding-right: 20px;
        scrollbar-width: none;
    }

    .featured-rooms-track::-webkit-scrollbar {
        display: none;
    }

    .featured-rooms-track .room-card {
        flex: 0 0 84vw;
        width: 84vw;
        max-width: 340px;
    }

    .featured-rooms-fade-edge {
        width: 32px;
    }
}

@media (max-width: 480px) {
    .featured-rooms-track {
        gap: 14px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .featured-rooms-track .room-card {
        flex: 0 0 85vw;
        width: 85vw;
        max-width: 320px;
    }

    .featured-rooms-track .room-card-body {
        padding: 18px 16px;
    }

    .featured-rooms-track .room-card-actions {
        gap: 8px;
    }

    .featured-rooms-track .room-card-actions .btn {
        font-size: 0.8125rem;
        padding: 10px 8px;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .featured-rooms-track .room-card {
        flex: 0 0 85vw;
        width: 85vw;
        max-width: 290px;
    }
}

/* --- STAY BUILDER (WHATSAPP INQUIRY GENERATOR) --- */
.booking-builder-section {
    background-color: #fbf9f5;
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/plan-your-visit_bg.avif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    padding: clamp(64px, 8vw, 100px) 0;
}

.stay-builder-card {
    background: rgba(255, 253, 249, 0.96);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 5vw, 45px);
    box-shadow: 0 12px 36px rgba(19, 56, 44, 0.08), 0 2px 6px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(19, 56, 44, 0.1);
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stay-builder-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .stay-builder-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .stay-builder-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-forest);
}

.form-control {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--color-border);
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--color-text-main);
    background-color: var(--color-cream);
    transition: all var(--transition-fast);
}

select.form-control {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-right: 32px;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-teal);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(30, 135, 135, 0.15);
}

.builder-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border-light);
}

.builder-policy-notice {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    max-width: 500px;
}

/* --- MINDO COMPACT TEASER BANNER --- */
.mindo-banner {
    position: relative;
    overflow: hidden;
    background-color: var(--color-forest-dark);
    background-image: url("https://storage.googleapis.com/guayabo-hostal-assets/home/about_Mindo_bg.avif");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
    color: #ffffff;
    padding: clamp(38px, 4vw, 52px) 0;
    min-height: 260px;
    display: flex;
    align-items: center;
}

.mindo-banner-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(24px, 3.5vw, 48px);
    padding-left: clamp(230px, 28vw, 360px);
}

.mindo-banner-main {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1 1 auto;
    min-width: 0;
}

.mindo-banner-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mindo-banner-title {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.1vw, 2.05rem);
    font-weight: 600;
    line-height: 1.18;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.mindo-banner-title span {
    display: block;
}

.mindo-accent-bar {
    width: 36px;
    height: 2px;
    background-color: var(--color-wood-light);
    border-radius: 1px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.mindo-features-strip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.mindo-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(0.8125rem, 0.95vw, 0.9375rem);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.mindo-feature-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal-light);
    flex-shrink: 0;
}

.mindo-feature-svg {
    width: 19px;
    height: 19px;
    stroke: currentColor;
    display: block;
}

.mindo-feature-label {
    white-space: nowrap;
}

.mindo-feature-divider {
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.22);
    margin: 0 2px;
}

.mindo-banner-action {
    flex-shrink: 0;
}

.mindo-banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 24px;
    min-height: 44px;
    border-radius: var(--radius-pill);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all var(--transition-fast);
    white-space: nowrap;
    cursor: pointer;
}

.mindo-banner-cta:hover {
    background-color: rgba(255, 255, 255, 0.16);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.mindo-banner-cta:focus-visible {
    outline: 2px solid var(--color-wood-light);
    outline-offset: 3px;
}

.mindo-cta-arrow {
    display: inline-block;
    font-size: 1.1em;
    line-height: 1;
    transition: transform var(--transition-fast);
}

.mindo-banner-cta:hover .mindo-cta-arrow {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .mindo-banner {
        background-position: 10% center;
        padding: 36px 0;
    }

    .mindo-banner-container {
        padding-left: clamp(170px, 25vw, 240px);
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .mindo-banner-action {
        align-self: flex-start;
    }
}

@media (max-width: 680px) {
    .mindo-banner {
        background-position: 22% center;
        background-image: linear-gradient(to right, rgba(12, 36, 28, 0.82) 0%, rgba(12, 36, 28, 0.88) 100%),
            url("https://storage.googleapis.com/guayabo-hostal-assets/home/about_Mindo_bg.avif");
        padding: 34px 0;
    }

    .mindo-banner-container {
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .mindo-banner-title {
        font-size: 1.375rem;
    }

    .mindo-features-strip {
        gap: 8px 12px;
    }

    .mindo-feature-divider {
        display: none;
    }

    .mindo-feature-pill {
        font-size: 0.8125rem;
    }

    .mindo-banner-action {
        width: 100%;
        margin-top: 4px;
    }

    .mindo-banner-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Destination Themes Grid (Dedicated Mindo page) */

.mindo-themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mindo-theme-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    transition: transform var(--transition-smooth);
}

.mindo-theme-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.mindo-theme-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.mindo-theme-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.mindo-theme-desc {
    font-size: 0.9375rem;
    line-height: 1.55;
    opacity: 0.85;
}

/* --- TRIP PLANNER FILTER (EDITORIAL) --- */
.planner-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.planner-tab-btn {
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    background: var(--color-surface);
    border: 1.5px solid var(--color-border);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-text-main);
    transition: all var(--transition-fast);
}

.planner-tab-btn.active,
.planner-tab-btn:hover {
    background: var(--color-forest);
    color: #ffffff;
    border-color: var(--color-forest);
}

.planner-content-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

/* --- GALLERY MOSAIC --- */
.gallery-mosaic-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-cream);
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/gallery_bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.gallery-mosaic-section>.container {
    position: relative;
    z-index: 2;
}

.gallery-mosaic-section::before,
.gallery-mosaic-section::after {
    content: '';
    display: none;
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 1024px) {
    .gallery-mosaic-section {
        background-image: none;
        background-color: var(--color-cream);
    }

    .gallery-mosaic-section::before {
        display: block;
        top: 0;
        left: 0;
        width: clamp(140px, 26vw, 300px);
        height: 100%;
        background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/gallery_bg.png');
        background-repeat: no-repeat;
        background-position: left center;
        background-size: auto 100%;
        opacity: 0.85;
        -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 100%);
    }

    .gallery-mosaic-section::after {
        display: block;
        top: 0;
        right: 0;
        width: clamp(140px, 26vw, 300px);
        height: 100%;
        background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/gallery_bg.png');
        background-repeat: no-repeat;
        background-position: right center;
        background-size: auto 100%;
        opacity: 0.85;
        -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 100%);
    }
}

@media (max-width: 680px) {
    .gallery-mosaic-section::before {
        top: 0;
        left: 0;
        bottom: auto;
        width: clamp(120px, 36vw, 190px);
        height: 400px;
        background-position: left top;
        background-size: auto 520px;
        opacity: 0.75;
        -webkit-mask-image: radial-gradient(ellipse at 0% 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 90%);
        mask-image: radial-gradient(ellipse at 0% 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 90%);
    }

    .gallery-mosaic-section::after {
        top: auto;
        bottom: 0;
        right: 0;
        left: auto;
        width: clamp(120px, 36vw, 190px);
        height: 400px;
        background-position: right bottom;
        background-size: auto 520px;
        opacity: 0.75;
        -webkit-mask-image: radial-gradient(ellipse at 100% 100%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 90%);
        mask-image: radial-gradient(ellipse at 100% 100%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 90%);
    }
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.gallery-item-lg {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item-img {
    transform: scale(1.04);
}

/* --- LOCATION TEASER (HOMEPAGE FULL-BLEED MAP BANNER) --- */
.location-teaser-section {
    position: relative;
    width: 100%;
    min-height: clamp(520px, 45vw, 600px);
    display: flex;
    align-items: center;
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/mindomap_guayabo_style.avif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 68% center;
    overflow: hidden;
    border-top: 1px solid rgba(19, 56, 44, 0.07);
    border-bottom: 1px solid rgba(19, 56, 44, 0.07);
}

/* Soft cream readability gradient overlay (Desktop: Left to Right) */
.location-teaser-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(251, 249, 245, 1) 0%,
            rgba(251, 249, 245, 1) 26%,
            rgba(251, 249, 245, 0.84) 38%,
            rgba(251, 249, 245, 0.35) 52%,
            rgba(251, 249, 245, 0.00) 66%);
    pointer-events: none;
    z-index: 1;
}

.location-teaser-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.location-teaser-content {
    max-width: 460px;
    padding: clamp(56px, 6vw, 84px) 0;
    display: flex;
    flex-direction: column;
}

.location-teaser-content .eyebrow {
    color: var(--color-teal);
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.location-teaser-content .heading-display {
    color: var(--color-forest);
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    line-height: 1.18;
    margin: 0 0 16px 0;
}

.location-teaser-desc {
    margin: 0 0 28px 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}

.location-teaser-action .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(19, 56, 44, 0.18);
}

/* --- RESPONSIVE COMPOSITION: TABLET & MOBILE --- */
@media (max-width: 880px) {
    .location-teaser-section {
        min-height: clamp(700px, 86vh, 780px);
        align-items: flex-end;
        background-position: 64% 22%;
    }

    /* Direction change: Bottom to Top cream gradient overlay */
    .location-teaser-section::before {
        background: linear-gradient(to top,
                rgba(251, 249, 245, 1) 0%,
                rgba(251, 249, 245, 0.98) 46%,
                rgba(251, 249, 245, 0.88) 56%,
                rgba(251, 249, 245, 0.30) 66%,
                rgba(251, 249, 245, 0.00) 76%);
    }

    .location-teaser-content {
        max-width: 100%;
        padding: 0 0 clamp(36px, 7vw, 48px);
        padding-top: 260px;
    }

    .location-teaser-content .heading-display {
        font-size: clamp(1.85rem, 6vw, 2.35rem);
    }
}

@media (max-width: 360px) {
    .location-teaser-action .btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- FAQ SECTION WITH ILLUSTRATED BACKGROUND --- */
.faq-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-cream);
}

.faq-section>.container {
    position: relative;
    z-index: 2;
}

.faq-section::before,
.faq-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Left Guayabo tree trunk & foliage */
.faq-section::before {
    left: 0;
    width: clamp(240px, 26vw, 440px);
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/FAQ_bg.avif');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
    opacity: 0.95;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 100%);
}

/* Right hummingbird & floral botanical artwork */
.faq-section::after {
    right: 0;
    width: clamp(240px, 26vw, 440px);
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/FAQ_bg.avif');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
    opacity: 0.95;
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 100%);
}

@media (max-width: 1024px) {
    .faq-section::before {
        width: clamp(140px, 25vw, 260px);
        height: clamp(380px, 50vh, 550px);
        bottom: auto;
        background-size: auto 650px;
        opacity: 0.85;
        -webkit-mask-image: radial-gradient(ellipse at 0% 0%, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 90%);
        mask-image: radial-gradient(ellipse at 0% 0%, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 90%);
    }

    .faq-section::after {
        top: auto;
        bottom: 0;
        width: clamp(140px, 25vw, 260px);
        height: clamp(380px, 50vh, 550px);
        background-position: right bottom;
        background-size: auto 650px;
        opacity: 0.85;
        -webkit-mask-image: radial-gradient(ellipse at 100% 100%, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 90%);
        mask-image: radial-gradient(ellipse at 100% 100%, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 90%);
    }
}

@media (max-width: 680px) {
    .faq-section::before {
        width: clamp(110px, 34vw, 180px);
        height: 340px;
        background-size: auto 480px;
        opacity: 0.75;
        -webkit-mask-image: radial-gradient(ellipse at 0% 0%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 90%);
        mask-image: radial-gradient(ellipse at 0% 0%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 90%);
    }

    .faq-section::after {
        width: clamp(110px, 34vw, 180px);
        height: 340px;
        background-size: auto 480px;
        opacity: 0.75;
        -webkit-mask-image: radial-gradient(ellipse at 100% 100%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 90%);
        mask-image: radial-gradient(ellipse at 100% 100%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 90%);
    }
}

/* --- FAQ ACCORDION --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question-btn {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-forest);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
}

.faq-icon {
    transition: transform var(--transition-smooth);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 240px;
    padding-bottom: 20px;
}

/* --- SITE FOOTER --- */
.site-footer {
    position: relative;
    background-color: var(--color-forest-dark);
    color: #ffffff;
    padding-top: 56px;
    padding-bottom: 28px;
    z-index: 10;
}

/* Organic Landscape Top Wave */
.footer-wave-wrapper {
    position: absolute;
    bottom: calc(100% - 1.5px);
    left: 0;
    width: 100%;
    height: 48px;
    pointer-events: none;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.footer-wave-svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: var(--color-forest-dark);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.1fr 1.1fr;
    gap: clamp(28px, 3.5vw, 48px);
    margin-bottom: 44px;
    align-items: start;
}

.footer-brand .brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.75);
    margin-top: 14px;
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
}

.footer-location-icon {
    font-size: 0.875rem;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-wood-light);
    margin-bottom: 18px;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-nav a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-whatsapp-btn {
    min-height: 40px;
    padding: 8px 18px;
    font-size: 0.8125rem;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-schedule-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 220px;
}

.footer-schedule-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-schedule-row .schedule-val {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.footer-social-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 14px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    transition: all var(--transition-fast);
}

.footer-social-pill:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-1px);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-tagline {
    font-style: italic;
    color: rgba(255, 255, 255, 0.65);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 840px) {

    .footer-wave-wrapper {
        height: 32px;
    }

    .site-footer {
        padding-top: 44px;
    }

    .site-header.navbar-scrolled {
        width: calc(100% - 24px);
        top: 10px;
        height: 60px;
        border-radius: 24px;
        box-shadow: 0 8px 24px rgba(19, 56, 44, 0.10), 0 2px 6px rgba(0, 0, 0, 0.04);
    }

    .site-header.navbar-scrolled .navbar {
        padding-left: 16px;
        padding-right: 16px;
    }

    .site-header.navbar-scrolled .brand-logo-img {
        width: 38px;
        height: 38px;
    }

    .site-header.navbar-scrolled .brand-name {
        font-size: 1.05rem;
    }

    .site-header.navbar-scrolled .brand-sub {
        font-size: 0.6rem;
    }

    .nav-links,
    .nav-cta-btn {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .mobile-nav-overlay.active {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav-drawer.active {
        right: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-script-container {
        justify-content: flex-start;
    }

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

    .about-section::before {
        top: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        height: 320px;
        background-position: top left;
        background-size: 680px auto;
        opacity: 0.65;
    }

    .about-section::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 300px;
        background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/about_us_bg.avif');
        background-repeat: no-repeat;
        background-position: bottom right;
        background-size: 680px auto;
        pointer-events: none;
        z-index: 1;
        opacity: 0.65;
    }

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

    .gallery-item-lg {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* --- TRUST RIBBON MOBILE (SEAMLESS CONTINUOUS MARQUEE) --- */
@media (max-width: 640px) {
    .trust-desktop {
        display: none !important;
    }

    .trust-mobile-marquee {
        display: block;
        width: 100%;
        overflow: hidden;
        position: relative;
        padding: 24px 0;
        /* Refined subtle edge fade: transparent to white/opaque */
        mask-image: linear-gradient(to right, transparent 0%, black 28px, black calc(100% - 28px), transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 28px, black calc(100% - 28px), transparent 100%);
    }

    .trust-marquee-track {
        display: flex;
        width: max-content;
        will-change: transform;
        animation: trustRibbonScroll 30s linear infinite;
    }

    .trust-marquee-group {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        gap: 52px;
        padding-right: 52px;
    }

    .trust-marquee-item {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .trust-marquee-item .trust-icon-wrapper {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .trust-marquee-item .trust-icon-img {
        width: 44px;
        height: 44px;
        object-fit: contain;
        aspect-ratio: 1 / 1;
        display: block;
    }

    .trust-marquee-item .trust-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }

    .trust-marquee-item .trust-title {
        font-size: 0.9375rem;
        font-weight: 700;
        color: var(--color-forest);
        line-height: 1.2;
    }

    .trust-marquee-item .trust-desc {
        font-size: 0.8125rem;
        color: var(--color-text-muted);
        line-height: 1.25;
    }
}

@keyframes trustRibbonScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 600px) {
    .stay-builder-grid {
        grid-template-columns: 1fr;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-wave-wrapper {
        height: 24px;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr;
    }

    .gallery-item-lg {
        grid-column: span 1;
    }

    .about-section::before {
        height: 240px;
        background-size: 520px auto;
        opacity: 0.55;
    }

    .about-section::after {
        height: 240px;
        background-size: 520px auto;
        opacity: 0.55;
    }
}

@media (max-width: 380px) {
    .site-header.navbar-scrolled {
        width: calc(100% - 16px);
        top: 8px;
        border-radius: 20px;
    }

    .site-header.navbar-scrolled .navbar {
        padding-left: 12px;
        padding-right: 12px;
    }

    .site-header.navbar-scrolled .brand-sub {
        display: none;
    }
}

/* --- ROOMS CATALOG ROUTE STYLES --- */
.rooms-hero-section {
    background-color: var(--color-cream);
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/find_your_room_bg.avif');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding-top: clamp(40px, 6vw, 70px);
    padding-bottom: clamp(40px, 6vw, 60px);
    position: relative;
}

.rooms-hero-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.rooms-hero-title {
    margin-bottom: 14px;
}

.rooms-hero-subtitle {
    margin-bottom: 28px;
}

.rooms-hero-specs-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.rooms-spec-pill-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border: 1px solid var(--color-border);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-forest);
    box-shadow: var(--shadow-soft);
}

.rooms-spec-icon {
    font-size: 1rem;
}

/* 2x2 Balanced Rooms Grid Desktop Layout */
.rooms-catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 10px;
}

.rooms-catalog-grid .room-card {
    height: 100%;
}

@media (max-width: 900px) {
    .rooms-catalog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 580px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Section 3 — Help Me Choose (Orientation Tool) */
.help-choose-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-cream);
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/Habitaciones_bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: clamp(60px, 7.5vw, 92px) 0;
}

.help-choose-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(251, 249, 245, 0.45) 0%, rgba(251, 249, 245, 0.15) 70%, rgba(251, 249, 245, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.help-choose-section>.container {
    position: relative;
    z-index: 2;
}

.help-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .help-choose-section {
        background-position: center center;
        background-size: cover;
        padding: clamp(52px, 6vw, 72px) 0;
    }

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

@media (max-width: 680px) {
    .help-choose-section {
        background-position: center top;
        background-size: auto 100%;
        padding: 44px 0;
    }

    .help-choose-grid {
        grid-template-columns: 1fr;
    }
}

.help-choose-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.help-choose-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-teal);
}

.help-choose-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background-color: var(--color-cream-tint);
    color: var(--color-teal);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

.help-choose-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-forest);
    font-weight: 600;
    margin-bottom: 6px;
}

.help-choose-room-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: 12px;
}

.help-choose-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.help-choose-action {
    margin-top: auto;
}

.help-choose-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-forest);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.help-choose-card:hover .help-choose-link {
    color: var(--color-teal);
}

/* Section 4 — Shared Amenities Reassurance */
.shared-amenities-section {
    position: relative;
}

.shared-amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .shared-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .shared-amenities-grid {
        grid-template-columns: 1fr;
    }
}

.shared-amenity-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-soft);
}

.shared-amenity-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    background-color: var(--color-cream);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shared-amenity-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-forest);
    margin-bottom: 4px;
}

/* --- HOSTEL PAGE ROUTE STYLES --- */
.hostel-hero-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-cream);
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/about_us_bg.avif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: clamp(70px, 7vw, 110px);
    padding-bottom: clamp(70px, 7vw, 110px);
}

/* Localized soft cream readability gradient overlay (Desktop: Left to Right fade) */
.hostel-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(251, 249, 245, 0.96) 0%,
            rgba(251, 249, 245, 0.92) 36%,
            rgba(251, 249, 245, 0.65) 54%,
            rgba(251, 249, 245, 0.18) 72%,
            rgba(251, 249, 245, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.hostel-hero-section>.container {
    position: relative;
    z-index: 2;
}

.hostel-hero-content {
    max-width: 860px;
    box-sizing: border-box;
}

.hostel-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 4.2vw, 5rem);
    line-height: 1.02;
    color: var(--color-forest);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.015em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hostel-hero-subtitle {
    font-size: clamp(1.05rem, 1.15vw, 1.2rem);
    line-height: 1.7;
    color: var(--color-text-main);
    max-width: 760px;
    margin-bottom: 32px;
}

.hostel-hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.hostel-fact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-forest);
    box-shadow: 0 2px 8px rgba(19, 56, 44, 0.04);
    max-width: 100%;
    box-sizing: border-box;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.hostel-fact-pill:hover {
    border-color: var(--color-teal);
    transform: translateY(-1px);
}

/* Responsive Tablet & Mobile Layout for Hostel Hero */
@media (max-width: 992px) {
    .hostel-hero-section {
        padding-top: clamp(48px, 6vw, 70px);
        padding-bottom: clamp(48px, 6vw, 70px);
        background-position: 70% center;
    }

    /* Direction change for mobile single-column layout: Top-to-bottom soft cream fade over text */
    .hostel-hero-section::before {
        background: linear-gradient(180deg,
                rgba(251, 249, 245, 0.96) 0%,
                rgba(251, 249, 245, 0.93) 48%,
                rgba(251, 249, 245, 0.70) 65%,
                rgba(251, 249, 245, 0.25) 82%,
                transparent 100%);
    }
}

@media (max-width: 768px) {
    .hostel-hero-title {
        font-size: clamp(2.3rem, 8vw, 3.2rem);
        line-height: 1.05;
        margin-bottom: 16px;
    }

    .hostel-hero-subtitle {
        font-size: 1.025rem;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .hostel-hero-facts {
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .hostel-hero-facts {
        gap: 8px;
    }

    .hostel-fact-pill {
        font-size: 0.8125rem;
        padding: 8px 14px;
    }
}

@media (max-width: 390px) {
    .hostel-fact-pill {
        font-size: 0.78125rem;
        padding: 7px 12px;
        gap: 6px;
    }
}

/* Section 2 — Story */
.hostel-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 992px) {
    .hostel-story-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.hostel-story-media-stack {
    position: relative;
}

.hostel-story-img-main-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.hostel-story-img-main {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.hostel-story-img-secondary-wrap {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 48%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    border: 3px solid #ffffff;
}

@media (max-width: 640px) {
    .hostel-story-img-secondary-wrap {
        display: none;
    }
}

.hostel-story-img-secondary {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.hostel-story-p {
    font-size: 1.025rem;
    line-height: 1.7;
    color: var(--color-text-main);
    margin-bottom: 18px;
}

.hostel-care-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: var(--color-surface);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-teal);
    box-shadow: var(--shadow-soft);
    margin-top: 24px;
}

.hostel-care-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.hostel-care-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-forest);
    margin-bottom: 2px;
}

.hostel-care-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.45;
}

/* Section 3 — Facilities */
.hostel-facilities-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-cream);
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/hostal-info_bg.avif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hostel-facilities-section>.container {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .hostel-facilities-section {
        background-position: 70% center;
    }
}

.hostel-photo-spaces-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}

@media (max-width: 900px) {
    .hostel-photo-spaces-grid {
        grid-template-columns: 1fr;
    }
}

.facility-photo-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.facility-photo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.facility-photo-media {
    height: 200px;
    overflow: hidden;
}

.facility-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-photo-body {
    padding: 20px;
}

.facility-photo-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-forest);
    font-weight: 600;
    margin-bottom: 6px;
}

.facility-photo-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.hostel-facilities-compact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .hostel-facilities-compact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .hostel-facilities-compact-grid {
        grid-template-columns: 1fr;
    }
}

.facility-compact-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: var(--shadow-soft);
}

.facility-compact-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.facility-compact-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-forest);
    margin-bottom: 4px;
}

.facility-compact-desc {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Section 4 — Room Amenities Reassurance */
.hostel-amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

@media (max-width: 1024px) {
    .hostel-amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .hostel-amenities-grid {
        grid-template-columns: 1fr;
    }
}

.hostel-amenity-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hostel-amenity-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.hostel-amenity-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-forest);
    margin-bottom: 4px;
}

.hostel-amenity-desc {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.35;
}

/* Section 5 — Policies */
.hostel-policies-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-cream);
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/informacion_util_bg.avif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hostel-policies-section>.container {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .hostel-policies-section {
        background-position: 70% center;
    }
}

.hostel-policies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .hostel-policies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .hostel-policies-grid {
        grid-template-columns: 1fr;
    }
}

.hostel-policy-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-soft);
}

.hostel-policy-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-teal);
    margin-bottom: 6px;
}

.hostel-policy-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-forest);
    margin-bottom: 4px;
}

.hostel-policy-desc {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* Section 6 — Mindo Bridge */
.hostel-mindo-bridge-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: clamp(28px, 5vw, 48px);
    box-shadow: var(--shadow-card);
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/about_Mindo_bg.avif');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

/* Section 7 — Final Booking CTA */
.hostel-final-cta-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-forest);
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/about_Mindo_bg.avif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hostel-final-cta-section>.container-narrow {
    position: relative;
    z-index: 2;
}

/* Dark forest overlay to ensure high contrast and readability */
.hostel-final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(19, 56, 44, 0.72);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 992px) {
    .hostel-final-cta-section {
        background-position: 75% center;
    }
}

/* --- MINDO DESTINATION PAGE ROUTE STYLES --- */
.mindo-hero-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-cream);
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/Mindo_bg_drone.avif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: clamp(50px, 7vw, 90px);
    padding-bottom: clamp(50px, 7vw, 80px);
}

.mindo-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(251, 249, 245, 0.92) 0%,
            rgba(251, 249, 245, 0.84) 60%,
            rgba(251, 249, 245, 0.70) 100%);
    pointer-events: none;
    z-index: 1;
}

.mindo-hero-section>.container {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .mindo-hero-section {
        background-position: 70% center;
    }
}

@media (max-width: 640px) {
    .mindo-hero-section {
        background-position: 75% center;
    }
}

.mindo-hero-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mindo-hero-title {
    margin-bottom: 16px;
}

.mindo-hero-subtitle {
    margin-bottom: 28px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.mindo-hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.mindo-hero-pill-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border: 1px solid var(--color-border);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-forest);
    box-shadow: var(--shadow-soft);
}

.mindo-pill-icon {
    font-size: 1rem;
}

/* Section 2 — Destination Themes */
.mindo-themes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 900px) {
    .mindo-themes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.mindo-theme-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-top: 4px solid var(--color-teal);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.mindo-theme-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.mindo-theme-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.mindo-theme-num {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-sage);
}

.mindo-theme-pill-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background-color: var(--color-cream-tint);
    color: var(--color-teal);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.mindo-theme-icon-badge {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-pill);
    background-color: var(--color-cream);
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.mindo-theme-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-forest);
    font-weight: 600;
    margin-bottom: 10px;
}

.mindo-theme-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

/* Section 3 — Dark Forest Pacing Banner */
.mindo-pacing-banner {
    position: relative;
    overflow: hidden;
    background-color: var(--color-forest);
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/about_Mindo_bg.avif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: clamp(48px, 6vw, 70px);
    padding-bottom: clamp(48px, 6vw, 70px);
}

.mindo-pacing-banner>.container-narrow {
    position: relative;
    z-index: 2;
}

/* Dark forest overlay to ensure text readability over botanical illustration */
.mindo-pacing-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(19, 56, 44, 0.72);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 992px) {
    .mindo-pacing-banner {
        background-position: 75% center;
    }
}

/* Section 4 — Trip Planner Segmented Tabs & Panels */
.mindo-planner-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-cream);
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/mindo_actividades_bg.avif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.mindo-planner-section>.container {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .mindo-planner-section {
        background-position: 70% center;
    }
}

@media (max-width: 640px) {
    .mindo-planner-section {
        background-position: 75% center;
    }
}

.planner-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.planner-tab-btn {
    padding: 10px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-forest);
    background-color: var(--color-surface);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-pill);
    transition: all var(--transition-fast);
}

.planner-tab-btn:hover {
    border-color: var(--color-teal);
    color: var(--color-teal);
}

.planner-tab-btn.active {
    background-color: var(--color-forest);
    border-color: var(--color-forest);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.planner-panels-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.planner-content-box {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 5vw, 42px);
    box-shadow: var(--shadow-card);
    transition: opacity var(--transition-smooth);
    text-align: center;
}

.planner-card-header {
    margin-bottom: 16px;
}

.planner-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-teal);
    margin-bottom: 6px;
}

.planner-headline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-forest);
    font-weight: 600;
}

.planner-summary {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

.planner-cta-wrap {
    display: flex;
    justify-content: center;
    gap: 14px;
}

/* Section 5 — Destination to Stay Bridge */
.mindo-stay-bridge-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: clamp(32px, 6vw, 54px);
    box-shadow: var(--shadow-card);
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/plan-your-visit_bg.avif');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.mindo-stay-bridge-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- REDESIGNED LOCATION PAGE STYLES --- */
.location-hero-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-cream);
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/mindo_letras_bg.avif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: clamp(50px, 7vw, 90px);
    padding-bottom: clamp(50px, 7vw, 80px);
}

.location-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(251, 249, 245, 0.92) 0%,
            rgba(251, 249, 245, 0.84) 60%,
            rgba(251, 249, 245, 0.70) 100%);
    pointer-events: none;
    z-index: 1;
}

.location-hero-section>.container {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .location-hero-section {
        background-position: 70% center;
    }
}

@media (max-width: 640px) {
    .location-hero-section {
        background-position: 75% center;
    }
}

.location-hero-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.location-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    box-shadow: 0 2px 8px rgba(19, 56, 44, 0.05);
}

.location-pill-icon {
    display: flex;
    align-items: center;
    color: var(--color-teal);
}

.location-pill-label {
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--color-forest);
}

/* Map Grid & Cards */
.location-map-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
}

.location-map-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    aspect-ratio: 16 / 10;
    background-color: var(--color-cream);
}

.location-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.location-map-visual:hover .location-map-img {
    transform: scale(1.02);
}

.location-map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.location-map-pin-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(19, 56, 44, 0.92);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.location-map-info-card {
    background: var(--color-cream-tint);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-info-badge {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.location-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(30, 135, 135, 0.12);
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-directions-box {
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 24px;
}

/* Nearby Grid */
.location-nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.location-nearby-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.location-nearby-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(19, 56, 44, 0.08);
}

.location-nearby-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: rgba(30, 135, 135, 0.1);
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* Section 4 — Arrival Directions / Cómo llegar a Mindo */
.location-directions-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-cream);
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/Como_llegar_mindo_ng.avif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: clamp(50px, 7vw, 90px) 0;
}

.location-directions-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(251, 249, 245, 0.90) 0%,
            rgba(251, 249, 245, 0.80) 60%,
            rgba(251, 249, 245, 0.65) 100%);
    pointer-events: none;
    z-index: 1;
}

.location-directions-section>.container {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .location-directions-section {
        background-position: 70% center;
    }
}

@media (max-width: 640px) {
    .location-directions-section {
        background-position: 75% center;
    }
}

/* Transport Grid & Steps */
.location-transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.location-transport-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
}

.location-transport-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border-light);
}

.location-transport-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-forest);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-step-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.location-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(30, 135, 135, 0.12);
    color: var(--color-teal);
    font-size: 0.8125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.location-step-text {
    font-size: 0.9375rem;
    color: var(--color-text-main);
    line-height: 1.6;
}

/* Practical Info Grid */
.location-arrival-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.location-practical-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    box-shadow: var(--shadow-card);
}

.location-practical-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(19, 56, 44, 0.08);
    color: var(--color-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.location-practical-value {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-teal);
    background: rgba(30, 135, 135, 0.08);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

/* Support Card */
.location-support-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .location-map-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .location-support-card {
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .location-support-card .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Section 6 — Destination Bridge / Explora el destino */
.location-bridge-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-forest);
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/explora-destino_bg.avif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: clamp(50px, 7vw, 90px) 0;
}

.location-bridge-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(19, 56, 44, 0.45);
    pointer-events: none;
    z-index: 1;
}

.location-bridge-section>.container {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .location-bridge-section {
        background-position: 70% center;
    }
}

@media (max-width: 640px) {
    .location-bridge-section {
        background-position: 75% center;
    }
}

/* --- REDESIGNED CONTACT PAGE STYLES --- */
.contact-hero-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-cream);
    background-image: url('https://storage.googleapis.com/guayabo-hostal-assets/home/Guayabo_hostal_landscape.avif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: clamp(50px, 7vw, 90px);
    padding-bottom: clamp(50px, 7vw, 80px);
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(251, 249, 245, 0.92) 0%,
        rgba(251, 249, 245, 0.84) 60%,
        rgba(251, 249, 245, 0.70) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.contact-hero-section > .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .contact-hero-section {
        background-position: 70% center;
    }
}

@media (max-width: 640px) {
    .contact-hero-section {
        background-position: 75% center;
    }
}

.booking-reassurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.booking-reassurance-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.booking-reassurance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(19, 56, 44, 0.08);
}

.reassurance-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(30, 135, 135, 0.1);
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.reassurance-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-teal);
    background: rgba(30, 135, 135, 0.08);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

.contact-support-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-support-card {
        padding: 26px;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-support-card .btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- ACCESSIBILITY PREFERS REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .trust-marquee-track {
        animation: none !important;
    }

    .trust-mobile-marquee {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }

    .trust-marquee-group[aria-hidden="true"] {
        display: none !important;
    }
}