:root {
    --navy: #1B305B;
    --navy-dark: #0f1f3d;
    --navy-light: #2a4575;
    --gold: #C5A059;
    --gold-dark: #A8863F;
    --gold-light: #d4b872;
    --cream: #F5F0E6;
    --cream-dark: #E8DFD0;
    --ocean: var(--navy);
    --ocean-dark: var(--navy-dark);
    --shell: var(--gold);
    --shell-dark: var(--gold-dark);
    --sand: var(--cream);
    --sand-dark: var(--cream-dark);
    --coral: #ff6b6b;
    --glass: rgba(255, 255, 255, 0.82);
    --glass-dark: rgba(15, 31, 61, 0.45);
    --glass-border: rgba(197, 160, 89, 0.22);
    --shadow: 0 8px 32px rgba(27, 48, 91, 0.1);
    --shadow-gold: 0 8px 28px rgba(197, 160, 89, 0.25);
    --radius: 16px;
}

* { box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--navy-dark);
    background: linear-gradient(180deg, var(--cream) 0%, #faf8f4 70%, var(--cream-dark) 100%);
    background-attachment: fixed;
    padding-bottom: 80px;
}

h1, h2, h3, .section-title, .hero-title, .brand-logo, .footer-brand {
    font-family: 'Playfair Display', serif;
}

/* Glassmorphism */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.glass-nav {
    background: rgba(245, 240, 230, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 2px 20px rgba(27, 48, 91, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .navbar { padding: 0.55rem 0; }
.brand-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0;
    margin-right: 1rem;
    max-width: min(340px, 72vw);
}
.brand-logo-img {
    height: 68px;
    width: auto;
    max-width: 72px;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(27, 48, 91, 0.12));
    transition: transform 0.25s ease;
}
.brand-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}
.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1.5px;
}
.brand-tagline {
    font-size: 0.68rem;
    color: var(--gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.brand-logo:hover .brand-logo-img { transform: scale(1.04); }
.btn-book-header {
    padding: 0.55rem 1.35rem !important;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
}

.hero-logo-wrap {
    display: inline-block;
    background: var(--cream);
    padding: 14px 22px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(197, 160, 89, 0.35);
    margin-bottom: 1.25rem;
}
.hero-logo-img {
    display: block;
    max-height: clamp(100px, 18vw, 150px);
    width: auto;
    max-width: min(280px, 85vw);
    object-fit: contain;
}

.footer-logo-transparent { margin-bottom: 0.5rem; }
.footer-logo-transparent-img {
    display: block;
    max-height: 150px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}
.footer-bottom-logo { margin-top: 0.5rem; }
.footer-bottom-logo-img {
    max-height: clamp(120px, 18vw, 200px);
    width: auto;
    max-width: min(420px, 90vw);
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35));
    opacity: 0.98;
}

.gallery-item { transition: transform 0.3s, box-shadow 0.3s; border: 1px solid rgba(197, 160, 89, 0.15); }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-gold); }
.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--navy) !important;
    position: relative;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--gold-dark) !important; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s, left 0.25s;
}
.nav-link:hover::after { width: 70%; left: 15%; }

.btn-beach, .btn-shell {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(197, 160, 89, 0.35);
}
.btn-beach:hover, .btn-shell:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.45);
    color: #fff;
}

.btn-beach-outline, .btn-shell-outline {
    background: transparent;
    color: var(--navy) !important;
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 0.4rem 1.25rem;
    font-weight: 600;
}
.btn-beach-outline:hover, .btn-shell-outline:hover {
    background: var(--gold);
    color: #fff !important;
    border-color: var(--gold);
}

.text-shell { color: var(--shell) !important; }
.text-muted-light { color: rgba(255,255,255,0.75) !important; }
.section-label { display: inline-block; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.8rem; margin-bottom: 0.5rem; }
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--navy);
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0.5rem auto 0;
    border-radius: 2px;
}
.section-header.text-center .section-title::after { margin-left: auto; margin-right: auto; }

