/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --sand: #f5efe6;
    --sand-dark: #e8ddd0;
    --terracotta: #c17a5a;
    --terracotta-dark: #9e5f3f;
    --sage: #7a9e7e;
    --sage-light: #b5cdb8;
    --cream: #faf6f0;
    --ink: #2c2416;
    --ink-light: #6b5c47;
    --ink-lighter: #8a7b6b;
    --warm-white: #fffdf9;
    --border: rgba(193, 122, 90, 0.2);
    --red: #8B2020;
    --h1-size: clamp(2.65rem, 7vw, 5.8rem);
    --h2-size: clamp(2rem, 4vw, 3.6rem);
    --h3-size: clamp(1.35rem, 2.4vw, 2rem);
    --body-size: 1rem;
    --small-text: 0.82rem;
    --micro-text: 0.72rem;
    --line-height-tight: 1.15;
    --line-height-body: 1.75;
    --line-height-loose: 1.95;
    --section-space: clamp(4.5rem, 8vw, 7.5rem);
    --card-radius: 8px;
    --shadow-soft: 0 18px 44px rgba(44, 36, 22, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', sans-serif;
    background: var(--cream);
    color: var(--ink);
    font-weight: 300;
    font-size: var(--body-size);
    line-height: var(--line-height-body);
    overflow-x: hidden;
    padding-top: 64px;
    font-display: swap;
}

h1 {
    font-size: var(--h1-size);
    line-height: var(--line-height-tight);
}

h2,
.section-title,
.blog-title,
.prop-hero-left h1,
.story-section h2 {
    font-size: var(--h2-size);
    line-height: 1.2;
}

h3 {
    font-size: var(--h3-size);
    line-height: 1.25;
}

/* Prevent Horizontal Overflow */
.container,
section,
.hero,
.prop-hero {
    overflow-x: clip;
}

/* Headings */
h1, h2, h3, .hero h1, .section-title, .blog-title, .blog-header h1,
.prop-hero-left h1, .story-section h2 {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
}

/* Body text */
p, span, a, li, button, .nav-links a, .btn-primary, .btn-outline,
.hero-sub, .section-sub, .blog-header p, .blog-meta, .blog-card-excerpt,
.prop-sub, .story-section p {
    font-family: 'Jost', 'Arial', 'Helvetica', sans-serif;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--terracotta);
    letter-spacing: 0.02em;
    text-decoration: none;
}

.nav-logo span {
    color: var(--ink);
    font-weight: 300;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-light);
    text-decoration: none;
    transition: color 0.2s;
    padding-bottom: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--terracotta);
}

.nav-links a.active {
    border-bottom: 2px solid var(--terracotta);
}

.nav-book {
    background: var(--terracotta) !important;
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
}

.nav-book.active {
    background: var(--terracotta-dark) !important;
    border-bottom: none !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: all 0.3s ease;
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 1rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: 1px solid var(--border);
    color: var(--ink-light);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-btn.active {
    background: var(--terracotta);
    color: white;
    border-color: var(--terracotta);
}

.lang-btn:hover:not(.active) {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.flag-icon {
    font-size: 0.9rem;
    line-height: 1;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: var(--terracotta);
    color: white;
    padding: 0.85rem 2rem;
    border: none;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: var(--terracotta-dark);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    padding: 0.85rem 2rem;
    border: 1px solid var(--ink-light);
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

/* ============================================
   CLS PREVENTION
   ============================================ */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: var(--section-space) 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   SHARED UTILITIES & COMPONENTS
   ============================================ */
.u-muted {
    color: var(--ink-light);
}

.u-micro {
    font-size: var(--micro-text);
}

.u-small {
    font-size: var(--small-text);
}

.full-width {
    width: 100%;
}

.u-link-accent {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 500;
}

.u-link-accent:hover {
    text-decoration: underline;
}

.card,
.related-card,
.cafe-card,
.stay-card,
.cta-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-soft);
}

.card-title,
.related-card h3,
.related-card h4,
.cafe-card h3,
.stay-card h3,
.cta-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--ink);
    line-height: 1.2;
}

