:root {
    --pure-white: #FFFFFF;
    --soft-bg: #FAF9F5;
    --primary-green: #3E5C45;
    --secondary-green: #4F6F52;
    --accent-green: #6B8A64;
    --warm-brown: #5c3d2e;
    --cream-beige: #f5f1e8;
    --soft-gold: #c5a059;
    --terracotta: #853d25;
    --deep-charcoal: #2C2C2C;
    --overlay-dark: rgba(0, 0, 0, 0.35);

    /* GLOBAL NAVBAR HEIGHTS */
    --nav-height: 88px;
    --nav-height-tablet: 90px;
    --nav-height-mobile: 80px;
    --nav-height-scrolled: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&display=swap');

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

body {
    background-color: var(--pure-white);
    color: var(--deep-charcoal);
    line-height: 1.6;
}

/* SLIM MODERN NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: var(--pure-white);
    height: var(--nav-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2500; /* Highest priority */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.navbar.scrolled {
    height: var(--nav-height-scrolled);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 20px;
    z-index: 2501;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 60px; /* Controlled height for desktop */
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
    transition: all 0.4s ease;
}

.navbar.scrolled .logo img {
    height: 48px;
}


.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    list-style: none;
    margin-left: 30px;
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: var(--deep-charcoal);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary-green);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Make "Contact" button-like */
.nav-links li:last-child a {
    background-color: var(--primary-green);
    color: var(--pure-white);
    padding: 10px 24px;
    border-radius: 30px;
    border: 2px solid var(--primary-green);
    transition: all 0.3s ease;
}

.nav-links li:last-child a::after {
    display: none;
}

.nav-links li:last-child a:hover {
    background-color: transparent;
    color: var(--primary-green);
}

/* Add extra margin before the contact button to separate it from icons */
.nav-links li:last-child {
    margin-left: 45px;
}

/* Social and Location Icons */
.nav-icons-group {
    display: inline-flex;
    flex-direction: row !important;
    align-items: center;
    gap: 16px;
    margin-left: 2.2vw;
}

.nav-icon-link {
    font-size: 1.8rem;
    color: var(--deep-charcoal);
    transition: color 0.3s ease, transform 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-links .nav-icon-link::after {
    display: none;
}

.nav-links .nav-icon-link:hover {
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Responsive spacing for laptops to accommodate extra links */
@media (max-width: 1350px) {
    .nav-links li {
        margin-left: 16px;
    }

    .nav-icons-group {
        margin-left: 2vw;
        gap: 14px;
    }

    .nav-links li:last-child {
        margin-left: 25px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .nav-icon-link {
        font-size: 1.65rem;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 2505; /* Above navbar content */
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 3px;
    transition: all 0.3s ease;
}



.hero-section {
    width: 100%;
    height: calc(100vh - var(--nav-height));
    margin-top: var(--nav-height);
    overflow: hidden;
    position: relative;
    background: var(--cream-beige) url('assets/poster-image.png') center/cover no-repeat !important;
    /* Dark green fallback + Poster image */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}


/* Main sharp foreground video */
.hero-video-main {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the horizontal width naturally on laptop */
    object-position: center center;
    /* Balanced centering */
    z-index: 2;
    background: transparent !important;
    display: block;
}



@media (max-width: 1100px) {
    .hero-section {
        height: auto;
        aspect-ratio: 16 / 9;
        /* Adaptive height for tablets to minimize whitespace */
        margin-top: var(--nav-height-tablet);
    }
}

/* INTRO SECTION BELOW VIDEO */
.main-content {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 100;
    margin-top: -65px;
    /* Refined overlap for laptop and Nest Hub Max visibility */
    /* Overlap for upcoming sections */
}

.intro-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: var(--pure-white);
    padding: 50px 5% 60px;
    /* Optimized top padding for balanced visibility */
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

.intro-subtext {
    font-size: clamp(0.95rem, 0.7vw + 0.8rem, 1.25rem);
    letter-spacing: 5px;
    color: var(--secondary-green);
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    transform: translateY(-20px);
    /* Lifted slightly for instant visibility */
}

.intro-title {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    color: var(--warm-brown);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intro-distance {
    max-width: 720px;
    margin: 18px auto 0;
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.65;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

/* EXPLORE AAMRAI GALLERY */
.explore-section {
    padding: 100px 0;
    background-color: var(--pure-white);
    scroll-margin-top: var(--nav-height);
    position: relative;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 5%;
}

.gallery-subtext {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--secondary-green);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--warm-brown);
    font-weight: 600;
}

.explore-container {
    width: 100%;
    position: relative;
}

.explore-track {
    display: flex;
    gap: 40px;
    /* Improved spacing rhythm */
    padding: 30px 5%;
    /* Improved spacing */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.explore-track::-webkit-scrollbar {
    display: none;
}

.explore-slide {
    flex: 0 0 auto;
    width: calc(62% - 40px);
    /* Optimal width for widescreen balance */
    max-width: 1000px;
    /* Larger max width for premium feel */
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    /* More subtle base shadow */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: grab;
    position: relative;
    /* For overlay */
}

.explore-slide:active {
    cursor: grabbing;
}

.explore-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    /* Pre-scale slightly for better parallax feel */
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Slower, more elegant Apple-like zoom */
}

/* Cinematic overlay */
.explore-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 35%);
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    z-index: 2;
}

.explore-slide:hover {
    transform: scale(1.02);
    /* Elegant overall scale */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    /* Softer, wider cinematic shadow */
}

.explore-slide:hover img {
    transform: scale(1.06);
    /* Soft cinematic zoom */
}

.explore-slide:hover .explore-overlay {
    opacity: 1;
    /* Cinematic reveal effect */
}

@media (max-width: 1024px) {
    .explore-slide {
        width: calc(80% - 20px);
    }

    .explore-track {
        gap: 20px;
        padding: 20px 5%;
    }
}

@media (max-width: 768px) {
    .explore-slide {
        width: calc(88% - 15px);
        aspect-ratio: 4 / 3;
        border-radius: 16px;
    }

    .explore-track {
        gap: 15px;
        padding: 15px 5%;
    }
}

/* About Hero */
.about-hero {
    height: 40vh;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--nav-height);
}

.about-hero h1 {
    color: var(--pure-white);
    font-size: 3rem;
    letter-spacing: 2px;
}

/* About Content Grid */
.about-container {
    padding: 80px 10%;
    background-color: var(--pure-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--deep-charcoal);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--soft-bg);
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    border: 8px solid var(--accent-green);
}

