/* ==========================================================================
   TRUEHAVEN STAYS - DESIGN SYSTEM & STYLESHEET
   Design Tokens derived from Airbnb Specification + Beige & White Luxury Palette
   ========================================================================== */

:root {
    /* Brand & Accent Tokens */
    --color-primary: #FF385C;          /* Rausch signature CTA voltage */
    --color-primary-active: #E00B41;   /* Rausch active press state */
    --color-primary-disabled: #FFD1DA; /* Rausch pale disabled tint */
    --color-navy: #0F1E36;             /* TrueHaven Navy Brand Token */
    --color-gold: #C5A880;             /* Warm luxury accent gold */

    /* Surface Tokens (Beige & White luxury palette) */
    --color-canvas: #FAF8F5;           /* Page floor - warm luxury light beige */
    --color-surface-white: #FFFFFF;    /* Pure white surface for cards & search bar */
    --color-surface-soft: #F4F1EA;     /* Lightest beige fill for badges & filters */
    --color-surface-strong: #EBE7DF;   /* Sub-nav hover & icon surfaces */

    /* Hairlines & Borders */
    --color-hairline: #E5E0D8;         /* Default 1px divider tone */
    --color-hairline-soft: #F0ECE4;    /* Subtle dividers */
    --color-border-strong: #C4BEB4;    /* Input focus border */

    /* Text Tokens */
    --color-ink: #0F1E36;              /* Primary text - deep navy ink (never pure black) */
    --color-ink-head: #111827;         /* Deep headline charcoal */
    --color-body: #374151;             /* Running text body color */
    --color-muted: #6B7280;            /* Subtitles, meta, captions */
    --color-muted-soft: #9CA3AF;       /* Inactive states */
    --color-on-primary: #FFFFFF;       /* Text on Rausch CTAs */

    /* Typography scale (Airbnb Cereal VF proportions) */
    --font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Radii */
    --radius-sm: 8px;                  /* Buttons, inputs */
    --radius-md: 16px;                 /* Property cards, modal windows */
    --radius-xl: 32px;                 /* Category strip */
    --radius-full: 9999px;             /* Search bar, search orb, wishlist heart, badges */

    /* Single Elevation Tier (Airbnb spec) */
    --shadow-float: rgba(15, 30, 54, 0.04) 0px 0px 0px 1px, rgba(15, 30, 54, 0.06) 0px 2px 6px 0px, rgba(15, 30, 54, 0.1) 0px 4px 12px 0px;
    --shadow-card-hover: rgba(15, 30, 54, 0.08) 0px 12px 24px -4px;

    /* Spacing System */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-base: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    --spacing-section: 64px;
}

/* Reset & Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-canvas);
    color: var(--color-ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
    background-color: var(--color-navy);
    color: #FFFFFF;
    font-size: 13px;
    padding: 10px 0;
    font-weight: 500;
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.announcement-link {
    color: #FFD166;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.announcement-link:hover {
    opacity: 0.9;
    text-decoration: underline;
}

/* ==========================================================================
   TOP NAVIGATION
   ========================================================================== */
.top-nav {
    background-color: var(--color-surface-white);
    height: 80px;
    border-bottom: 1px solid var(--color-hairline);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

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

.brand-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--color-navy);
    line-height: 1.1;
}

.brand-sub {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-gold);
}

/* Product Nav Tabs */
.product-tabs {
    display: flex;
    align-items: center;
    gap: 28px;
}

.product-tab {
    background: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-muted);
    padding: 12px 4px;
    position: relative;
    transition: color 0.2s;
}

.product-tab i {
    font-size: 18px;
}

.product-tab:hover {
    color: var(--color-ink);
}

.product-tab.active {
    color: var(--color-ink);
}

.product-tab.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-navy);
    border-radius: 2px;
}

.new-tag {
    background-color: var(--color-surface-soft);
    color: var(--color-navy);
    border: 1px solid var(--color-hairline);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: var(--radius-full);
}

/* Nav Utilities */
.nav-utilities {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-host-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-ink);
    padding: 10px 14px;
    border-radius: var(--radius-full);
    transition: background 0.2s;
}

.nav-host-link:hover {
    background-color: var(--color-surface-soft);
}

.nav-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--color-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.2s;
}

.nav-icon-btn:hover {
    background-color: var(--color-surface-soft);
}

.user-menu-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 6px 6px 14px;
    border: 1px solid var(--color-hairline);
    border-radius: var(--radius-full);
    background-color: var(--color-surface-white);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.user-menu-pill:hover {
    box-shadow: var(--shadow-float);
}

.user-menu-pill i {
    font-size: 14px;
    color: var(--color-muted);
}