.card-subtitle,
.card-copy,
.related-card p,
.cafe-card p,
.stay-card p,
.cta-card p {
    color: var(--ink-light);
    line-height: var(--line-height-body);
}

.card-image,
.related-card img,
.cafe-card img,
.stay-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-cta {
    color: var(--terracotta);
    font-weight: 500;
    text-decoration: none;
}

.micro-trust {
    margin-top: 1rem;
    color: var(--ink-light);
    font-size: var(--micro-text);
}

.selector-price {
    display: inline-block;
    margin: 0.5rem auto;
}

.selector-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.selector-actions .btn-outline,
.selector-actions .selector-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.selector-proof {
    margin-top: 0.75rem;
    color: var(--ink-light);
    font-size: 0.6rem;
}

.booking-badges,
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin: 1rem 0 1.5rem;
}

.booking-badge,
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 30px;
    padding: 0.3rem 0.85rem;
    font-size: 0.72rem;
}

.booking-badge.warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}

.booking-badge.success,
.trust-badge {
    background: #d1fae5;
    color: #065f46;
}

.trust-badge {
    background: var(--sand);
    color: var(--ink-light);
    font-size: 0.65rem;
}

.booking-kicker {
    margin-bottom: 0.75rem;
    color: var(--terracotta);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.booking-panel {
    background: var(--sand);
    border-radius: 12px;
    padding: 1rem;
}

.booking-panel-label {
    margin-bottom: 0.75rem;
    text-align: center;
    font-size: 0.75rem;
}

.payment-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.pay-tab {
    cursor: pointer;
    padding: 0.4rem 1rem;
}

.payment-panel {
    text-align: center;
}

.pay-error {
    display: none;
    margin-top: 0.5rem;
    color: #d32f2f;
    font-size: 0.75rem;
    text-align: center;
}

.booking-confirm-box {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: #d1fae5;
    text-align: center;
}

.booking-confirm-title {
    color: #065f46;
    font-weight: 600;
}

.booking-confirm-id {
    margin-top: 0.25rem;
    font-size: 0.8rem;
}

.booking-confirm-details {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

.captcha-box {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
    background: var(--cream);
}

.captcha-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.captcha-field {
    flex: 1;
    min-width: 150px;
}

.captcha-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--ink-light);
    font-size: 0.75rem;
}

.captcha-input {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.captcha-refresh {
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: none;
    cursor: pointer;
}

.form-error {
    display: none;
    margin-top: 0.5rem;
    color: #d32f2f;
    font-size: 0.7rem;
}

.blog-breadcrumb {
    margin-bottom: 1.5rem;
    color: var(--ink-light);
    font-size: 0.7rem;
}

.blog-breadcrumb a {
    color: var(--ink-light);
    text-decoration: none;
}

.blog-breadcrumb a:hover,
.blog-breadcrumb-current {
    color: var(--terracotta);
}

.blog-cta,
.related-posts {
    margin: 3rem 0 2rem;
    padding: 2rem;
    border-radius: var(--card-radius);
    background: var(--sand);
}

.related-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.related-card {
    width: 250px;
    padding: 1rem;
    text-decoration: none;
}

.contact-fallback {
    margin-top: 0.75rem;
    text-align: center;
    color: var(--ink-light);
    font-size: var(--micro-text);
}

.contact-fallback a {
    color: var(--terracotta);
    font-weight: 500;
    text-decoration: none;
}

.contact-fallback a:hover {
    text-decoration: underline;
}

.section-tag {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 1.5rem;
    height: 1px;
    background: var(--terracotta);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 1rem;
}

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

.section-sub {
    color: var(--ink-lighter);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* ============================================
   HERO SECTION (Homepage)
   ============================================ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 64px;
    overflow: hidden;
    background: var(--sand);
}

.hero-left {
    background: var(--sand);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 4rem 3rem 5rem;
    position: relative;
}

.hero-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--terracotta), transparent);
}

.hero-tag {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-tag::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--terracotta);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 1rem;
}

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

.hero-sub {
    font-size: 1rem;
    color: var(--ink-lighter);
    max-width: 400px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
    gap: 3px;
    aspect-ratio: 4/3;
    background: var(--sand);
}