/* CTA Button - Premium Green */
.cta-terracotta {
    display: inline-block;
    padding: 12px 36px;
    background-color: var(--primary-green);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-terracotta:hover {
    background-color: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(62, 92, 69, 0.3);
}

/* Vision & Mission Section */
.vision-mission {
    display: flex;
    gap: 30px;
    padding: 60px 10%;
    background-color: var(--soft-bg);
    /* Warm Off-White */
}

.card {
    flex: 1;
    background: var(--pure-white);
    padding: 40px;
    border-radius: 10px;
    border-bottom: 5px solid var(--accent-green);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card h3 {
    color: var(--terracotta);
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 1100px) {
    .navbar {
        height: var(--nav-height-tablet);
    }

    .logo img {
        height: 60px; /* Constrain tablet logo */
        max-width: 240px;
    }


    .hero-section {
        height: auto;
        aspect-ratio: 16 / 9;
        /* Adaptive height based on video content */
        margin-top: var(--nav-height-tablet);
        background: #000;
    }

    .main-content {
        margin-top: 0;
        /* Disable overlap for tablets */
    }

    .gallery-section {
        padding: 60px 0;
    }

    .slide {
        min-width: calc(75% - 15px);
        /* Larger peek effect on tablets */
    }

    .intro-container {
        padding: 80px 5%;
        border-radius: 0;
        /* Clean vertical stack */
        box-shadow: none;
    }

    .vision-mission {
        flex-direction: column;
    }

    .about-hero h1 {
        font-size: 2rem;
    }



    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--pure-white);
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        align-items: center;
    }

    .nav-links a {
        color: var(--deep-charcoal);
        text-shadow: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    .nav-icons-group {
        margin: 10px 0 !important;
        justify-content: center;
        gap: 25px;
    }

    .nav-links li:last-child {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: var(--nav-height-mobile);
    }

    .logo img {
        height: 52px;
        max-width: 210px;
    }

    .hero-section {
        height: auto;
        aspect-ratio: 16 / 9;
        margin-top: var(--nav-height-mobile);
        background: #FFFFFF !important;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: var(--nav-height-mobile);
    }

    .logo img {
        height: 52px; /* Fixed height for mobile to prevent overlap */
        max-width: 200px;
    }


    .hero-section {
        height: auto;
        aspect-ratio: 16 / 9;
        margin-top: var(--nav-height-mobile);
        position: relative;
        background: #FFFFFF !important;
    }

    .hero-video-main {
        object-position: left center;
    }

    .main-content {
        margin-top: 0;
        /* Disable overlap for mobile */
    }

    .intro-container {
        padding: 60px 5%;
        border-radius: 0;
        box-shadow: none;
    }

    .slide {
        min-width: 100%;
    }
}

/* FOOTER SECTION */
.footer {
    background-color: var(--primary-green);
    color: var(--pure-white);
    padding: 80px 5% 40px;
    margin-top: 100px;
    /* Space between website and footer */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    height: 70px;
    width: auto;
    max-width: 200px;
    margin-bottom: 24px;
    object-fit: contain;
    display: block;
    /* White pill background so logo is readable on dark green footer */
    background: rgba(255, 255, 255, 0.92);
    padding: 8px 16px;
    border-radius: 10px;
}

.footer-about {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 25px;
}

.footer-social a {
    color: var(--pure-white);
    font-size: 1.2rem;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-green);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--accent-green);
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 15px;
}