.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-navy);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* ==========================================================================
   HERO SEARCH BAR AREA
   ========================================================================== */
.hero-search-section {
    padding: 24px 0 16px;
    display: flex;
    justify-content: center;
}

.search-bar-pill {
    background-color: var(--color-surface-white);
    border: 1px solid var(--color-hairline);
    border-radius: var(--radius-full);
    height: 54px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    padding: 4px 6px 4px 18px;
    max-width: 650px;
    margin: 0;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.search-bar-pill:hover {
    box-shadow: var(--shadow-float);
    border-color: var(--color-hairline-soft);
}

.search-orb {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: transform 0.15s, background-color 0.2s;
}

.search-field-segment {
    flex: 1;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: background 0.2s;
}

.search-field-segment:hover {
    background-color: var(--color-surface-soft);
}

.segment-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-navy);
}

.segment-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-body);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-divider {
    width: 1px;
    height: 32px;
    background-color: var(--color-hairline);
}

.search-orb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.15s, background-color 0.2s;
}

.search-orb:hover {
    background-color: var(--color-primary-active);
    transform: scale(1.04);
}

/* ==========================================================================
   IMMERSIVE HERO BANNER & GLASSMORPHISM HEADER (ZERO BLUR)
   ========================================================================== */
.immersive-hero-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.immersive-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center 35%;
    filter: none !important; /* ZERO BLUR - 100% Crisp Image */
    transform: none;
    z-index: 1;
}

/* Floating Island Navigation Header (Frosted Glass Pill) */
.top-nav.glass-nav {
    position: relative;
    z-index: 10;
    width: calc(100% - 48px);
    max-width: 1280px;
    margin: 20px auto 0;
    background: rgba(15, 25, 45, 0.52) !important;
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    border-radius: 999px;
    height: 76px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.35);
    padding: 0 24px;
}

.glass-nav .brand-name {
    color: #FFFFFF !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.glass-nav .brand-sub {
    color: #FFD166 !important;
}

/* Glassmorphism Search Bar Pill (Nested Floating Frosted Capsule) */
.search-bar-pill.glass-search-pill {
    background: rgba(255, 255, 255, 0.16) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.38) !important;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
    height: 48px;
}

.glass-search-pill .segment-label {
    color: #FFD166 !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.glass-search-pill .segment-value {
    color: #FFFFFF !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.glass-search-pill .search-divider {
    background-color: rgba(255, 255, 255, 0.35) !important;
}

.glass-search-pill .search-field-segment:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

/* Search Bar Interactive Popover Dropdowns */
.search-popover {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 320px;
    background: #FFFFFF;
    border: 1px solid var(--color-hairline);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    z-index: 200;
    color: var(--color-navy);
    animation: popoverFadeIn 0.2s ease-out;
}

@keyframes popoverFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

#whenPopover {
    left: 20%;
    width: 340px;
}

#whoPopover {
    left: auto;
    right: 0;
    width: 300px;
}

.popover-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.popover-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background 0.2s;
}

.popover-option:hover,
.popover-option.active {
    background-color: var(--color-surface-soft);
}

.popover-option i {
    font-size: 18px;
    color: var(--color-navy);
    width: 24px;
    text-align: center;
}

.popover-option strong {
    display: block;
    font-size: 14px;
    color: var(--color-navy);
}

.popover-option span {
    font-size: 12px;
    color: var(--color-muted);
}

/* Calendar Inputs Styling */
.calendar-inputs {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.cal-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cal-field label {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-muted);
}

.cal-field input {
    padding: 8px 10px;
    border: 1px solid var(--color-hairline);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: inherit;
    color: var(--color-navy);
    outline: none;
}

.cal-field input:focus {
    border-color: var(--color-navy);
}

.cal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--color-hairline-soft);
}

/* Stepper Row Styling */
.guest-stepper-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.guest-stepper-row strong {
    display: block;
    font-size: 14px;
    color: var(--color-navy);
}

.guest-stepper-row span {
    font-size: 12px;
    color: var(--color-muted);
}

.stepper-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stepper-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--color-hairline);
    background: #FFFFFF;
    color: var(--color-navy);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.stepper-btn:hover {
    border-color: var(--color-navy);
    background-color: var(--color-surface-soft);
}

.hero-banner-section {
    position: relative;
    z-index: 5;
    width: 100%;
    min-height: 640px;
    display: flex;
    align-items: flex-start;
    color: #FFFFFF;
    padding: 40px 0 72px;
}

.hero-banner-container {
    position: relative;
    z-index: 3;
    width: 100%;
    margin-top: 32px;
}