.mosaic-cell {
    overflow: hidden;
    position: relative;
    min-height: 150px;
}

.mosaic-cell.tall {
    grid-row: span 2;
}

.mosaic-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.75rem 1.25rem;
    border-radius: 2px;
    border-left: 3px solid var(--terracotta);
}

.hero-badge p {
    font-size: 0.68rem;
    color: var(--ink-light);
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.hero-badge strong {
    font-size: 0.9rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--ink);
}

/* Instant booking banner */
.instant-banner {
    text-align: center;
    margin: 1rem auto 1.5rem;
    max-width: 500px;
}

.instant-banner p {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--terracotta);
    font-weight: 500;
}

/* Remove empty black bar if it exists */
#availability-message:empty,
#cancellation-message:empty {
    display: none;
}

/* Ensure the guest details section transitions smoothly */
#guest-details {
    transition: all 0.3s ease;
}

/* ============================================
   PROPERTY PAGES (MiaCasa Hanoi & Old Quarter)
   ============================================ */
.prop-hero {
    min-height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--sand);
}

.prop-hero-left {
    background: var(--sand);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 4rem 3rem 4rem;
    position: relative;
}

.prop-hero-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--terracotta), transparent);
}

.prop-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--ink-light) !important;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    margin-bottom: 1rem;
    text-transform: uppercase;
    transition: color 0.2s;
    background: none;
    border: none;
    font-family: 'Jost', sans-serif;
}

.prop-back:hover {
    color: var(--terracotta) !important;
}

.prop-hero-left .section-tag {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
}

.prop-hero-left h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1rem;
}

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

.prop-sub {
    font-family: 'Jost', sans-serif;
    font-size: 0.94rem;
    color: var(--ink-light);
    max-width: 400px;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.prop-hero-img {
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 400px;
}

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

.prop-hero-left .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.prop-hero-left .btn-primary,
.prop-hero-left .btn-outline {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   PROPERTY CARDS (Homepage)
   ============================================ */
#properties {
    background: var(--warm-white);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .properties-grid {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .selector-grid {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .selector-card {
        max-width: 100%;
    }
    
    .booking-form-wrap {
        max-width: 100%;
        margin: 0 1rem;
    }
}

/* Card styling - matching .selector-card style */
.property-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--terracotta);
}

/* Image container - fixed size, no cropping */
.property-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--sand);
}

.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--terracotta);
    color: white;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    z-index: 1;
}

/* Card body */
.property-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.property-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.2rem;
}

.property-loc {
    font-size: 0.7rem;
    color: var(--terracotta);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.property-desc {
    font-size: 0.8rem;
    color: var(--ink-lighter);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

/* Property meta (beds, baths, etc.) */
.property-meta {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.meta-item {
    flex: 1;
    text-align: center;
}

.meta-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--terracotta);
    display: block;
}

.meta-lbl {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-light);
    display: block;
}

/* Buttons inside card */
.property-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.property-buttons .btn-outline,
.property-buttons .btn-primary {
    flex: 1;
    text-align: center;
    padding: 0.6rem 0.5rem;
    font-size: 0.7rem;
    min-height: auto;
    border-radius: 40px;
}