.footer-links a,
.footer-contact a {
    color: var(--pure-white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
    color: var(--accent-green);
    padding-left: 5px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-green);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer {
        padding: 60px 5% 30px;
        margin-top: 60px;
    }
}

/* NEARBY PLACES MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1100px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 5px solid var(--primary-green);
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--accent-green);
    transform: rotate(90deg);
}

/* Landscape Mode Fix */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: calc(100vh - 60px);
        margin-top: 60px;
    }
}

/* CONTACT MODAL */
.contact-modal-content {
    background: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 16px;
    max-width: 500px;
}

.contact-modal-content h2 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.contact-modal-content p {
    color: #555;
    margin-bottom: 25px;
}

.contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-numbers a {
    font-size: 1.2rem;
    color: var(--deep-charcoal);
    text-decoration: none;
    font-weight: 600;
    padding: 10px;
    border: 2px solid var(--soft-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-numbers a i {
    color: var(--primary-green);
    margin-right: 10px;
}

.contact-numbers a:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-wa-book {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-wa-book:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* ==============================
   AMENITIES SECTION
   ============================== */
.amenities-section {
    background: linear-gradient(to bottom, #f2f7f0, #eaf3e6);
    padding: 90px 5%;
    scroll-margin-top: var(--nav-height);
}

.amenities-section .section-header,
.experiences-section .section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-green);
    border-radius: 2px;
    margin: 12px auto 0;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--deep-charcoal);
    opacity: 0.6;
    margin-top: 6px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-card {
    background: var(--pure-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(62, 92, 69, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-align: center;
    cursor: default;
}

.amenity-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.amenity-card h3 {
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--deep-charcoal);
    padding: 16px 12px;
    margin: 0;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(62, 92, 69, 0.18);
}

.amenity-card:hover img {
    transform: scale(1.06);
}

/* ==============================
   EXPERIENCES SECTION
   ============================== */
.experiences-section {
    background: linear-gradient(to bottom, #eaf3e6, #f7faf5);
    padding: 90px 5%;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-card {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
}

.experience-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    z-index: 1;
    transition: background 0.35s ease;
}

.experience-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.experience-card:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 20px;
    z-index: 2;
    color: var(--pure-white);
}

.card-overlay h3 {
    margin: 0 0 6px;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.card-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.88;
    font-family: 'Poppins', sans-serif;
}

/* ==============================
   RESPONSIVE - AMENITIES & EXPERIENCES
   ============================== */
@media (max-width: 1100px) {

    .amenities-grid,
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .amenities-section,
    .experiences-section {
        padding: 60px 4%;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .amenities-grid,
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .amenity-card img {
        height: 200px;
    }

    .experience-card {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .amenity-card img {
        height: 180px;
    }

    .experience-card {
        height: 230px;
    }

    .card-overlay h3 {
        font-size: 1.2rem;
    }
}

/* ═══════════════════════════════════════════════
   NAVBAR BOOK BUTTON
   ═══════════════════════════════════════════════ */
.nav-book-btn {
    background: var(--primary-green) !important;
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: background 0.3s ease, transform 0.3s ease !important;
}

.nav-book-btn:hover {
    background: var(--secondary-green) !important;
    transform: translateY(-2px) !important;
}

.nav-active {
    color: var(--primary-green) !important;
    font-weight: 600 !important;
}

/* ═══════════════════════════════════════════════
   SHARED HOMEPAGE SECTION HEADER
   ═══════════════════════════════════════════════ */
.hp-section-head {
    text-align: center;
    margin-bottom: 36px;
}

.hp-section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--deep-charcoal);
    margin-bottom: 0;
}

.hp-section-head.light h2 {
    color: #fff;
}

.hp-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 8px;
}

.hp-section-head.light .hp-label {
    color: rgba(255, 255, 255, 0.7);
}

.hp-section-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
}

.hp-view-all {
    text-align: center;
    margin-top: 32px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-green);
    color: #fff;
    padding: 11px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 14px rgba(62, 92, 69, 0.25);
}