/* Full-screen drone hero */
.hero-drone {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a1a2e;
}
.hero-drone-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-drone-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 31, 61, 0.35) 0%,
        rgba(27, 48, 91, 0.4) 45%,
        rgba(27, 48, 91, 0.55) 75%,
        rgba(15, 31, 61, 0.65) 100%
    );
    z-index: 1;
}
.hero-beach-shade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: min(28vh, 220px);
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 119, 182, 0.12) 18%,
        rgba(144, 205, 220, 0.35) 42%,
        rgba(254, 250, 224, 0.72) 68%,
        rgba(248, 251, 255, 0.92) 88%,
        #f8fbff 100%
    );
    z-index: 2;
    pointer-events: none;
}
.hero-beach-shade::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 48' preserveAspectRatio='none'%3E%3Cpath fill='%23f8fbff' d='M0,24 C150,48 350,0 600,24 C850,48 1050,0 1200,24 L1200,48 L0,48 Z'/%3E%3C/svg%3E") bottom center / 100% 100% no-repeat;
    opacity: 0.9;
}
.hero-drone-content {
    position: relative;
    z-index: 3;
    padding: 8rem 1rem 4rem;
    width: 100%;
}
.hero-badge {
    display: inline-block;
    background: rgba(27, 48, 91, 0.55);
    backdrop-filter: blur(8px);
    color: var(--gold-light);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(197, 160, 89, 0.45);
    font-weight: 500;
}
.hero-search {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(245, 240, 230, 0.94) !important;
    border: 1px solid rgba(197, 160, 89, 0.25) !important;
}
.hero-drone-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    max-width: 620px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}
.hero-scroll-hint {
    text-align: center;
    color: rgba(255,255,255,0.6);
    margin-top: 2rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.shell-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}
.shell-features li i {
    color: var(--shell);
    width: 28px;
}
.shell-contact-card h5 { color: var(--ocean-dark); }