/* Price row styling */
.property-card .price-row {
    background: linear-gradient(135deg, var(--ink) 0%, #1a1510 100%);
    border-radius: 60px;
    padding: 0.4rem 1rem;
    display: inline-block;
    margin: 0.5rem 0;
}

.property-card .from-text {
    font-size: 0.6rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.property-card .price-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

.property-card .per-night {
    font-size: 0.55rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

.property-card .save-badge {
    background: var(--terracotta);
    color: white;
    font-size: 0.5rem;
    font-weight: 600;
    padding: 0.15rem 0.4rem;
    border-radius: 30px;
    display: inline-block;
    margin-left: 0.3rem;
    vertical-align: middle;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .property-img {
        height: 180px;
    }
    
    .property-body {
        padding: 1rem;
    }
    
    .property-name {
        font-size: 1.2rem;
    }
    
    .property-desc {
        font-size: 0.75rem;
    }
}

/* ============================================
   AMENITIES & RULES (Shared Grid System)
   ============================================ */
.amen-grid,
.amenities-grid,
.rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.amenity-item,
.rule-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.amenity-item:hover,
.rule-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.amenity-icon,
.rule-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.75rem;
}

.amenity-title,
.rule-title {
    font-weight: 600;
    color: var(--terracotta);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.amenity-desc {
    font-size: 0.8rem;
    color: var(--ink-light);
    line-height: 1.5;
}

/* Rule List Styles */
.rule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rule-list li {
    font-size: 0.75rem;
    color: var(--ink-light);
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.rule-list li::before {
    content: "•";
    color: var(--terracotta);
    position: absolute;
    left: 0;
}

/* ============================================
   ROOMS GRID (Property Pages)
   ============================================ */
/* ============================================
   ROOMS CARDS (Property Pages - Enhanced)
   ============================================ */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.room-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(44, 36, 22, 0.1);
}

/* Image wrapper inside room card */
.room-card-img-wrap {
    display: block;
    overflow: hidden;
    height: 220px;
}

.room-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Card body */
.room-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.room-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
}

.room-card-desc {
    font-size: 0.85rem;
    color: var(--ink-light);
    line-height: 1.5;
    margin: 0;
}

.room-card-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.room-card-specs li {
    font-size: 0.75rem;
    color: var(--ink-light);
    background: var(--cream);
    padding: 0.25rem 0.6rem;
    border-radius: 30px;
    display: inline-block;
}

.room-card-price {
    font-size: 0.85rem;
    color: var(--ink-light);
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.room-card-price strong {
    font-size: 1.1rem;
    color: var(--terracotta);
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .room-card-img-wrap {
        height: 180px;
    }
    
    .room-card-body {
        padding: 1rem;
    }
    
    .room-card-name {
        font-size: 1.2rem;
    }
}

/* ============================================
   FEATURE CARDS (For Apartment Features)
   ============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(44, 36, 22, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--ink-light);
    line-height: 1.5;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================
   WHO LIST (Perfect For Section)
   ============================================ */
.who-list {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-width: 500px;
}

.who-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--ink-light);
}

.who-list li::before {
    content: '✦';
    color: var(--terracotta);
    flex-shrink: 0;
    font-size: 0.65rem;
    margin-top: 0.25em;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 210px;
    gap: 6px;
    margin-top: 2rem;
    min-height: 200px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: 2px;
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 36, 22, 0.38);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gal-overlay {
    opacity: 1;
}

.gal-overlay span {
    color: white;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.55);
    padding: 0.35rem 0.9rem;
    border-radius: 2px;
}

.gallery-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    border-radius: 4px;
    overflow: hidden;
}

.gallery-teaser-grid img,
.blog-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    background: var(--sand);
}


/* ============================================
   BOOKING FORM
   ============================================ */
#booking {
    background: var(--sand);
}

.booking-form-wrap {
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    background: var(--cream);
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
}

.pricing-note {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--sand);
    border-left: 3px solid var(--terracotta);
    border-radius: 0 2px 2px 0;
    font-size: 0.84rem;
    color: var(--ink-lighter);
}

.property-select-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.prop-select-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    min-height: 70px;
    width: 100%;
    text-align: left;
    border: 1px solid var(--border);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.prop-select-btn.active {
    background: var(--terracotta);
    color: white;
    border-color: var(--terracotta);
}

.prop-select-btn .pbn {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.prop-select-btn .pbs {
    font-size: 0.7rem;
    opacity: 0.8;
    display: block;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 1.75rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--sand);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.contact-item-text {
    font-size: 0.84rem;
    color: var(--ink-light);
    line-height: 1.7;
}

.contact-item-text strong {
    display: block;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 0.1rem;
}

.contact-item-text a {
    color: var(--terracotta);
    text-decoration: none;
}

.contact-form-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.25rem;
}

.confirm-msg {
    display: none;
    margin-top: 1rem;
    color: var(--sage);
    font-size: 0.88rem;
    padding: 0.85rem 1rem;
    background: rgba(122, 158, 126, 0.1);
    border-radius: 2px;
    border-left: 3px solid var(--sage);
}