.btn-view-all:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

.btn-view-all.outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.btn-view-all.outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

/* ═══════════════════════════════════════════════
   COMPACT AMENITIES — chip cards
   ═══════════════════════════════════════════════ */
.amenities-section {
    background: #f7faf5;
    padding: 60px 5%;
}

.amenities-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    max-width: 1220px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .amenities-grid-compact {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
}

.amenity-chip {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(62, 92, 69, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.chip-img {
    width: 100%;
    height: 148px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .chip-img {
        height: 220px;
    }
}

.chip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.amenity-chip:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(62, 92, 69, 0.15);
}

.amenity-chip:hover .chip-img img {
    transform: scale(1.07);
}

.amenity-chip span {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--deep-charcoal);
    padding: 10px 6px;
}

.amenity-chip span i {
    color: var(--primary-green);
    margin-right: 4px;
    font-size: 0.78rem;
}

/* ═══════════════════════════════════════════════
   COMPACT EXPERIENCES — overlay chips
   ═══════════════════════════════════════════════ */
.experiences-section {
    background: var(--primary-green);
    padding: 60px 5%;
}

.experiences-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1220px;
    margin: 0 auto;
}

.exp-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    height: auto;
}

.exp-img {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    position: relative;
    background: var(--soft-bg);
}

.exp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
}

.exp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.exp-card:hover .exp-img img {
    transform: scale(1.07);
}

.exp-card span {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--deep-charcoal);
    padding: 10px 6px;
    line-height: 1.35;
    flex: 0 0 auto;
}

.exp-card span i {
    color: var(--primary-green);
    margin-right: 4px;
    font-size: 0.78rem;
}

/* ═══════════════════════════════════════════════
   STAY PREVIEW SECTION
   ═══════════════════════════════════════════════ */
.stay-preview-section {
    background: var(--soft-bg);
    padding: 60px 5%;
}

.stay-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.stay-preview-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.stay-preview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(62, 92, 69, 0.14);
}

.sp-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.stay-preview-card:hover .sp-img-wrap img {
    transform: scale(1.05);
}

.sp-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-green);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.sp-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.sp-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-green);
    margin: 0;
}

.sp-body p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

.sp-price {
    font-size: 0.9rem;
    color: var(--deep-charcoal);
    background: #f0f7ee;
    padding: 8px 14px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-green);
}

.sp-price strong {
    color: var(--primary-green);
}

.sp-price small {
    color: #999;
    font-size: 0.78rem;
}

.sp-actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.btn-sp-outline {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-sp-outline:hover {
    background: var(--primary-green);
    color: #fff;
}

.btn-sp-book {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-sp-book:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   TRADITIONAL FOOD EXPERIENCE SECTION
   ═══════════════════════════════════════════════ */
.tfe-section {
    position: relative;
    background: linear-gradient(168deg, #f7faf5 0%, #f0ece3 40%, #eef4eb 100%);
    padding: 90px 5% 80px;
    overflow: hidden;
}

/* Subtle decorative background elements */
.tfe-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.tfe-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.tfe-bg-circle--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 138, 100, 0.35) 0%, transparent 70%);
    top: -100px;
    right: -80px;
}

.tfe-bg-circle--2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 70%);
    bottom: -60px;
    left: -60px;
}

.tfe-container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}

/* ── Section Header ── */
.tfe-header {
    text-align: center;
    margin-bottom: 50px;
}

.tfe-heading-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.tfe-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    color: var(--deep-charcoal);
    line-height: 1.25;
    margin: 0;
}

/* Pure Veg Badge */
.tfe-veg-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(62, 92, 69, 0.08);
    border: 1.5px solid rgba(62, 92, 69, 0.22);
    color: var(--primary-green);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}

.tfe-veg-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary-green);
    border-radius: 2px;
    position: relative;
}

.tfe-veg-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-green);
}

.tfe-desc {
    max-width: 680px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.75;
}

/* ── Food Cards Grid — uniform equal-height ── */
.tfe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* All cards are equal — no asymmetric spans */
.tfe-card {
    background: var(--pure-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(62, 92, 69, 0.09);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    cursor: default;
}

.tfe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 44px rgba(62, 92, 69, 0.17);
}