.hero-banner-content.centered {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(15, 30, 54, 0.65);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-top: -12px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.hero-headline {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1px;
    color: #FFFFFF;
    margin-top: 18px;
    margin-bottom: 20px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.85);
}

.hero-headline .highlight-text {
    color: #FFFFFF;
    font-weight: 800;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.85);
}

.gold-accent-line {
    width: 70px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    margin: 18px auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-sub {
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 16px;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.85);
}

/* 4 Bullet Points in a Single Horizontal Row (Shifted Slightly Lower) */
.hero-bullets-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 68px auto 0;
    width: 100%;
}

.hero-bullet-pill {
    background: rgba(15, 30, 54, 0.52);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bullet-pill:hover {
    background: rgba(15, 30, 54, 0.72);
    transform: translateY(-3px);
}

.hero-bullet-pill strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
    letter-spacing: -0.2px;
}

/* ==========================================================================
   PLACES TO VISIT IN DUBAI SECTION
   ========================================================================== */
.places-section {
    padding: 32px 0 64px;
}

.places-grid-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.places-grid-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.place-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s;
    cursor: pointer;
}

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

.place-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.place-card:hover img {
    transform: scale(1.04);
}

.place-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.2) 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.place-title {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.3px;
}

/* ==========================================================================
   PROPERTIES SECTION & CARDS
   ========================================================================== */
.properties-section {
    padding: 40px 0 64px;
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-headline {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.section-sub {
    font-size: 15px;
    color: var(--color-muted);
}

.filter-pills {
    display: flex;
    gap: 10px;
}

.filter-pill {
    background-color: var(--color-surface-white);
    border: 1px solid var(--color-hairline);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-ink);
    transition: all 0.2s;
}

.filter-pill:hover, .filter-pill.active {
    background-color: var(--color-navy);
    color: #FFFFFF;
    border-color: var(--color-navy);
}

/* Property Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.property-card {
    background-color: var(--color-surface-white);
    border: 1px solid var(--color-hairline);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.property-card-photo {
    position: relative;
    aspect-ratio: 16 / 10;
    background-color: var(--color-surface-soft);
    overflow: hidden;
}

.guest-favorite-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--color-navy);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 6px;
}

.guest-favorite-badge i {
    color: #D97706;
}

.heart-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: transform 0.2s, background-color 0.2s, color 0.2s;
}

.heart-btn:hover {
    transform: scale(1.1);
    background-color: #FFFFFF;
}

.heart-btn.saved {
    color: var(--color-primary);
}

.heart-btn.saved i {
    font-weight: 900;
}

/* Carousel */
.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.2s, background-color 0.2s;
}

.property-card-photo:hover .carousel-arrow {
    opacity: 1;
}

.carousel-arrow:hover {
    background-color: #FFFFFF;
}

.carousel-arrow.prev { left: 12px; }
.carousel-arrow.next { right: 12px; }

.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.carousel-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    transition: background-color 0.2s, transform 0.2s;
}

.carousel-dots .dot.active {
    background-color: #FFFFFF;
    transform: scale(1.3);
}

/* Card Meta */
.property-card-meta {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.meta-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 6px;
}

.meta-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
}

.meta-rating {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-rating i {
    font-size: 12px;
}

.meta-location {
    font-size: 14px;
    color: var(--color-muted);
    margin-bottom: 8px;
}

.meta-highlight {
    font-size: 13px;
    font-weight: 600;
    color: #10B981;
    margin-bottom: 6px;
}

.meta-specs {
    font-size: 13px;
    color: var(--color-body);
    margin-bottom: 18px;
}

.meta-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--color-hairline-soft);
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.price-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-navy);
}

.price-period {
    font-size: 14px;
    color: var(--color-muted);
}

.price-aed {
    font-size: 12px;
    color: var(--color-muted);
    font-weight: 500;
    margin-left: 4px;
}

/* Primary Button */
.button-primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s, transform 0.1s;
}

.button-primary:hover {
    background-color: var(--color-primary-active);
}

.button-secondary {
    background-color: var(--color-surface-white);
    color: var(--color-navy);
    border: 1px solid var(--color-hairline);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s, border-color 0.2s;
}

.button-secondary:hover {
    background-color: var(--color-surface-soft);
    border-color: var(--color-navy);
}

/* ==========================================================================
   AMENITIES SECTION & HIGHLIGHTS
   ========================================================================== */
.amenities-section {
    padding: 64px 0;
    background-color: var(--color-surface-white);
    border-top: 1px solid var(--color-hairline);
    border-bottom: 1px solid var(--color-hairline);
}

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

.amenity-highlight-card {
    background-color: var(--color-surface-soft);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: left;
    border: 1px solid var(--color-hairline-soft);
}