/* Contact Form Styles */
.contact-form-box .form-group {
    margin-bottom: 1.25rem;
}

.contact-form-box .form-group label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.contact-form-box .form-group input,
.contact-form-box .form-group select,
.contact-form-box .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    background: var(--cream);
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.contact-form-box .form-group input:focus,
.contact-form-box .form-group select:focus,
.contact-form-box .form-group textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 2px rgba(193, 122, 90, 0.1);
}

.contact-form-box .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Form grid layout */
.contact-form-box .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-form-box .form-full {
    grid-column: span 2;
}

/* Responsive form */
@media (max-width: 768px) {
    .contact-form-box .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-box .form-full {
        grid-column: span 1;
    }
}

/* Contact info links - ensure terracotta color */
.contact-item-text a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item-text a:hover {
    color: var(--terracotta-dark);
    text-decoration: underline;
}

/* Confirm message styling */
.confirm-msg {
    display: none;
    margin-top: 1rem;
    color: var(--sage);
    font-size: 0.88rem;
    padding: 0.85rem 1rem;
    background: rgba(122, 158, 126, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--sage);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
#testimonials {
    background: var(--ink);
    color: white;
}

#testimonials .section-title {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 1.75rem;
}

.testimonial-card .stars {
    color: var(--terracotta);
    font-size: 0.82rem;
    margin-bottom: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.4rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.76rem;
    font-weight: 500;
    color: white;
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 0.84rem;
    font-weight: 500;
    color: white;
}

.reviewer-meta {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
}

.reviews-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.review-filter-btn {
    padding: 0.42rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    border-radius: 2px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s;
}

.review-filter-btn.active,
.review-filter-btn:hover {
    background: var(--terracotta);
    color: white;
    border-color: var(--terracotta);
}

.reviews-load-more {
    text-align: center;
    margin-top: 2.5rem;
}

/* Platform Tags for Reviews */
.platform-tag {
    display: inline-block;
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    background: var(--sand);
    color: var(--ink-light);
}

.platform-tag.airbnb {
    background: #FF5A5F;
    color: white;
}

.platform-tag.booking {
    background: #003580;
    color: white;
}

.platform-tag.agoda {
    background: #D73236;
    color: white;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: white;
    border: none;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
    text-align: left;
    transition: background 0.2s;
}

.faq-q:hover {
    background: var(--cream);
}

.plus-icon {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--terracotta);
    transition: transform 0.2s;
}

.faq-item.open .plus-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    padding: 0 1.25rem;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 1.25rem 1.25rem 1.25rem;
}

.faq-a p {
    font-size: 0.85rem;
    color: var(--ink-light);
    line-height: 1.6;
    margin: 0;
}

.faq-helper {
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   SECTION NAVIGATION (Desktop & Mobile)
   ============================================ */
.section-nav {
    position: sticky;
    top: 70px;
    z-index: 90;
    background: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    padding: 0.75rem 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 0 0 1rem 0;
}

.section-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-light);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    transition: all 0.2s ease;
    white-space: nowrap;
    background: white;
    border: 1px solid var(--border);
}

.section-nav a:hover,
.section-nav a.active {
    background: var(--terracotta);
    color: white;
    border-color: var(--terracotta);
}

/* Mobile Floating Navigation */
.fab-nav {
    display: none;
    position: fixed;
    bottom: 80px;
    left: 20px;
    z-index: 1000;
}

.fab-nav-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--terracotta);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(193, 122, 90, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.fab-nav-menu {
    position: absolute;
    bottom: 60px;
    left: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    min-width: 170px;
    display: none;
    border: 1px solid var(--border);
    background: var(--cream);
}

.fab-nav-menu.show {
    display: block;
    animation: fadeInUp 0.2s ease;
}

.fab-nav-menu a {
    display: block;
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
    color: var(--ink-light);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.15s;
}

.fab-nav-menu a:hover {
    background: var(--sand);
    color: var(--terracotta);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--ink);
    padding: 4rem 0 2rem;
    min-height: 300px;
}