/* Card Image — aspect-ratio container with contain fit */
.tfe-card__img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    /* Warm earthy background behind images with differing aspect ratios */
    background: linear-gradient(145deg, #f5f1e8 0%, #eae5da 50%, #f0ece3 100%);
}

.tfe-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    /* Prevent layout shift while loading */
    background: transparent;
}

.tfe-card:hover .tfe-card__img img {
    transform: scale(1.05);
}

/* Veg Indicator on card */
.tfe-card__veg-indicator {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.tfe-card__veg-indicator .tfe-veg-dot {
    width: 12px;
    height: 12px;
}

.tfe-card__veg-indicator .tfe-veg-dot::after {
    width: 6px;
    height: 6px;
}

/* Card Body */
.tfe-card__body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.tfe-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--warm-brown);
    margin: 0;
    line-height: 1.3;
}

.tfe-card__caption {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.55;
    margin: 0;
}

/* ── Package Note ── */
.tfe-pkg-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cream-beige);
    border: 1px solid var(--soft-gold);
    color: var(--warm-brown);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 28px;
    text-align: center;
}

.tfe-pkg-note i {
    color: var(--soft-gold);
    flex-shrink: 0;
}

/* Center the package note */
.tfe-container>.tfe-pkg-note {
    display: flex;
    justify-content: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Scroll Reveal Animation ── */
@keyframes tfeFadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
}

[data-reveal].revealed {
    animation: tfeFadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Staggered delay for cards */
.tfe-grid [data-reveal]:nth-child(1).revealed {
    animation-delay: 0s;
}

.tfe-grid [data-reveal]:nth-child(2).revealed {
    animation-delay: 0.1s;
}

.tfe-grid [data-reveal]:nth-child(3).revealed {
    animation-delay: 0.2s;
}

.tfe-grid [data-reveal]:nth-child(4).revealed {
    animation-delay: 0.3s;
}

.tfe-grid [data-reveal]:nth-child(5).revealed {
    animation-delay: 0.4s;
}

/* ═══════════════════════════════════════════════
   DARK FOOTER
   ═══════════════════════════════════════════════ */
.footer-dark {
    background: #111111;
    color: #ccc;
    padding: 70px 5% 0;
}

.footer-dark-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fd-col h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
}

.fd-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--accent-green);
    margin-top: 8px;
    border-radius: 2px;
}

.fd-logo {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.fd-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 18px;
}

.fd-social {
    display: flex;
    gap: 12px;
}

.fd-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fd-social a:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: #fff;
    transform: translateY(-2px);
}

.fd-col ul {
    list-style: none;
}

.fd-col ul li {
    margin-bottom: 12px;
}

.fd-col ul li a,
.fd-col ul li {
    font-size: 0.88rem;
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    cursor: pointer;
}

.fd-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.fd-contact li i {
    color: var(--accent-green);
    width: 18px;
    margin-right: 8px;
}

.fd-book p {
    font-size: 0.88rem;
    opacity: 0.7;
    line-height: 1.65;
    margin-bottom: 18px;
}

.fd-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #25D366;
    color: #fff;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.fd-book-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.fd-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.fd-bottom p {
    font-size: 0.82rem;
    color: #666;
}