.amenity-icon {
    font-size: 26px;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.amenity-highlight-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 6px;
}

.amenity-highlight-card p {
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.4;
}

/* ==========================================================================
   LOCATION SECTION
   ========================================================================== */
.location-section {
    padding: 64px 0;
}

.location-card-banner {
    background-color: var(--color-navy);
    color: #FFFFFF;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-card-hover);
}

.location-content {
    padding: 48px;
}

.location-title {
    font-size: 28px;
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 12px;
    line-height: 1.25;
}

.location-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.landmarks-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.landmark-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dist-badge {
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFD166;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.landmark-item strong {
    font-size: 15px;
    display: block;
}

.landmark-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.location-visual {
    height: 100%;
}

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

/* ==========================================================================
   DIRECT BOOKING BANNER
   ========================================================================== */
.direct-booking-banner {
    padding: 64px 0;
    background-color: var(--color-surface-soft);
    border-bottom: 1px solid var(--color-hairline);
}

.banner-headline {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.banner-sub {
    font-size: 16px;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto 32px;
}

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

.button-primary-large {
    background-color: #25D366;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, transform 0.1s;
}

.button-primary-large:hover {
    background-color: #20BA5A;
    transform: translateY(-1px);
}

.button-secondary-large {
    background-color: var(--color-surface-white);
    color: var(--color-navy);
    border: 1px solid var(--color-hairline);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.button-secondary-large:hover {
    background-color: #FFFFFF;
    border-color: var(--color-navy);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-light {
    background-color: var(--color-surface-white);
    padding: 64px 0 32px;
    border-top: 1px solid var(--color-hairline);
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-desc {
    font-size: 14px;
    color: var(--color-muted);
    margin: 16px 0 20px;
    max-width: 360px;
    line-height: 1.5;
}

.footer-contact-item {
    font-size: 13px;
    color: var(--color-body);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-item i {
    color: var(--color-navy);
    width: 16px;
}

.footer-col-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--color-body);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-navy);
    text-decoration: underline;
}

.legal-band {
    padding-top: 24px;
    border-top: 1px solid var(--color-hairline-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--color-muted);
}

.legal-left a:hover {
    text-decoration: underline;
}

.legal-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    color: var(--color-muted);
    font-size: 16px;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: var(--color-navy);
}

/* ==========================================================================
   MODALS (PROPERTY DETAIL & AMENITIES)
   ========================================================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s, visibility 0.25s;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--color-surface-white);
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 20;
    background: var(--color-surface-soft);
    border: 1px solid var(--color-hairline);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-ink);
    cursor: pointer;
    transition: background 0.2s;
}

.modal-close-btn:hover {
    background: var(--color-hairline);
}

.modal-scroll-body {
    overflow-y: auto;
    padding: 32px;
}

/* Property Detail Layout inside Modal */
.detail-header {
    margin-bottom: 20px;
}

.detail-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.detail-sub-row {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--color-muted);
}

.detail-rating {
    font-weight: 700;
    color: var(--color-navy);
}

/* 5-Photo Mosaic Grid matching Airbnb Reference */
.detail-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: 440px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.detail-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.2s;
}

.detail-photo-grid img:hover {
    opacity: 0.92;
}

.photo-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
}

.detail-photo-grid-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 100%;
}

/* Detail Main Columns */
.detail-body-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
}

/* Rating Display Card (Airbnb signature 64px display) */
.rating-display-card {
    background-color: var(--color-surface-soft);
    border: 1px solid var(--color-hairline);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    margin-bottom: 32px;
}

.rating-number-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.rating-num {
    font-size: 56px;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1;
}

.laurel-icon {
    font-size: 24px;
    color: var(--color-navy);
}

.rating-tagline {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
    margin: 8px 0 4px;
}

.rating-subtext {
    font-size: 13px;
    color: var(--color-muted);
}

/* Host Info */
.host-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--color-hairline);
    border-bottom: 1px solid var(--color-hairline);
    margin-bottom: 24px;
}

.host-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--color-navy);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.host-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
}

.host-badge {
    font-size: 13px;
    color: var(--color-muted);
}

/* Sticky Reservation Card */
.reservation-card {
    background-color: var(--color-surface-white);
    border: 1px solid var(--color-hairline);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-float);
    position: sticky;
    top: 24px;
}

.res-price-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
}

.res-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-navy);
}

.res-form-box {
    border: 1px solid var(--color-hairline);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
}

.res-date-row {
    display: flex;
    border-bottom: 1px solid var(--color-hairline);
}

.res-date-field {
    flex: 1;
    padding: 10px 12px;
    background-color: var(--color-surface-soft);
}