/* Make all footer text lighter by default */
footer, 
footer p, 
footer span, 
footer a,
.footer-brand p,
.footer-col ul li a,
.footer-bottom span {
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Brand - make logo white */
.footer-brand .nav-logo {
    color: white !important;
    text-decoration: none;
}

.footer-brand .nav-logo span {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.55);
}

/* Column headings - brighter */
.footer-col h4 {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

/* Links */
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul li a {
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--terracotta) !important;
}

/* Bottom bar */
.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* ============================================
   FLOATING BUTTONS & UTILITIES
   ============================================ */

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--terracotta);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 99;
    transition: all 0.2s ease;
}

.back-to-top:hover {
    background: var(--terracotta-dark);
    transform: scale(1.05);
}

.back-to-top.visible {
    display: flex;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 80px;
    background-color: #25D366;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 99;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    background-color: #128C7E;
}

/* Floating Book Button (Desktop) */
.floating-book-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--terracotta);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 15px rgba(193, 122, 90, 0.3);
    z-index: 99;
    transition: all 0.3s ease;
}

.floating-book-btn:hover {
    background: var(--terracotta-dark);
    transform: scale(1.02);
}

/* Sticky Book Button (Mobile Bottom Bar) */
.sticky-book-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--terracotta);
    color: white;
    text-align: center;
    padding: 0.95rem 1rem calc(0.95rem + env(safe-area-inset-bottom));
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-decoration: none;
    z-index: 1000;
    min-height: 60px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
    transition: background 0.2s ease;
}

.sticky-book-btn:hover {
    background: var(--terracotta-dark);
}

/* Chatbot FAB */
.chatbot-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--terracotta);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(193, 122, 90, 0.38);
    z-index: 100;
    transition: transform 0.2s;
}

.chatbot-fab:hover {
    transform: scale(1.08);
}

/* Desktop layout - side by side */
@media (min-width: 769px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-fab {
        bottom: 20px;
        right: 90px;
    }
    
    .whatsapp-float {
        display: none;
    }
    
    .sticky-book-btn {
        display: none;
    }
    
    .floating-book-btn {
        display: flex;
    }
}