.fd-made {
    font-size: 0.78rem !important;
    color: #555 !important;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — new sections
   ═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .amenities-grid-compact {
        grid-template-columns: repeat(3, 1fr);
    }

    /* TFE: 2-column grid for tablets */
    .tfe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Last card spans full width for visual balance */
    .tfe-grid .tfe-card:nth-child(5) {
        grid-column: 1 / -1;
    }

    .tfe-grid .tfe-card:nth-child(5) .tfe-card__img {
        aspect-ratio: 16 / 9;
    }

    .experiences-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-dark-container {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {

    .amenities-section,
    .experiences-section,
    .stay-preview-section {
        padding: 50px 4%;
    }

    .tfe-section {
        padding: 60px 4% 50px;
    }

    .tfe-header {
        margin-bottom: 36px;
    }

    .tfe-heading-wrap {
        flex-direction: column;
        gap: 10px;
    }

    .tfe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Last card spans full width */
    .tfe-grid .tfe-card:nth-child(5) {
        grid-column: 1 / -1;
    }

    .tfe-grid .tfe-card:nth-child(5) .tfe-card__img {
        aspect-ratio: 16 / 9;
    }

    .tfe-pkg-note {
        font-size: 0.82rem;
        padding: 10px 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .amenities-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .experiences-grid-compact {
        grid-template-columns: 1fr;
    }

    .stay-preview-grid {
        grid-template-columns: 1fr;
    }

    .footer-dark-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fd-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sp-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .amenities-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .chip-img {
        height: 90px;
    }

    .experiences-grid-compact {
        grid-template-columns: 1fr;
    }

    .hp-section-head h2 {
        font-size: 1.7rem;
    }

    /* TFE: Single column stack on mobile */
    .tfe-section {
        padding: 50px 4% 40px;
    }

    .tfe-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tfe-grid .tfe-card:nth-child(5) {
        grid-column: auto;
    }

    .tfe-grid .tfe-card__img,
    .tfe-grid .tfe-card:nth-child(5) .tfe-card__img {
        aspect-ratio: 4 / 3;
    }

    .tfe-card__body {
        padding: 14px 16px 18px;
    }

    .tfe-card__title {
        font-size: 1.1rem;
    }

    .tfe-desc {
        font-size: 0.9rem;
    }

    .tfe-bg-circle--1 {
        width: 200px;
        height: 200px;
    }

    .tfe-bg-circle--2 {
        width: 180px;
        height: 180px;
    }
}

/* ═══════════════════════════════════════════════
   PHOTO SIZE UPGRADES
   ═══════════════════════════════════════════════ */

/* Taller experience overlay cards */
.exp-card {
    height: auto;
}

/* Mobile/Tablet: stable stacked cards, immersive images */
@media (max-width: 1024px) {
    .exp-img img {
        object-position: center;
    }

    .exp-card span {
        padding: 12px 16px;
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .exp-img {
        aspect-ratio: 4 / 3;
    }

    .exp-card span {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
}

/* Food card image heights managed in .tfe-card__img img */

/* Bigger stay preview image */
.sp-img-wrap {
    height: 280px;
}

/* ═══════════════════════════════════════════════
   HOMEPAGE MAP SECTION
   ═══════════════════════════════════════════════ */
.hp-map-section {
    background: var(--soft-bg);
    padding: 0;
    overflow: hidden;
}

.hp-map-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    min-height: 440px;
    max-width: 100%;
}

.hp-map-info {
    background: #fff;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.hp-map-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: var(--deep-charcoal);
    margin-bottom: 4px;
}

.hp-map-info>p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.7;
}

.hp-map-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hp-map-details li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.hp-map-details li i {
    color: var(--primary-green);
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}

.hp-map-details li a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

.hp-map-details li a:hover {
    text-decoration: underline;
}

.hp-map-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-green);
    color: #fff;
    padding: 11px 24px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 14px rgba(62, 92, 69, 0.2);
}

.btn-directions:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

.hp-map-embed {
    width: 100%;
    min-height: 440px;
    overflow: hidden;
    position: relative;
}

.hp-map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Map section responsive */
@media (max-width: 900px) {
    .hp-map-inner {
        grid-template-columns: 1fr;
    }

    .hp-map-embed {
        min-height: 320px;
        position: relative;
    }

    .hp-map-embed iframe {
        position: relative;
        height: 320px;
    }

    .hp-map-info {
        padding: 40px 5%;
    }
}

@media (max-width: 600px) {
    .chip-img {
        height: 110px;
    }

    .sp-img-wrap {
        height: 200px;
    }

    .hp-map-embed iframe {
        height: 260px;
    }

    /* Aspect ratio handles sizing, no fixed heights needed */
}

/* ═══════════════════════════════════════════════
   GOOGLE REVIEWS — cards below map (homepage)
   ═══════════════════════════════════════════════ */
.google-reviews-section {
    background: var(--soft-bg);
    padding: 72px 0 80px;
    scroll-margin-top: var(--nav-height);
}

.google-reviews-section .hp-section-head {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 5%;
}

.google-reviews-section .hp-section-desc {
    max-width: 560px;
    margin: 12px auto 0;
    font-size: 0.95rem;
    color: #777;
    line-height: 1.65;
}

.reviews-cards-shell {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 40px;
}

/* Hide scrollbars for the marquee container */
.reviews-marquee-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.reviews-marquee-wrapper::-webkit-scrollbar {
    display: none;
}

.reviews-cards-track {
    display: flex;
    gap: 22px;
    padding: 10px 5%;
    /* Add padding to track instead of shell to keep gap consistent */
    width: max-content;
    will-change: transform;
}

/* Auto-scroll only on tablet and desktop */
@media (min-width: 769px) {
    .reviews-cards-track {
        animation: marquee 45s linear infinite;
        padding: 10px 0;
    }

    .reviews-cards-track:hover {
        animation-play-state: paused;
    }

    .reviews-marquee-wrapper {
        overflow-x: hidden;
        /* Prevent manual scroll interference on desktop */
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Custom progress line indicator */
.reviews-progress-wrap {
    width: 140px;
    height: 3px;
    background: rgba(62, 92, 69, 0.08);
    margin: 25px auto 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.reviews-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 35%;
    background: var(--primary-green);
    border-radius: 10px;
    animation: progress-slide 5s ease-in-out infinite;
}

@keyframes progress-slide {
    0% {
        transform: translateX(-110%);
    }

    50% {
        transform: translateX(180%);
    }

    100% {
        transform: translateX(-110%);
    }
}

.review-card {
    flex: 0 0 340px;
    background: var(--pure-white);
    border-radius: 20px;
    padding: 26px 24px 24px;
    box-shadow: 0 12px 40px rgba(62, 92, 69, 0.08);
    border: 1px solid rgba(62, 92, 69, 0.05);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.35s ease;
    user-select: none;
}

@media (max-width: 480px) {
    .review-card {
        flex: 0 0 290px;
    }
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(62, 92, 69, 0.14);
}

.review-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.review-card-google {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--secondary-green);
}

.review-card-google i {
    color: #4285f4;
    font-size: 1rem;
}

.review-card-stars {
    color: var(--soft-gold);
    font-size: 0.82rem;
    letter-spacing: 2px;
    white-space: nowrap;
}

.review-card-stars i {
    font-size: 0.75rem;
}

.review-card-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #444;
    flex: 1;
}

.review-card-text::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--accent-green);
    opacity: 0.5;
    line-height: 0;
    vertical-align: -0.15em;
    margin-right: 4px;
}