.res-date-field:first-child {
    border-right: 1px solid var(--color-hairline);
}

.res-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-navy);
    display: block;
}

.res-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-ink);
}

.res-guest-field {
    padding: 10px 12px;
    background-color: var(--color-surface-soft);
}

.res-select {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-ink);
}

.res-calc-stack {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: var(--color-body);
}

.calc-row {
    display: flex;
    justify-content: space-between;
}

.calc-row.total {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-navy);
    padding-top: 12px;
    border-top: 1px solid var(--color-hairline);
}

/* Amenities Modal Styling */
.amenities-modal-card {
    max-width: 780px;
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-hairline);
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-navy);
}

.amenities-category-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.amenity-cat-block {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-hairline-soft);
}

.cat-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cat-items {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.cat-items li {
    font-size: 14px;
    color: var(--color-body);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cat-items li i {
    color: var(--color-navy);
    font-size: 12px;
}

.cat-items li.unavailable {
    color: var(--color-muted);
    text-decoration: line-through;
}

.cat-items li.unavailable i {
    color: var(--color-muted);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-bullets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pillars-grid, .amenities-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .properties-grid {
        grid-template-columns: 1fr;
    }
    .location-card-banner {
        grid-template-columns: 1fr;
    }
    .footer-columns {
        grid-template-columns: 1fr 1fr;
    }
    .detail-body-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 744px) {
    .hero-headline {
        font-size: 32px;
    }
    .hero-bullets-grid {
        grid-template-columns: 1fr;
    }
    .product-tabs {
        display: none;
    }
    .announcement-content {
        flex-direction: column;
        text-align: center;
    }
    .search-bar-pill {
        height: auto;
        flex-direction: column;
        border-radius: var(--radius-md);
        padding: 16px;
        gap: 12px;
    }
    .search-divider {
        display: none;
    }
    .search-field-segment {
        width: 100%;
    }
    .search-orb {
        width: 100%;
        border-radius: var(--radius-sm);
        height: 44px;
    }
    .pillars-grid, .amenities-highlights-grid {
        grid-template-columns: 1fr;
    }
    .cat-items {
        grid-template-columns: 1fr;
    }
    .footer-columns {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   WORLD GUEST REVIEWS MARQUEE SLIDER (RIGHT-TO-LEFT INFINITE SCROLL)
   ========================================================================== */
.reviews-marquee-section {
    padding: 72px 0 88px;
    background-color: var(--color-surface-soft);
    border-top: 1px solid var(--color-hairline);
    border-bottom: 1px solid var(--color-hairline);
    overflow: hidden;
    position: relative;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 12px 0;
}

/* Smooth fade gradients on edges */
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #FAF8F5 0%, rgba(250, 248, 245, 0) 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #FAF8F5 0%, rgba(250, 248, 245, 0) 100%);
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marqueeScroll 50s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

/* Review Card Styling */
.review-card {
    width: 360px;
    flex-shrink: 0;
    background-color: #FFFFFF;
    border: 1px solid var(--color-hairline);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s, box-shadow 0.25s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.card-stars {
    color: #FF385C;
    font-size: 14px;
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.review-quote {
    font-size: 14px;
    color: var(--color-ink);
    line-height: 1.55;
    font-weight: 450;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-navy);
}

.author-location {
    font-size: 12px;
    color: var(--color-muted);
}

.property-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-navy);
    background-color: var(--color-surface-soft);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    display: inline-block;
    border: 1px solid var(--color-hairline-soft);
}

/* Mobile Hamburger Button default hidden on Desktop */
.mobile-hamburger-btn {
    display: none;
}

.mobile-drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: rgba(15, 30, 54, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mobile-drawer-overlay.active {
    display: block !important;
}

.mobile-drawer-card {
    position: absolute;
    top: 0;
    right: 0;
    width: 88%;
    max-width: 380px;
    height: 100%;
    background: #FFFFFF;
    padding: 24px 20px;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    animation: drawerSlide 0.28s ease-out;
}

@keyframes drawerSlide {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.drawer-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color-hairline);
    margin-bottom: 20px;
}

.drawer-close-btn {
    background: var(--color-surface-soft);
    border: 1px solid var(--color-hairline);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    color: var(--color-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Search Card inside Drawer */
.mobile-search-box {
    background: var(--color-surface-soft);
    border: 1px solid var(--color-hairline);
    border-radius: var(--radius-lg);
    padding: 18px;
    margin-bottom: 24px;
}

.m-box-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.m-search-row {
    background: #FFFFFF;
    border: 1px solid var(--color-hairline);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.m-search-row:hover {
    border-color: var(--color-navy);
}

.m-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--color-muted);
    letter-spacing: 0.5px;
}

.m-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-navy);
    margin-top: 2px;
}

.m-search-submit {
    width: 100%;
    height: 46px;
    font-size: 14px;
    border-radius: var(--radius-md);
    margin-top: 6px;
}

/* Drawer Links */
.drawer-links-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-cat-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: var(--color-muted);
    margin-bottom: 4px;
}

.drawer-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-navy);
    text-decoration: none;
    background: var(--color-surface-soft);
    transition: background 0.2s, transform 0.2s;
}

