:root {
    --primary-color: #2D7D6F; /* Warm Teal */
    --primary-hover: #235f54;
    --secondary-color: #E8C87A; /* Sandy Gold */
    --secondary-hover: #d4b05e;
    --text-dark: #4A3728; /* Driftwood */
    --text-light: #7a6858;
    --bg-white: #fdfaf4;
    --bg-light: #F5EFE0; /* Warm Cream */

    /* Glassmorphism */
    --glass-bg: rgba(245, 239, 224, 0.75);
    --glass-border: rgba(232, 200, 122, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(45, 125, 111, 0.08);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-pill: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

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

.section {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1, h2 {
    font-family: 'Lora', Georgia, serif;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: transform 0.3s var(--bounce), box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(45, 125, 111, 0.35);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(45, 125, 111, 0.22);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-full {
    width: 100%;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    padding: 2rem;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(245, 239, 224, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(245, 239, 224, 0.97);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn-primary) {
    font-weight: 500;
    color: var(--text-dark);
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background-image: linear-gradient(rgba(45, 125, 111, 0.25), rgba(74, 55, 40, 0.5)), url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    text-align: center;
    color: white;
}

/* Header slider — the photos crossfade behind the hero content. The .hero
   background image above stays visible underneath as the fallback for when
   no photos are flagged for the slider (or Supabase is unreachable). */
.hero-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* matches the .hero parallax */
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* One overlay over the whole stack rather than per slide, so the tint
   doesn't double up mid-crossfade. */
.hero-slides::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(45, 125, 111, 0.25), rgba(74, 55, 40, 0.5));
    pointer-events: none;
}

.hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.5rem;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-dot.active {
    background: white;
    transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: none;
    }
}

.hero-content {
    max-width: 1200px;
    padding: 0 2rem;
    /* Positioned so the z-index actually applies — without it the absolutely
       positioned slides would paint over the hero text. */
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: white;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.hero .hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.hero-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.spec-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(232, 200, 122, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(232, 200, 122, 0.4);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 500;
}

.spec-pill svg {
    width: 18px;
    height: 18px;
}

/* Booking Strip */
.booking-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    background: rgba(245, 239, 224, 0.88);
}

.strip-item {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
    min-width: 150px;
}

.strip-item label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.strip-item input,
.strip-item select {
    padding: 0.75rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    background: white;
    font-family: inherit;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

.strip-item input:focus,
.strip-item select:focus {
    border-color: var(--primary-color);
}

.strip-btn {
    align-self: flex-end;
    margin-bottom: 0.15rem;
    padding: 0.85rem 1.5rem;
}

/* Mobile-only hero CTA (replaces the search strip on small screens) */
.hero-cta-mobile {
    display: none;
}

/* About Section */
.about-grid {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-grid .stats {
    justify-content: center;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Lora', Georgia, serif;
    color: var(--text-dark);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

/* Amenities Grid */
.amenities-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.25rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--glass-border);
    font-weight: 500;
    color: var(--text-dark);
}

.amenities-list li svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-color);
    stroke-width: 1.75;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .amenities-list {
        grid-template-columns: 1fr 1fr;
        gap: 0 1.25rem;
    }

    .amenities-list li {
        font-size: 0.9rem;
        gap: 0.55rem;
        padding: 0.7rem 0;
    }

    .amenities-list li svg {
        width: 18px;
        height: 18px;
    }
}

/* Bento Grid Gallery */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 200px;
}

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

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

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

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

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

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(245,239,224,0.95), rgba(245,239,224,0.5));
}

.contact-info,
.contact-form {
    /* Grid items default to a content-based minimum width, which was
       forcing this section wider than the viewport on mobile once the
       grid collapsed to a single column. */
    min-width: 0;
}

.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-detail .icon {
    flex-shrink: 0;
    display: inline-flex;
}

.contact-detail .icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-color);
}

.contact-detail a {
    word-break: break-all;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group label .optional {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.85em;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    flex-shrink: 0;
    cursor: pointer;
}

.form-check label {
    margin: 0;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.5);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 4px rgba(45, 125, 111, 0.12);
}

/* Form Actions */
.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-cta {
    padding: 1rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Secondary path: still WhatsApp, just not competing with the main CTA. */
.form-actions-alt {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.link-whatsapp {
    font: inherit;
    font-weight: 700;
    color: #128C7E;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: rgba(18, 140, 126, 0.35);
    text-underline-offset: 3px;
    transition: var(--transition);
}

.link-whatsapp:hover {
    color: #0e6f63;
    text-decoration-color: currentColor;
}

.link-whatsapp:disabled {
    opacity: 0.6;
    cursor: default;
}

/* Footer */
footer {
    background-color: #1A4D44;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 0.5rem;
}

/* The logo is a transparent PNG whose cyan and orange read fine straight on
   the dark green — no white plate needed behind it. */
.footer-logo {
    height: 52px;
    margin-bottom: 0.75rem;
}

/* The footer sits on dark green, so the warm --text-light used elsewhere
   nearly disappears here; these are tinted off the background instead. */
.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
}

.footer-admin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-pill);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.footer-admin-link:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.footer-admin-link svg {
    width: 14px;
    height: 14px;
}

/* Once the row wraps there's no left and right to align to, so centre it. */
@media (max-width: 768px) {
    .footer-content {
        justify-content: center;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        text-align: center;
        gap: 1rem;
    }
}

/* Lightbox */
.lightbox {
    display: flex;
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
}

#lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    z-index: 3001;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(5px);
    z-index: 3001;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        padding: 2rem;
    }

    /* Form first, then the "Request Availability" intro/contact
       details/platform links below it -- so guests hit the fields
       right away instead of scrolling past a wall of text first. */
    .contact-form {
        order: 1;
    }

    .contact-info {
        order: 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(245, 239, 224, 0.97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero,
    .hero-slide {
        background-attachment: scroll;
    }

    .hero-specs {
        margin-bottom: 2rem;
    }

    .booking-strip {
        display: none;
    }

    .hero-cta-mobile {
        display: inline-block;
        width: 100%;
        max-width: 340px;
        margin: 1rem auto 0;
        padding: 1rem 1.5rem;
    }

    .bento-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .bento-grid::-webkit-scrollbar {
        height: 6px;
    }

    .bento-grid::-webkit-scrollbar-track {
        background: var(--glass-border);
        border-radius: var(--radius-pill);
    }

    .bento-grid::-webkit-scrollbar-thumb {
        background-color: var(--primary-color);
        border-radius: var(--radius-pill);
    }
    
    .gallery-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
        height: 300px;
    }

    .contact-detail {
        font-size: 0.9rem;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 0.5rem 1rem;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1.5rem;
    }
}

/* ── Testimonials ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stars {
    color: var(--secondary-color);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-light);
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.author-meta {
    font-size: 0.8rem;
    color: var(--text-light);
}

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

/* ── Location Section ── */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
}

.location-icon {
    flex-shrink: 0;
    margin-top: 0.15rem;
    display: inline-flex;
}

.location-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-color);
    stroke-width: 1.75;
}

.location-detail-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    font-family: inherit;
}

.location-detail-item p {
    font-size: 0.9rem;
    margin: 0;
}

.location-map iframe {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
}

.location-map-link {
    margin-top: 1rem;
}

/* ── FAQ Section ── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--glass-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding-bottom 0.35s ease;
    padding-bottom: 0;
}

.faq-answer.open {
    max-height: 1000px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    margin: 0;
    font-size: 0.95rem;
}

/* ── Sticky WhatsApp Button ── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform 0.3s var(--bounce), box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

.whatsapp-float.visible {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
}

.whatsapp-float:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

/* ── Night Count Display ── */
.strip-nights {
    text-align: center;
    min-width: 70px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.strip-nights label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.strip-nights span {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
    padding: 0.6rem 0;
}

/* ── Form Error Banner ── */
.form-error-banner {
    background: rgba(185, 28, 28, 0.08);
    border: 1px solid rgba(185, 28, 28, 0.25);
    border-radius: var(--radius-sm);
    color: #b91c1c;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
}

.form-success-banner {
    background: rgba(45, 125, 111, 0.1);
    border: 1px solid rgba(45, 125, 111, 0.3);
    border-radius: var(--radius-sm);
    color: var(--primary-color);
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
}

/* Opaque on purpose: this notice also appears in the hero strip, where a
   translucent tint sat straight on the hero photo and washed the text out. */
.availability-note {
    background: #FFF7ED;
    border: 1px solid rgba(154, 52, 18, 0.25);
    border-left: 4px solid #C2410C;
    border-radius: var(--radius-sm);
    color: #7C2D12;
    font-size: 0.875rem;
    line-height: 1.55;
    padding: 0.85rem 1rem;
    margin-top: 0.75rem;
    box-shadow: 0 4px 14px rgba(74, 55, 40, 0.12);
}

.availability-suggest-btn {
    display: inline-block;
    margin: 0.15rem 0 0.15rem 0.5rem;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
    border: 1px solid #9A3412;
    background: #9A3412;
    color: #FFF7ED;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.availability-suggest-btn:hover {
    background: #7C2D12;
    border-color: #7C2D12;
    color: white;
}

/* Sticky mobile availability bar */
.sticky-availability-bar {
    display: none;
}

@media (max-width: 767px) {
    .sticky-availability-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        padding: 0.85rem 1rem;
        background: var(--bg-white);
        border-top: 1px solid var(--glass-border);
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .sticky-availability-bar.visible {
        transform: translateY(0);
    }

    .sticky-availability-text {
        font-size: 0.8rem;
        color: var(--text-dark);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sticky-availability-bar .btn-primary {
        flex-shrink: 0;
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Gallery carousel overlays (mobile only, matches the .bento-grid
   horizontal scroll-snap layout in the mobile media query below) */
.gallery-carousel-wrap {
    position: relative;
}

.gallery-counter,
.gallery-dots {
    display: none;
}

@media (max-width: 767px) {
    .gallery-counter {
        display: block;
        position: absolute;
        right: 1.5rem;
        bottom: 1.5rem;
        background: rgba(0, 0, 0, 0.55);
        color: white;
        font-size: 0.75rem;
        font-weight: 600;
        padding: 0.25rem 0.7rem;
        border-radius: var(--radius-pill);
        pointer-events: none;
        z-index: 5;
    }

    .gallery-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.4rem;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 1.5rem;
        z-index: 5;
    }

    .gallery-dots button {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        border: none;
        background: rgba(255, 255, 255, 0.65);
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
        padding: 0;
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .gallery-dots button.active {
        background: white;
        transform: scale(1.35);
    }
}

/* ── Platform Links ── */
.platform-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-platform {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border: 1.5px solid var(--glass-border);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    background: rgba(255,255,255,0.4);
}

.btn-platform svg {
    width: 18px;
    height: 18px;
}

.btn-platform:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ── Responsive — new sections ── */
@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        /* Sits above the sticky availability bar (~65px tall) instead of
           overlapping its "Check Availability" button. */
        bottom: 5.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
}