.review-card-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--warm-brown);
    padding-top: 4px;
    border-top: 1px solid var(--cream-beige);
}

.review-card-author span {
    font-weight: 400;
    color: #888;
    font-size: 0.8rem;
}

/* Old nav buttons removed as per marquee requirement */

.reviews-google-cta {
    text-align: center;
    margin-top: 8px;
    padding: 0 5%;
}

.reviews-google-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-green);
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 14px rgba(62, 92, 69, 0.22);
}

.reviews-google-cta a:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .reviews-cards-nav {
        display: none;
    }

    .reviews-cards-track {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .google-reviews-section {
        padding: 52px 0 64px;
    }

    .review-card {
        flex: 0 0 min(300px, 88vw);
        padding: 22px 20px;
    }
}

/* ═══════════════════════════════════════════════
   CENTER LAST ROW CARDS (LAPTOP/DESKTOP ONLY)
   ═══════════════════════════════════════════════ */
@media (min-width: 1101px) {

    .amenities-grid-compact,
    .experiences-grid-compact,
    .tfe-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Amenities & Experiences: 3 columns default on laptops */
    .amenity-chip,
    .exp-card {
        flex: 1 1 280px;
        max-width: calc(33.333% - 16px);
    }

    /* TFE Food Grid: exactly 3 columns always on desktop */
    .tfe-card {
        flex: 1 1 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
    }
}

@media (min-width: 1325px) {

    /* Amenities & Experiences: 4 columns on large desktops 
       (matches the original grid auto-fit behavior) */
    .amenity-chip,
    .exp-card {
        max-width: calc(25% - 18px);
    }
}

/* ═══════════════════════════════════════════════
   INSTAGRAM SHOWCASE SECTION — LUXURY RESORT STYLE
   ═══════════════════════════════════════════════ */
.instagram-showcase {
    padding: 110px 5% 100px;
    background: linear-gradient(180deg, #f7faf5 0%, var(--pure-white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Header */
.insta-header {
    margin-bottom: 60px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.insta-handle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    color: var(--primary-green);
    text-transform: lowercase;
    font-weight: 600;
    margin-bottom: 18px;
    padding: 6px 18px;
    background: rgba(62, 92, 69, 0.06);
    border-radius: 50px;
    border: 1px solid rgba(62, 92, 69, 0.1);
}

.insta-handle i {
    font-size: 1rem;
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insta-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    color: var(--warm-brown);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.insta-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--primary-green));
    margin: 0 auto 20px;
    border-radius: 3px;
}

.insta-header p {
    color: #777;
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Grid */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto 60px;
    padding: 0 2%;
}

/* Reel Card */
.insta-reel-embed {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--pure-white);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.04),
        0 12px 36px rgba(0, 0, 0, 0.04);
    transform: translateZ(0);
    transition:
        transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.insta-reel-embed:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 24px 48px rgba(62, 92, 69, 0.08);
}