.drawer-link-item:hover {
    background: #E5E0D8;
    transform: translateX(4px);
}

.drawer-link-item.wa-highlight {
    background: #25D366;
    color: #FFFFFF;
    font-weight: 700;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE FIXES (< 768px and < 480px)
   ========================================================================== */
@media (max-width: 768px) {
    /* Mobile Dedicated Portrait Background Image (Crisp & Symmetrical) */
    .immersive-bg {
        background-image: url('assets/hero_bg_mobile.jpg') !important;
        background-position: center top !important;
        background-size: cover !important;
    }

    /* Top Navbar Floating Header on Mobile */
    .top-nav.glass-nav {
        width: calc(100% - 32px) !important;
        margin: 14px auto 0 !important;
        height: 64px !important;
        padding: 0 16px !important;
        border-radius: 999px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .nav-wrapper {
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 !important;
    }

    .brand-logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .brand-logo .logo-img {
        height: 36px;
    }

    .brand-text .brand-name {
        font-size: 17px !important;
        line-height: 1.1;
    }

    .brand-text .brand-sub {
        font-size: 9px !important;
        letter-spacing: 1px;
    }

    /* Hide desktop floating search pill on mobile so hero image & text remain 100% clean */
    .desktop-search-pill,
    .nav-search-pill.glass-search-pill {
        display: none !important;
    }

    /* Display mobile hamburger button on far right with zero overlap */
    .mobile-hamburger-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 42px !important;
        height: 42px !important;
        border-radius: 50% !important;
        margin-left: auto !important;
        flex-shrink: 0 !important;
        background: rgba(255, 255, 255, 0.22) !important;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.45) !important;
        color: #FFFFFF !important;
        font-size: 18px !important;
        cursor: pointer;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .search-field-segment {
        padding: 6px 10px;
        flex: 1;
        min-width: 90px;
    }

    .search-orb {
        width: 36px;
        height: 36px;
    }

    /* Fixed Centered Popovers for Mobile Viewport */
    .search-popover,
    #whenPopover,
    #whoPopover {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        max-width: 360px;
        margin: 0 !important;
        z-index: 10005 !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    }

    /* Hero Banner Mobile */
    .hero-banner-section {
        min-height: 620px;
        padding: 32px 0 64px;
        text-align: center;
    }

    .hero-headline {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-bullets-row {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 20px;
        max-width: 100%;
    }

    /* Places Grid Mobile */
    .places-grid-top,
    .places-grid-bottom {
        grid-template-columns: 1fr;
    }

    /* Review Card Mobile */
    .review-card {
        width: 290px;
        padding: 18px;
    }

    /* Property Detail Page Mobile */
    .detail-body-layout {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .detail-photo-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .photo-large {
        grid-row: auto;
        height: 260px;
        object-fit: cover;
    }

    .detail-photo-grid img:not(.photo-large) {
        display: none;
    }

    .reservation-card {
        position: static !important;
        top: 0 !important;
    }

    /* Mobile Compact Footer Fix (Tight Padding & Gaps) */
    .footer-light {
        padding: 36px 0 24px !important;
    }

    .footer-columns {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        margin-bottom: 24px !important;
    }

    .footer-brand-desc {
        margin: 10px 0 14px !important;
        font-size: 13px !important;
    }

    .footer-col-title {
        margin-bottom: 10px !important;
        font-size: 14px !important;
    }

    .footer-links {
        gap: 8px !important;
    }

    .legal-band {
        padding-top: 16px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 26px;
    }

    .section-headline {
        font-size: 26px;
    }

    .search-field-segment {
        min-width: 100%;
    }

    .search-divider {
        display: none;
    }

    .whatsapp-cta-section {
        padding: 48px 16px;
    }
}

/* ==========================================================================
   FULL SCREEN PHOTO GALLERY MODAL (AIRBNB STYLE PHOTO TOUR)
   ========================================================================== */
.photo-gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #FFFFFF;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.photo-gallery-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    border-bottom: 1px solid #E5E0D8;
}

.photo-gallery-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #0F1E36;
}