/* Mobile layout - stacked vertically */
@media (max-width: 768px) {
    .sticky-book-btn {
        display: block;
    }
    
    .floating-book-btn {
        display: none;
    }
    
    .whatsapp-float {
        display: flex;
        bottom: 140px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 20px;
        z-index: 98;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
        z-index: 99;
    }
    
    .chatbot-fab {
        bottom: 200px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
        z-index: 100;
    }
    
    .fab-nav {
        bottom: 100px;
        left: 16px;
        z-index: 1000;
    }
    
    body {
        padding-bottom: 70px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 130px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .back-to-top {
        bottom: 75px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .chatbot-fab {
        bottom: 185px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .fab-nav {
        bottom: 90px;
        left: 12px;
    }
    
    .fab-nav-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Story Link Styling */
.story-link {
    display: inline-block;
    background: transparent;
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--terracotta);
    border-radius: 40px;
    transition: all 0.2s ease;
}

.story-link:hover {
    background: var(--terracotta);
    color: white;
    transform: translateY(-2px);
}

.nav-anchor {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
    height: 0;
}

/* ============================================
   CHATBOT WINDOW
   ============================================ */
.chatbot-window {
    position: fixed;
    bottom: 200px;
    right: 20px;
    z-index: 200;
    width: 320px;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(44, 36, 22, 0.14);
    display: none;
    flex-direction: column;
    overflow: hidden;
    max-height: 460px;
}

.chatbot-window.open {
    display: flex;
}

.chatbot-header {
    background: var(--terracotta);
    color: white;
    padding: 0.9rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
}

.chatbot-header-sub {
    font-size: 0.68rem;
    opacity: 0.78;
    margin-top: 1px;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.75;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.msg {
    max-width: 85%;
    padding: 0.55rem 0.85rem;
    border-radius: 2px;
    font-size: 0.83rem;
    line-height: 1.5;
}

.msg.bot {
    background: var(--sand);
    color: var(--ink);
    align-self: flex-start;
}

.msg.user {
    background: var(--terracotta);
    color: white;
    align-self: flex-end;
}

.chatbot-input-area {
    padding: 0.65rem 0.9rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 0.5rem;
}

.chatbot-input {
    flex: 1;
    padding: 0.45rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 0.83rem;
    outline: none;
    color: var(--ink);
}

.chatbot-send {
    background: var(--terracotta);
    color: white;
    border: none;
    padding: 0.45rem 0.85rem;
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.83rem;
}

/* ============================================
   OUR STORY PAGE
   ============================================ */
.host-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.image-card,
.building-card {
    background: var(--sand);
    border-radius: 12px;
    padding: 0.75rem;
    text-align: center;
    border: 1px solid var(--border);
}

.image-card img,
.building-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    object-fit: contain;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================
   PAYMENT BUTTONS
   ============================================ */
.pay-tab {
    background: white;
    color: var(--ink-light);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
}

.pay-tab.active {
    background: var(--terracotta);
    color: white;
    border-color: var(--terracotta);
}

.paypal-btn {
    background: #0070ba !important;
    color: white !important;
    border: none !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-family: 'Jost', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    min-width: 160px !important;
    display: inline-block !important;
    text-align: center !important;
}

.paypal-btn:hover {
    background: #003087 !important;
}

.vietqr-btn {
    background: var(--terracotta) !important;
    color: white !important;
    border: none !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-family: 'Jost', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    min-width: 200px !important;
    display: inline-block !important;
    text-align: center !important;
}

.vietqr-btn:hover {
    background: var(--terracotta-dark) !important;
}

/* ============================================
   PRICE & FEATURE STYLES (Homepage Additions)
   ============================================ */
.price-prominent {
    background: linear-gradient(135deg, var(--ink) 0%, #1a1510 100%);
    border-radius: 60px;
    padding: 0.5rem 1.25rem;
    display: inline-block;
    margin: 0.75rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price-prominent .currency {
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.price-prominent .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

.price-prominent .night {
    font-size: 0.65rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

.price-save-badge,
.save-badge {
    background: var(--terracotta);
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 30px;
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.property-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    align-items: stretch;
}

.property-buttons .btn-outline,
.property-buttons .btn-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    text-align: center;
    padding: 0.9rem 1rem;
}

.property-notice {
    margin-top: 1rem;
    padding: 0.5rem;
    background: var(--sand);
    border-radius: 4px;
}

.property-notice p {
    font-size: 0.65rem;
    color: var(--ink-light);
    margin: 0;
}

.property-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.property-features li {
    font-size: 0.86rem;
    color: var(--ink-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.55rem;
}

.property-features li::before {
    content: '✦';
    color: var(--terracotta);
    flex-shrink: 0;
}

.price-row {
    background: linear-gradient(135deg, var(--ink) 0%, #1a1510 100%);
    border-radius: 60px;
    padding: 0.5rem 1.25rem;
    display: inline-block;
    margin: 0.75rem 0;
}

.from-text {
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.price-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

.per-night {
    font-size: 0.65rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

.card-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.card-btn {
    flex: 1;
    text-align: center;
    padding: 0.7rem 1rem;
}

/* ============================================
   CHOOSE YOUR STAY SELECTOR (Homepage)
   ============================================ */
.stay-selector {
    background: #f5efe6;
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1000px;
}

.stay-selector h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #2c2416;
}

.selector-grid {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.selector-card {
    flex: 1;
    min-width: 260px;
    max-width: 360px;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.selector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.selector-card.selected {
    border-color: #c17a5a;
    background: #fffaf5;
}

.selector-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.selector-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2416;
    margin-bottom: 0.5rem;
}

.selector-card p {
    font-size: 0.85rem;
    color: #6b5c47;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.selector-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.selector-features li {
    font-size: 0.75rem;
    color: #6b5c47;
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.selector-features li::before {
    content: "✓";
    color: #c17a5a;
    font-weight: bold;
}

.selector-btn {
    display: inline-block;
    background: #c17a5a;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: background 0.3s ease;
    margin-top: 0.5rem;
}

.selector-btn:hover {
    background: #a05a3e;
    color: white;
}

/* ============================================
   DIFFERENTIATORS STRIP & TRUST BADGES
   ============================================ */
.differentiators-strip {
    background: #2c2416;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.differentiators-strip span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.trust-badge {
    font-size: 0.7rem;
    color: #6b5c47;
    background: #f5efe6;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-book-dates {
    background: #c17a5a;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-book-dates:hover {
    background: #a05a3e;
    transform: translateY(-2px);
}

.btn-secondary-book {
    background: transparent;
    border: 2px solid #c17a5a;
    color: #c17a5a;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary-book:hover {
    background: #c17a5a;
    color: white;
}

/* ============================================
   MISC
   ============================================ */
.phone-wrapper {
    display: flex;
    width: 100%;
    gap: 0.5rem;
}

.phone-wrapper select {
    width: auto;
    min-width: 100px;
}

.phone-wrapper input {
    flex: 1;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--terracotta);
    color: white;
    padding: 8px 16px;
    z-index: 100;
    text-decoration: none;
    border-radius: 4px;
}

.skip-link:focus {
    top: 10px;
}

/* Focus Visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 2px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 12px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.6s linear infinite;
}

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

.reveal.visible {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

/* ============================================
   REDUCED MOTION ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   RESPONSIVE MEDIA QUERIES (Consolidated)
   ============================================ */
/* Tablet and below */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .hero-left {
        padding: 2rem 1.5rem;
        order: 2;
    }
    .hero-left::after {
        display: none;
    }
    .hero-right {
        height: 280px;
        order: 1;
    }
    .hero-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .prop-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .prop-hero-left {
        padding: 2rem 1.5rem;
    }
    .prop-hero-left::after {
        display: none;
    }
    .prop-hero-img {
        height: 260px;
        min-height: auto;
    }
    .prop-hero-left h1 {
        font-size: 1.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .compare-stays-grid {
        grid-template-columns: 1fr;
    }
    
    .amen-grid,
    .amenities-grid,
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: rgba(250, 246, 240, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        z-index: 99;
        overflow-y: auto;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    .hamburger {
        display: flex;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-mosaic {
        aspect-ratio: 16/9;
    }
    
    #properties {
        display: block !important;
        width: 100% !important;
        overflow: visible !important;
    }
    .properties-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        width: 100% !important;
        min-height: auto !important;
        padding: 0 1rem !important;
    }
    .property-card {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        margin: 0 !important;
    }
    .property-img {
        height: 200px !important;
        display: block !important;
    }
    .property-body {
        padding: 1rem !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }
    .gallery-item.wide {
        grid-column: span 2;
    }
    
    .section-nav {
        display: none;
    }
    .fab-nav {
        display: block;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .faq-helper div {
        flex-direction: column;
    }
    
    .whatsapp-float {
        display: none;
    }
    .floating-book-btn {
        display: none;
    }
    .sticky-book-btn {
        display: block;
    }
    body {
        padding-bottom: 70px;
    }
    
    .phone-wrapper {
        flex-direction: column;
    }
    .phone-wrapper select {
        width: 100%;
    }
    
    .host-photo {
        width: 120px;
        height: 120px;
    }
    
    .stay-selector {
        padding: 1.5rem;
        margin: 1rem;
    }
    .selector-grid {
        flex-direction: column;
        align-items: center;
    }
    .selector-card {
        max-width: 100%;
    }
    .differentiators-strip {
        gap: 1rem;
        font-size: 0.65rem;
    }
}

/* Small mobile */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero-right {
        height: 240px;
    }
    
    .prop-hero-left h1 {
        font-size: 1.6rem;
    }
    .prop-hero-left .hero-btns .btn-primary,
    .prop-hero-left .hero-btns .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .property-select-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item.wide {
        grid-column: span 1;
    }
    
    .section-nav {
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .section-nav::-webkit-scrollbar {
        display: none;
    }
    .section-nav a {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }
    
    .property-buttons {
        flex-direction: column;
    }
    .property-buttons .btn-outline,
    .property-buttons .btn-primary {
        width: 100%;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .amen-grid,
    .amenities-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }
}

/* Desktop navigation visibility */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
    .whatsapp-float {
        display: none;
    }
    .floating-book-btn {
        display: none;
    }
}