/* Category Label Tag */
.insta-reel-label {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-green);
    border: 1px solid rgba(62, 92, 69, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.insta-reel-label i {
    font-size: 0.7rem;
    color: var(--accent-green);
}

.insta-reel-embed:hover .insta-reel-label {
    opacity: 1;
    transform: translateY(0);
}

/* Iframe */
.insta-iframe {
    width: 100%;
    height: 560px;
    border: none;
    display: block;
    transition: opacity 0.4s ease;
}

/* CTA */
.insta-cta-wrap {
    text-align: center;
}

.btn-insta-follow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 42px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 20%, #dc2743 45%, #cc2366 70%, #bc1888 100%);
    color: white;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition:
        transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 8px 24px rgba(220, 39, 67, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-insta-follow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.btn-insta-follow:hover::before {
    left: 100%;
}

.btn-insta-follow i {
    font-size: 1.3rem;
}

.btn-insta-follow:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 36px rgba(220, 39, 67, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
        max-width: 700px;
    }

    .insta-iframe {
        height: 520px;
    }
}

@media (max-width: 600px) {
    .insta-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        gap: 20px;
    }

    .instagram-showcase {
        padding: 80px 5% 70px;
    }

    .insta-iframe {
        height: 500px;
    }

    .insta-reel-label {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════
   PREMIUM CTA BANNER (ABOVE AMENITIES)
   ═══════════════════════════════════════════════ */
.hp-cta-banner {
    padding: 80px 5%;
    background: var(--pure-white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hp-cta-banner p {
    font-size: 1.1rem;
    color: var(--secondary-green);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-premium-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background-color: var(--cream-beige);
    /* Beige base */
    color: var(--warm-brown);
    /* Earthy text */
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(92, 61, 46, 0.12);
    border: 1px solid rgba(92, 61, 46, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-premium-contact i {
    font-size: 1.2rem;
    color: var(--primary-green);
}

.btn-premium-contact:hover {
    background-color: var(--primary-green);
    color: var(--pure-white);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 40px rgba(62, 92, 69, 0.18);
    border-color: var(--primary-green);
}

.btn-premium-contact:hover i {
    color: var(--pure-white);
}

@media (max-width: 768px) {
    .hp-cta-banner {
        padding: 40px 5%;
        /* More compact for mobile */
    }

    .btn-premium-contact {
        padding: 14px 32px;
        font-size: 0.9rem;
    }
}

/* iPhone XR / Narrow Screens Optimization */
@media (max-width: 414px) {
    .hp-cta-banner {
        padding: 30px 5% 40px;
    }

    .hp-cta-banner p {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }

    .btn-premium-contact {
        padding: 12px 28px;
        width: auto;
        min-width: 200px;
        justify-content: center;
    }
}

/* -----------------------------------------------
   NAVBAR BACK NAVIGATION (Secondary Pages)
   ----------------------------------------------- */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-back-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.nav-back-arrow:hover {
    transform: translateX(-4px);
    opacity: 1;
    color: var(--warm-brown);
}

@media (max-width: 768px) {
    .nav-brand {
        gap: 12px;
    }

    .nav-back-arrow {
        font-size: 1rem;
        width: 28px;
    }
}

/* -----------------------------------------------
   EVENTS PROMO BANNER (HOMEPAGE)
   ----------------------------------------------- */
.events-promo-banner {
    padding: 80px 5%;
    background: var(--pure-white);
    text-align: center;
}

.promo-img-wrapper {
    max-width: 1100px;
    margin: 0 auto 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.promo-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
    transition: transform 0.5s ease;
}

.promo-img-wrapper:hover img {
    transform: scale(1.02);
}

.promo-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 600;
}

.btn-promo-more {
    display: inline-block;
    padding: 16px 48px;
    background: var(--cream-beige);
    color: var(--warm-brown);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(92, 61, 46, 0.1);
    box-shadow: 0 8px 20px rgba(92, 61, 46, 0.08);
}

.btn-promo-more:hover {
    background: var(--primary-green);
    color: var(--pure-white);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(62, 92, 69, 0.15);
}

@media (max-width: 768px) {
    .events-promo-banner {
        padding: 50px 5%;
    }

    .promo-img-wrapper {
        margin-bottom: 30px;
        border-radius: 16px;
    }

    .promo-content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .btn-promo-more {
        padding: 14px 35px;
        font-size: 0.9rem;
    }
}