.close-gallery-btn {
    background: #F4F1EA;
    border: 1px solid #E5E0D8;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F1E36;
    cursor: pointer;
    transition: all 0.2s;
}

.close-gallery-btn:hover {
    background: #0F1E36;
    color: #FFFFFF;
}

.photo-gallery-body {
    max-width: 1100px;
    margin: 32px auto;
    padding: 0 24px;
}

.photo-tour-section-title {
    font-size: 24px;
    font-weight: 800;
    color: #0F1E36;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F4F1EA;
}

.photo-tour-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.photo-tour-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #F4F1EA;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.photo-tour-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.photo-tour-item:hover img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .photo-tour-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .photo-gallery-header {
        padding: 14px 16px;
    }
}

/* Photo Tour Top Categories Strip */
.photo-tour-top-bar {
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E0D8;
}

.photo-tour-main-heading {
    font-size: 26px;
    font-weight: 800;
    color: #0F1E36;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.photo-tour-cat-list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.photo-tour-cat-card {
    flex: 0 0 auto;
    width: 140px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.photo-tour-cat-card:hover {
    transform: translateY(-4px);
}

.photo-tour-cat-card img {
    width: 140px;
    height: 94px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.photo-tour-cat-card span {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    display: block;
    line-height: 1.3;
}

/* ==========================================================================
   MOBILE AIRBNB-STYLE PDP EXPERIENCE (MATCHING REFERENCE SCREENSHOTS)
   ========================================================================== */
.mobile-pdp-top-bar { display: none; }
.mobile-pdp-hero { display: none; }
.mobile-fixed-bottom-bar { display: none; }
.mobile-sleep-section { margin: 32px 0; border-top: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; padding: 32px 0; }
.mobile-sleep-cards { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
.mobile-sleep-card { flex: 0 0 170px; width: 170px; border: 1px solid #E5E0D8; border-radius: 16px; padding: 14px; background: #FFF; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.mobile-sleep-card img { width: 100%; height: 110px; border-radius: 12px; object-fit: cover; margin-bottom: 10px; }
.mobile-sleep-card h5 { font-size: 15px; font-weight: 700; color: #222222; margin-bottom: 2px; }
.mobile-sleep-card p { font-size: 13px; color: #717171; margin: 0; }

@media (max-width: 768px) {
    .desktop-pdp-nav { display: none !important; }
    .desktop-pdp-header { display: none !important; }
    .desktop-photo-grid-wrap { display: none !important; }
    .detail-right-col { display: none !important; }

    .detail-body-layout {
        display: block !important;
        grid-template-columns: 1fr !important;
    }

    .mobile-pdp-top-bar {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 16px;
        left: 16px;
        right: 16px;
        z-index: 1001;
        pointer-events: none;
    }

    .mobile-circle-btn {
        pointer-events: auto;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #FFFFFF;
        border: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.18);
        color: #222222;
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .mobile-pdp-hero {
        display: block !important;
        position: relative;
        width: 100vw;
        height: 320px;
        margin-left: calc(-50vw + 50%);
        margin-top: -32px;
        margin-bottom: 24px;
        overflow: hidden;
        background: #000;
    }

    .mobile-hero-track {
        display: flex;
        width: 100%;
        height: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-hero-img {
        min-width: 100vw;
        height: 100%;
        object-fit: cover;
        scroll-snap-align: start;
    }

    .mobile-photo-counter {
        position: absolute;
        bottom: 16px;
        right: 16px;
        background: rgba(0, 0, 0, 0.75);
        color: #FFFFFF;
        padding: 5px 12px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
        backdrop-filter: blur(4px);
    }

    .mobile-fixed-bottom-bar {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        background: #FFFFFF !important;
        border-top: 1px solid #EBEBEB !important;
        padding: 14px 20px !important;
        align-items: center !important;
        justify-content: space-between !important;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.08) !important;
    }

    .mobile-bottom-price-box {
        display: flex;
        flex-direction: column;
    }

    .mobile-bottom-price {
        font-size: 17px;
        font-weight: 800;
        color: #222222;
    }

    .mobile-bottom-sub {
        font-size: 12px;
        font-weight: 600;
        color: #222222;
    }

    .mobile-reserve-btn {
        background: #E61E4F;
        color: #FFFFFF !important;
        padding: 13px 26px;
        border-radius: 8px;
        font-weight: 700;
}

@media (max-width: 768px) {
    .photo-tour-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .photo-gallery-header {
        padding: 14px 16px;
    }
}

/* Photo Tour Top Categories Strip */
.photo-tour-top-bar {
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E0D8;
}

.photo-tour-main-heading {
    font-size: 26px;
    font-weight: 800;
    color: #0F1E36;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.photo-tour-cat-list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.photo-tour-cat-card {
    flex: 0 0 auto;
    width: 140px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.photo-tour-cat-card:hover {
    transform: translateY(-4px);
}

.photo-tour-cat-card img {
    width: 140px;
    height: 94px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.photo-tour-cat-card span {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    display: block;
    line-height: 1.3;
}

/* ==========================================================================
   MOBILE AIRBNB-STYLE PDP EXPERIENCE (MATCHING REFERENCE SCREENSHOTS)
   ========================================================================== */
.mobile-pdp-top-bar { display: none; }
.mobile-pdp-hero { display: none; }
.mobile-fixed-bottom-bar { display: none; }
.mobile-pdp-title-block { display: none; }
.mobile-sleep-section { margin: 32px 0; border-top: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; padding: 32px 0; }
.mobile-sleep-cards { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
.mobile-sleep-card { flex: 0 0 170px; width: 170px; border: 1px solid #E5E0D8; border-radius: 16px; padding: 14px; background: #FFF; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.mobile-sleep-card img { width: 100%; height: 110px; border-radius: 12px; object-fit: cover; margin-bottom: 10px; }
.mobile-sleep-card h5 { font-size: 15px; font-weight: 700; color: #222222; margin-bottom: 2px; }
.mobile-sleep-card p { font-size: 13px; color: #717171; margin: 0; }

@media (max-width: 768px) {
    .desktop-pdp-nav { display: none !important; }
    .desktop-pdp-header { display: none !important; }
    .desktop-photo-grid-wrap { display: none !important; }
    .detail-right-col { display: none !important; }
    .mobile-pdp-title-block { display: block !important; }

    .detail-body-layout {
        display: block !important;
        grid-template-columns: 1fr !important;
    }

    .mobile-pdp-top-bar {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 16px;
        left: 16px;
        right: 16px;
        z-index: 1001;
        pointer-events: none;
    }

    .mobile-circle-btn {
        pointer-events: auto;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #FFFFFF;
        border: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.18);
        color: #222222;
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .mobile-pdp-hero {
        display: block !important;
        position: relative;
        width: 100vw;
        height: 320px;
        margin-left: calc(-50vw + 50%);
        margin-top: -32px;
        margin-bottom: 24px;
        overflow: hidden;
        background: #000;
    }

    .mobile-hero-track {
        display: flex;
        width: 100%;
        height: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-hero-img {
        min-width: 100vw;
        height: 100%;
        object-fit: cover;
        scroll-snap-align: start;
    }

    .mobile-photo-counter {
        position: absolute;
        bottom: 16px;
        right: 16px;
        background: rgba(0, 0, 0, 0.75);
        color: #FFFFFF;
        padding: 5px 12px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
        backdrop-filter: blur(4px);
    }

    .mobile-fixed-bottom-bar {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        background: #FFFFFF !important;
        border-top: 1px solid #EBEBEB !important;
        padding: 14px 20px !important;
        align-items: center !important;
        justify-content: space-between !important;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.08) !important;
    }

    .mobile-bottom-price-box {
        display: flex;
        flex-direction: column;
    }

    .mobile-bottom-price {
        font-size: 17px;
        font-weight: 800;
        color: #222222;
    }

    .mobile-bottom-sub {
        font-size: 12px;
        font-weight: 600;
        color: #222222;
    }

    .mobile-reserve-btn {
        background: #E61E4F;
        color: #FFFFFF !important;
        padding: 13px 26px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 15px;
        text-decoration: none;
        box-shadow: 0 4px 14px rgba(230,30,79,0.3);
    }

    .mobile-pdp-container {
        padding-bottom: 110px !important;
    }

    /* ── Meet your host: stack to single column on mobile ── */
    .meet-host-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .host-profile-card {
        max-width: 100% !important;
    }

    .shield-notice {
        border-top: none !important;
        padding-top: 0 !important;
    }
}

/* ==========================================================================
   DEDICATED INSTAGRAM COMMUNITY PANEL
   ========================================================================== */
.instagram-brand-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(220,39,67,0.45) !important;
}

.ig-card-preview {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.ig-card-preview:hover {
    transform: translateY(-4px);
}

.ig-card-preview:hover img {
    transform: scale(1.06);
}

.ig-card-preview:hover .ig-overlay {
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}
 
 .meet-host-grid {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 40px;
}

.host-profile-card {
    width: 100%;
    box-sizing: border-box;
}

.shield-notice {
    border-top: 1px solid #EBEBEB;
    padding-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #717171;
    line-height: 1.4;
}