/* Legacy hero (fallback) */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: url('/images/hero-beach.jpg') center/cover no-repeat;
    background-color: #0077b6;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(2, 62, 138, 0.7), rgba(0, 119, 182, 0.5));
}
.hero-content { position: relative; z-index: 1; padding: 4rem 0; }
.hero-title { font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; font-weight: 700; }
.hero-title span { color: #ffd166; }
.hero-subtitle { color: rgba(255,255,255,0.9); font-size: 1.1rem; }
.search-bar { padding: 1.5rem; margin-top: 1rem; }

/* Sections */
.section-padding { padding: 5rem 0; }
.bg-sand { background: var(--cream); }

/* Destination cards */
.destination-card {
    display: block; text-decoration: none; color: inherit;
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: transform 0.3s;
}
.destination-card:hover { transform: translateY(-5px); color: inherit; }
.destination-img { height: 200px; background-size: cover; background-position: center; background-color: var(--ocean); }
.destination-info { padding: 1rem; background: #fff; }
.destination-info h5 { margin: 0; color: var(--ocean-dark); }

/* Property cards */
.property-card { overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid rgba(197, 160, 89, 0.12); }
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.property-card-img { position: relative; height: 220px; overflow: hidden; }
.property-card-img img { width: 100%; height: 100%; object-fit: cover; }
.wishlist-btn {
    position: absolute; top: 12px; right: 12px;
    background: rgba(255,255,255,0.9); border: none; border-radius: 50%;
    width: 36px; height: 36px; cursor: pointer;
}
.property-name { font-size: 1.1rem; font-weight: 600; margin: 0; }
.rating-badge { background: rgba(197, 160, 89, 0.15); color: var(--gold-dark); padding: 2px 8px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }
.amenities-tags .tag { display: inline-block; background: rgba(27, 48, 91, 0.08); color: var(--navy); font-size: 0.75rem; padding: 2px 8px; border-radius: 12px; margin-right: 4px; }
.price { font-size: 1.25rem; font-weight: 700; color: var(--navy); }

/* Experience cards */
.experience-icon { font-size: 2.5rem; color: var(--ocean); margin-bottom: 1rem; }

/* Location — beach view bottom section */
.location-beach-section {
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}
.location-beach-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.05);
}
.location-beach-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27, 48, 91, 0.92) 0%,
        rgba(15, 31, 61, 0.88) 45%,
        rgba(15, 31, 61, 0.94) 100%
    );
}
.location-beach-section .container { z-index: 2; }
.section-label-light { color: var(--gold-light); }
.location-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #fff;
    margin-bottom: 0.75rem;
}
.location-lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 420px;
}
.location-info-stack { display: flex; flex-direction: column; gap: 1rem; }
.location-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 1rem 1.15rem;
}
.location-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--shell), var(--shell-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}
.location-info-item strong {
    display: block;
    color: #ffd166;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}
.location-info-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    line-height: 1.45;
}
.location-info-item a { color: #fff; text-decoration: none; }
.location-info-item a:hover { color: #ffd166; }
.btn-shell-outline-light {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.65) !important;
    background: rgba(255, 255, 255, 0.08);
}
.btn-shell-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff !important;
    border-color: #fff !important;
}
.location-map-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.location-map-header {
    background: linear-gradient(135deg, var(--shell), var(--shell-dark));
    color: #fff;
    padding: 0.85rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
}
.location-map-frame {
    position: relative;
    height: 380px;
    background: #e8f4fd;
}
.location-map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.site-footer {
    color: #fff;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    background: var(--navy-dark);
}
.footer-beach-bg {
    position: absolute;
    inset: 0;
    background: url('/images/shell-guesthouse.jpg') center/cover no-repeat;
    opacity: 0.18;
}
.footer-beach-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(27, 48, 91, 0.75) 0%,
        rgba(15, 31, 61, 0.94) 40%,
        rgba(15, 31, 61, 0.98) 100%
    );
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(180deg, rgba(15, 31, 61, 0) 0%, rgba(15, 31, 61, 0.35) 100%);
    pointer-events: none;
    z-index: 1;
}
.site-footer .container { position: relative; z-index: 2; }
.site-footer h5, .site-footer h6 { color: #fff; }
.footer-brand { display: flex; align-items: center; }
.footer-contact-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.footer-chip:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    transform: translateY(-1px);
}
.footer-chip i { color: var(--gold-light); }
.footer-divider { border-color: rgba(255, 255, 255, 0.15); opacity: 1; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.35rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.social-links a {
    color: #fff;
    font-size: 1.25rem;
    margin-right: 1rem;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.2s, transform 0.2s;
}
.social-links a:hover { background: var(--gold); transform: translateY(-2px); color: #fff; }

/* Mobile bottom nav */
.mobile-bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(245, 240, 230, 0.97);
    backdrop-filter: blur(14px);
    display: flex; justify-content: space-around; align-items: center;
    padding: 0.45rem 0 calc(0.45rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(197, 160, 89, 0.25);
    box-shadow: 0 -4px 24px rgba(27, 48, 91, 0.08);
    z-index: 1000;
}
.mobile-bottom-nav a {
    text-align: center;
    color: var(--navy-light);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    transition: color 0.2s, background 0.2s;
    min-width: 56px;
}
.mobile-bottom-nav a:hover,
.mobile-bottom-nav a:focus { color: var(--gold-dark); }
.mobile-bottom-nav a i {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 2px;
}
.mobile-bottom-nav a:nth-child(3) i { color: var(--navy); }
.mobile-bottom-nav a:nth-child(4) i { color: #25d366; }

@media (max-width: 991px) {
    .brand-logo-img { height: 54px; max-width: 54px; }
    .brand-name { font-size: 1.1rem; }
    .brand-tagline { font-size: 0.6rem; letter-spacing: 0.4px; }
    .brand-logo-text { display: none; }
    .hero-logo-wrap { padding: 10px 16px; }
    .footer-logo-img { max-height: 110px; max-width: 200px; }
    .location-beach-bg { background-attachment: scroll; transform: none; }
    .location-map-frame { height: 300px; }
    body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
}

/* Booking request UI */
.booking-widget { border: 1px solid rgba(197, 160, 89, 0.25); box-shadow: var(--shadow-gold); }
.book-quick-bar { border: 1px solid rgba(197, 160, 89, 0.2); }
.book-confirm-card { border: 1px solid rgba(197, 160, 89, 0.25); }
.book-confirm-icon { font-size: 3.5rem; color: var(--gold); }
.book-confirm-details {
    max-width: 360px;
    background: var(--cream);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
}
.book-confirm-details p { margin-bottom: 0.5rem; color: var(--navy-dark); }

/* Property details */
.property-gallery { border-radius: var(--radius); overflow: hidden; height: 400px; }
.booking-widget { position: sticky; top: 100px; }
.sticky-book-btn {
    position: fixed; bottom: 70px; left: 50%; transform: translateX(-50%);
    z-index: 999; display: none;
}
@media (max-width: 991px) { .sticky-book-btn { display: block; } .booking-widget { position: static; } }

/* Admin/Vendor panels */
.admin-sidebar, .vendor-sidebar {
    background: var(--ocean-dark); min-height: 100vh; padding: 1.5rem 0;
}
.admin-sidebar a, .vendor-sidebar a {
    display: block; color: rgba(255,255,255,0.8); padding: 0.75rem 1.5rem;
    text-decoration: none; transition: background 0.2s;
}
.admin-sidebar a:hover, .vendor-sidebar a:hover, .admin-sidebar a.active, .vendor-sidebar a.active {
    background: rgba(255,255,255,0.1); color: #fff;
}
.stat-card { padding: 1.5rem; text-align: center; }
.stat-card h3 { font-size: 2rem; color: var(--ocean); margin: 0; }
.stat-card p { color: #666; margin: 0; }

/* Forms */
.form-control, .form-select { border-radius: 10px; border: 1px solid #dee2e6; padding: 0.6rem 1rem; }
.form-control:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 0.2rem rgba(197, 160, 89, 0.2); }

/* Filter sidebar */
.filter-panel { padding: 1.5rem; }

/* Auth pages */
.auth-container { min-height: 70vh; display: flex; align-items: center; justify-content: center; }
.auth-card { max-width: 450px; width: 100%; padding: 2rem; }

/* Hero headline */
.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #fff;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* Trust strip */
.trust-strip {
    background: var(--navy);
    color: #fff;
    padding: 1.25rem 0;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
}
.trust-item i { font-size: 1.4rem; color: var(--gold); }

/* Stay type cards */
.stay-type-card .stay-type-icon {
    width: 64px; height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}
.stay-type-card h3 { font-size: 1.15rem; color: var(--navy); }

/* Availability badges */
.availability-badge {
    position: absolute;
    top: 12px; left: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    z-index: 2;
}
.availability-vacant { background: #198754; color: #fff; }
.availability-booked { background: #dc3545; color: #fff; }

.availability-status {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    border: 1px solid rgba(197, 160, 89, 0.25);
}
.availability-status.availability-checking { background: #f8f9fa; color: var(--navy); }
.availability-status.availability-vacant { background: #d1e7dd; color: #0f5132; border-color: #badbcc; }
.availability-status.availability-booked { background: #f8d7da; color: #842029; border-color: #f5c2c7; }

#heroAvailabilityHint.availability-vacant,
#heroAvailabilityHint.availability-booked {
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1050;
    width: 60px; height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-float-label {
    position: absolute;
    right: 68px;
    background: #25D366;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-float-label { opacity: 1; }

.btn-whatsapp-nav {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    border: none;
}
.btn-whatsapp-nav:hover { color: #fff; background: #1ebe57; }

.faq-card h3 { color: var(--navy); }
.seo-content-section { background: linear-gradient(180deg, transparent, rgba(245,240,230,0.5)); }

.hero-search .availability-status {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}
.hero-search .availability-status.availability-vacant { background: rgba(25,135,84,0.9); }
.hero-search .availability-status.availability-booked { background: rgba(220,53,69,0.9); }
.hero-search .availability-status.availability-checking { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); }

@media (min-width: 992px) {
    .whatsapp-float { bottom: 24px; }
}
