/* =========================================
   MAYONE VILLA - LUXURY MINIMALIST CSS
   ========================================= */

/* --- Root Variables --- */
:root {
    --primary-color: #1a1a1a; /* Deep Charcoal/Black */
    --secondary-color: #ffffff; /* Pure White */
    --accent-color: #c5a880; /* Soft Luxury Gold/Beige */
    --bg-light: #fafafa;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Jost', sans-serif;
    
    --transition-speed: 0.4s;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* --- Header & Navbar --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all var(--transition-speed) ease;
}

/* JS Scroll Effect CSS */
.header.scrolled {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 5px 0; 
}

.full-width-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 1.5rem 5rem;
    transition: padding var(--transition-speed) ease;
}

/* --- Brand Logo --- */
.brand-logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: 1;
}

.brand-sub {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-top: 8px;
    margin-right: -8px; 
}

/* --- Navigation Links --- */
.nav-links {
    display: flex;
    gap: 3.5rem;
}

.nav-links li a {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 5px;
    transition: color var(--transition-speed) ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
}

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

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* --- Actions (Book Now) --- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-book-now {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 1rem 2.5rem;
    border: 1px solid var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
    transition: all var(--transition-speed) ease;
    cursor: pointer;
}

.btn-book-now:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(197, 168, 128, 0.2);
}

/* --- Mobile Menu (Hamburger) --- */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger-menu .bar {
    width: 30px;
    height: 1px;
    background-color: var(--primary-color);
    transition: all var(--transition-speed) ease;
}

/* --- Responsive Design & JS Mobile Menu --- */
@media (max-width: 1200px) {
    .full-width-container {
        padding: 1.5rem 3rem;
    }
    .nav-links {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .btn-book-now {
        display: none; 
    }

    .hamburger-menu {
        display: flex;
    }
    
    .full-width-container {
        padding: 1.2rem 2rem;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }

    /* Mobile Nav Links Container */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
    }

    /* Active State for Mobile Menu */
    .nav-links.mobile-active {
        left: 0;
    }

    .nav-links li a {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }

    /* Hamburger to 'X' animation */
    .hamburger-menu.toggle .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .hamburger-menu.toggle .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.toggle .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* =========================================
   HERO SECTION & BOOKING WIDGET
   ========================================= */

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Pahalata oyaage image path eka denna (e.g., url('assets/about-1.jpg')) */
    background: url('assets/gallery-12.avif') no-repeat center center/cover;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,0.62), rgba(10,10,10,0.34)); /* Premium overlay for readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--secondary-color);
    margin-top: -80px; /* Booking bar eka yatin ena nisa content eka poddak udata gaththa */
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.btn-discover {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 5px;
    transition: all var(--transition-speed) ease;
}

.btn-discover:hover {
    color: var(--accent-color);
}

/* --- Booking Widget --- */
.booking-container {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: var(--secondary-color);
    padding: 2.5rem 3.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); /* Luxury soft shadow */
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    z-index: 10;
}


@media (min-width: 769px) {
    .booking-container::before {
        content: "BOOK YOUR STAY";
        position: absolute;
        top: -16px;
        left: 32px;
        padding: 0.45rem 0.95rem;
        background: var(--primary-color);
        color: var(--secondary-color);
        font-family: var(--font-body);
        font-size: 0.72rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        border-radius: 999px;
        box-shadow: 0 10px 22px rgba(0,0,0,0.12);
    }
}

.booking-form {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 180px;
    text-align: left;
}

.input-group label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 0.5rem;
}

.input-group input,
.input-group select {
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 0.5rem 0;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    background: transparent;
    outline: none;
    transition: border-color var(--transition-speed) ease;
    cursor: pointer;
}

.input-group input:focus,
.input-group select:focus {
    border-bottom-color: var(--accent-color);
}

.btn-check-availability {
    font-family: var(--font-body);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    flex: 1;
    min-width: 220px;
}

.btn-check-availability:hover {
    background-color: var(--accent-color);
}

/* --- Responsive Adjustments for Hero & Booking --- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .booking-container {
        padding: 2rem;
        width: 95%;
    }
}

@media (max-width: 768px) {

    .map-preview-wrap {
        height: 190px;
    }

    .hero-title {
        font-size: 2.8rem;
    }
    .hero-section {
        height: auto;
        min-height: 85vh;
        padding-bottom: 100px;
    }
    .booking-container {
        position: relative;
        transform: none;
        left: 0;
        width: 100%;
        box-shadow: none;
        border-bottom: 1px solid #eee;
    }
    .booking-form {
        flex-direction: column;
        gap: 1.5rem;
    }
    .input-group, .btn-check-availability {
        width: 100%;
    }
}

/* =========================================
   ABOUT SECTION (Fixed Side-by-Side PC Layout)
   ========================================= */

.about-section {
    padding: 8rem 5%; 
    background-color: var(--secondary-color);
}

.about-container {
    display: flex; /* Flexbox eken side-by-side wenne mehemai */
    align-items: center; /* Items deka madata align karanawa */
    justify-content: space-between; /* Madin space eka thiyanawa */
    gap: 5rem; /* Gap eka wadi karanna puluwan awashya nam */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Left Side: Image --- */
.about-image-wrapper {
    flex: 1; /* Flexbox space eken bagayak (50%) gannawa */
    position: relative;
}

.about-image {
    width: 100%;
    height: 550px; 
    object-fit: cover; /* Image eka lassanata fit wenawa */
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 2rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 2;
}

.experience-badge span {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
}

/* --- Right Side: Text Content --- */
.about-content {
    flex: 1; /* Me pathtath flexbox space eken bagayak (50%) gannawa */
    padding-left: 2rem;
}

.section-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #555; 
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all var(--transition-speed) ease;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* =========================================
   RESPONSIVE DESIGN (For Mobile & Tablets)
   ========================================= */

@media (max-width: 992px) {
    .about-container {
        flex-direction: column; /* Phone eken baladdi eka yatin eka (Stack) wenna */
        gap: 4rem;
    }

    .about-image-wrapper, 
    .about-content {
        width: 100%; /* Mobile ekedi 100% width gannawa */
        padding-left: 0;
    }

    .about-image {
        height: 400px; 
    }

    .experience-badge {
        bottom: -20px;
        right: 20px; 
        padding: 1.5rem;
    }

    .experience-badge span {
        font-size: 2.5rem;
    }

    .about-content {
        text-align: center; 
    }
    
    .section-title {
        font-size: 2.8rem;
    }
}

/* =========================================
   FEATURES / AMENITIES BAR
   ========================================= */

.features-bar {
    background-color: var(--primary-color); /* Dark background for premium contrast */
    color: var(--secondary-color);
    padding: 4rem 5%;
}

.features-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Podi screens wala yatin yatin enna */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform var(--transition-speed) ease;
    cursor: pointer;
}

/* Hover karaddi poddak udata enna animation ekak */
.feature-item:hover {
    transform: translateY(-8px);
}

.feature-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: var(--accent-color); /* Gold color icons */
    margin-bottom: 1.2rem;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.08);
    border: 1px solid rgba(197, 168, 128, 0.16);
    transition: transform var(--transition-speed) ease, background-color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.08); /* Hover weddi icon eka poddak loku wenawa */
    background: rgba(197, 168, 128, 0.16);
    border-color: rgba(197, 168, 128, 0.32);
}

.feature-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    color: #f0f0f0;
}

/* =========================================
   RESPONSIVE DESIGN FOR FEATURES BAR
   ========================================= */

@media (max-width: 992px) {
    .features-container {
        justify-content: center;
        gap: 3rem;
    }
    .feature-item {
        width: 30%; /* Tablet ekedi peli 3k enna */
    }
}

@media (max-width: 768px) {
    .features-bar {
        padding: 3rem 5%;
    }
    .features-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Phone ekedi 2x2 grid ekak enna */
        gap: 3rem 1rem;
    }
    .feature-item {
        width: 100%;
    }
    .feature-item:last-child {
        grid-column: span 2; /* 5 weni eka madata enna */
    }
}

/* =========================================
   FEATURED AMENITIES SECTION (Zig-Zag)
   ========================================= */

.featured-amenities {
    padding: 8rem 5%;
    background-color: var(--bg-light);
    overflow: hidden;
}

.amenities-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

/* --- Row Layout --- */
.amenity-row {
    display: grid;
    grid-template-columns: minmax(360px, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: clamp(2.5rem, 5vw, 6rem);
    width: 100%;

    /* Animation Initial State */
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Active State for Animation */
.amenity-row.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Proper desktop zig-zag */
.amenity-row.reverse {
    grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
}

.amenity-row:nth-child(2) {
    padding-left: clamp(0rem, 4vw, 4.5rem);
}

/* --- Image Styling --- */
.amenity-image-wrapper {
    width: 100%;
    max-width: 640px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.amenity-row:not(.reverse) .amenity-image-wrapper {
    justify-self: start;
}

.amenity-row.reverse .amenity-image-wrapper {
    order: 2;
    justify-self: end;
}

.amenity-img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.amenity-image-wrapper:hover .amenity-img {
    transform: scale(1.05); /* Soft zoom effect */
}

/* --- Content Styling --- */
.amenity-content {
    width: 100%;
    max-width: 500px;
}

.amenity-row:not(.reverse) .amenity-content {
    justify-self: start;
    padding-right: 1rem;
}

.amenity-row.reverse .amenity-content {
    order: 1;
    justify-self: start;
    padding-left: 0;
    padding-right: 1rem;
}

.amenity-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.amenity-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.amenity-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.amenity-mini-points {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.amenity-mini-points li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #555;
    font-size: 0.98rem;
}

.amenity-mini-points li i {
    color: var(--accent-color);
    min-width: 18px;
}

.amenity-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color var(--transition-speed) ease;
}

.amenity-link i {
    transition: transform var(--transition-speed) ease;
}

.amenity-link:hover {
    color: var(--accent-color);
}

.amenity-link:hover i {
    transform: translateX(8px); 
}

/* =========================================
   RESPONSIVE DESIGN (Mobile & Tablets)
   ========================================= */

@media (max-width: 992px) {
    .amenities-container {
        gap: 4rem;
    }

    .amenity-row,
    .amenity-row.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-left: 0;
    }

    .amenity-image-wrapper,
    .amenity-content,
    .amenity-row:not(.reverse) .amenity-content,
    .amenity-row.reverse .amenity-content,
    .amenity-row.reverse .amenity-image-wrapper {
        width: 100%;
        max-width: 100%;
        justify-self: stretch;
        padding-left: 0;
        padding-right: 0;
        order: initial;
    }

    .amenity-img {
        height: 350px;
    }
}

/* =========================================
   OUR SUITES SECTION
   ========================================= */

.suites-section {
    padding: 8rem 5%;
    background-color: var(--secondary-color); /* White background */
}

.suites-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.suites-header p {
    font-family: var(--font-body);
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.suites-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap; /* Allows cards to wrap on smaller screens */
}

/* --- Suite Card --- */
.suite-card {
    flex: 1;
    min-width: 350px;
    max-width: 600px;
    background-color: var(--bg-light); /* Off-white for the card */
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    
    /* Scroll Reveal Animation Initial State */
    opacity: 0;
    transform: translateY(40px);
}

/* JS eken 'visible' class eka add unama fade-in wenawa */
.suite-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.suite-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.suite-img-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.suite-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.suite-card:hover .suite-img {
    transform: scale(1.05); /* Soft zoom in on hover */
}

.suite-price {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.suite-info {
    padding: 3rem 2.5rem;
    text-align: center;
}

.suite-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.suite-details {
    font-family: var(--font-body);
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Suite Features Icons */
.suite-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.suite-features li {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.suite-features i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Outline Button */
.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all var(--transition-speed) ease;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .suites-container {
        flex-direction: column;
        align-items: center;
    }
    .suite-card {
        width: 100%;
        max-width: 100%;
    }
    .suite-img-wrapper {
        height: 300px;
    }
    .suite-info {
        padding: 2rem 1.5rem;
    }
}

/* =========================================
   REVIEWS (TESTIMONIALS) SECTION
   ========================================= */

.reviews-section {
    padding: 8rem 5%;
    background-color: var(--primary-color); /* Dark background for contrast */
    color: var(--secondary-color);
    text-align: center;
}

.reviews-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

/* Override title color for dark background */
.reviews-section .section-title {
    color: var(--secondary-color); 
}

.reviews-slider {
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    padding: 3rem;
    margin: 0 15px; /* Spacing between slides */
    background-color: rgba(255, 255, 255, 0.05); /* Slight transparent box */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none; /* Removes default slick outline */
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.review-text {
    font-family: var(--font-heading); /* Playfair Display for elegant quotes */
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.guest-name {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.guest-location {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Customizing Slick Dots (Navigation) */
.slick-dots li button:before {
    color: var(--secondary-color); /* Make dots white */
    font-size: 10px;
}
.slick-dots li.slick-active button:before {
    color: var(--accent-color); /* Active dot gold */
}

@media (max-width: 768px) {
    .review-text {
        font-size: 1.3rem;
    }
    .review-card {
        padding: 2rem;
    }
}

/* =========================================
   FOOTER SECTION
   ========================================= */

.footer {
    background-color: #111; /* Very dark grey, almost black for premium look */
    color: #ccc; /* Light grey text */
    padding-top: 6rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col.brand-col {
    flex: 1.5; /* Brand column gets a bit more space */
}

/* Footer Logo */
.footer-logo {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.footer-logo .brand-name {
    color: var(--secondary-color); /* White text for contrast */
}

.footer-logo .brand-sub {
    color: var(--accent-color);
}

.footer-about {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 300px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #444;
    border-radius: 50%;
    color: #ccc;
    font-size: 1.1rem;
    transition: all var(--transition-speed) ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Footer Titles */
.footer-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: color var(--transition-speed) ease;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px; /* Subtle movement on hover */
}

/* Footer Contact Info */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 4px;
}

/* Newsletter */
.newsletter-col p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid #555;
    padding-bottom: 5px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: var(--secondary-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    width: 100%;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #777;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--accent-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform var(--transition-speed) ease;
}

.newsletter-form button:hover {
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 5rem;
    padding: 2rem 5%;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 1px;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 3rem 2rem;
    }
    .footer-col.brand-col {
        grid-column: span 2;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-about {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .footer-contact li {
        justify-content: center;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}
/* =========================================
   SAME DESIGN FIX: EXTRA PAGES + GALLERY
   Original luxury minimalist theme is preserved.
   ========================================= */

.page-hero {
    min-height: 65vh;
    height: 65vh;
    margin-top: 0;
}

.page-hero .hero-content {
    margin-top: 0;
    max-width: 900px;
    padding: 0 5%;
}

.gallery-section {
    padding: 8rem 5%;
    background-color: var(--bg-light);
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.8s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 55px rgba(0,0,0,0.12);
}

.gallery-cta {
    text-align: center;
    margin-top: 4rem;
}

.contact-section {
    padding: 8rem 5%;
    background: var(--secondary-color);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-card {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact-info-card .section-title,
.contact-info-card p {
    color: var(--secondary-color);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    margin-top: 2rem;
}

.contact-info-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: #e0e0e0;
}

.contact-info-list i {
    color: var(--accent-color);
    margin-top: 5px;
}

.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

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

.form-field label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    padding: 0.9rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--primary-color);
    outline: none;
}

.form-field textarea {
    min-height: 140px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-bottom-color: var(--accent-color);
}

.form-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.95rem;
}

.map-card {
    margin-top: 3rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.08);
    color: #555;
}

.map-preview-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #eae7e2;
    margin-bottom: 1rem;
}

.map-preview-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-card-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.map-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 55vh;
        height: 55vh;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }
    .gallery-grid img {
        height: 320px;
    }
    .contact-info-card,
    .contact-form {
        padding: 2rem 1.5rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-field.full {
        grid-column: span 1;
    }
}

/* =========================================
   MOBILE APP VERSION POLISH
   PC layout stays unchanged. These rules only run on phone screens.
   ========================================= */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 90px;
    }

    body {
        background: #fff;
        padding-bottom: 94px;
    }

    .header {
        background: rgba(255,255,255,0.96);
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .full-width-container {
        padding: 1rem 1.1rem;
    }

    .brand-name {
        font-size: 1.35rem;
        letter-spacing: 4px;
    }

    .brand-sub {
        font-size: 0.56rem;
        letter-spacing: 4px;
        margin-top: 6px;
        margin-right: -4px;
    }

    .hamburger-menu .bar {
        width: 27px;
        height: 1.5px;
    }

    .nav-links {
        padding: 7rem 1.5rem 6rem;
        gap: 1.6rem;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(18px);
    }

    .nav-links li a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 210px;
        padding: 1rem 1.25rem;
        border: 1px solid rgba(197,168,128,0.28);
        border-radius: 999px;
        background: #fff;
        box-shadow: 0 14px 35px rgba(0,0,0,0.05);
        font-size: 0.95rem;
        letter-spacing: 3px;
    }

    .hero-section {
        min-height: 720px;
        height: 720px;
        align-items: flex-start;
        padding: 145px 1rem 0;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        overflow: hidden;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(10,10,10,0.36), rgba(10,10,10,0.58));
    }

    .hero-content {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        padding: 0 0.4rem;
    }

    .hero-subtitle {
        font-size: 0.78rem;
        letter-spacing: 4px;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(2.85rem, 12vw, 4.1rem);
        line-height: 1.04;
        margin-bottom: 1.8rem;
    }

    .btn-discover {
        display: inline-flex;
        padding: 0.95rem 1.25rem;
        border: 1px solid rgba(255,255,255,0.55);
        border-radius: 999px;
        background: rgba(255,255,255,0.12);
        backdrop-filter: blur(10px);
        color: #fff;
    }

    .booking-container {
        position: absolute;
        left: 50%;
        bottom: 24px;
        transform: translateX(-50%);
        width: calc(100% - 30px);
        border-radius: 26px;
        padding: 1.1rem;
        box-shadow: 0 24px 55px rgba(0,0,0,0.22);
        border: 1px solid rgba(255,255,255,0.7);
    }

    .booking-form {
        gap: 0.9rem;
    }

    .input-group {
        min-width: 100%;
        background: #fafafa;
        border: 1px solid #eee;
        border-radius: 18px;
        padding: 0.8rem 0.95rem;
    }

    .input-group label {
        font-size: 0.68rem;
        margin-bottom: 0.2rem;
    }

    .input-group input,
    .input-group select {
        border-bottom: none;
        font-size: 1.05rem;
        padding: 0.2rem 0 0;
    }

    .btn-check-availability,
    .btn-primary,
    .btn-outline {
        width: 100%;
        border-radius: 999px;
        text-align: center;
        padding: 1rem 1.25rem;
    }

    .about-section,
    .featured-amenities,
    .suites-section,
    .reviews-section,
    .gallery-section,
    .contact-section {
        padding: 4.2rem 1rem;
    }

    .section-subtitle,
    .amenity-subtitle {
        font-size: 0.72rem;
        letter-spacing: 3.5px;
    }

    .section-title,
    .amenity-title {
        font-size: clamp(2.1rem, 9vw, 3rem);
        line-height: 1.12;
    }

    .about-container {
        gap: 3rem;
    }

    .about-image-wrapper,
    .suite-card,
    .review-card,
    .contact-info-card,
    .contact-form,
    .map-card {
        border-radius: 26px;
        overflow: hidden;
    }

    .about-image {
        height: 430px;
        border-radius: 26px;
        box-shadow: 0 24px 55px rgba(0,0,0,0.12);
    }

    .experience-badge {
        right: 16px;
        bottom: 16px;
        border-radius: 20px;
        padding: 1rem 1.1rem;
        box-shadow: 0 18px 35px rgba(0,0,0,0.2);
    }

    .experience-badge span {
        font-size: 2.1rem;
    }

    .features-bar {
        padding: 2.4rem 1rem;
        margin: 0 1rem;
        border-radius: 28px;
        transform: translateY(-20px);
        box-shadow: 0 24px 55px rgba(0,0,0,0.15);
    }

    .features-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .feature-item {
        background: rgba(255,255,255,0.055);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 20px;
        padding: 1.2rem 0.8rem;
    }

    .feature-item:last-child {
        grid-column: span 2;
    }

    .feature-icon {
        font-size: 1.75rem;
        margin-bottom: 0.7rem;
    }

    .feature-text {
        font-size: 0.72rem;
        letter-spacing: 1.4px;
    }

    .amenities-container {
        gap: 2rem;
    }

    .amenity-row,
    .amenity-row.reverse {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        background: #fff;
        border: 1px solid rgba(0,0,0,0.055);
        border-radius: 28px;
        overflow: hidden;
        box-shadow: 0 22px 50px rgba(0,0,0,0.08);
        text-align: left;
        padding-left: 0;
    }

    .amenity-image-wrapper,
    .amenity-row.reverse .amenity-image-wrapper {
        order: 1;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        justify-self: stretch;
    }

    .amenity-content,
    .amenity-row:not(.reverse) .amenity-content,
    .amenity-row.reverse .amenity-content {
        order: 2;
        width: 100%;
        max-width: 100%;
        padding: 1.55rem 1.35rem 1.7rem;
        justify-self: stretch;
    }

    .amenity-img {
        height: 285px;
    }

    .amenity-desc,
    .about-content p,
    .suite-details,
    .suites-header p {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .amenity-link {
        width: 100%;
        justify-content: space-between;
        border-top: 1px solid #eee;
        padding-top: 1rem;
        margin-top: 0.25rem;
    }

    .suites-header,
    .reviews-header {
        margin-bottom: 2.4rem;
        padding: 0 0.25rem;
    }

    .suites-container {
        gap: 1.6rem;
    }

    .suite-card {
        min-width: 100%;
        box-shadow: 0 22px 50px rgba(0,0,0,0.08);
    }

    .suite-img-wrapper {
        height: 300px;
    }

    .suite-price {
        border-top-right-radius: 18px;
        padding: 0.85rem 1.1rem;
        font-size: 0.72rem;
        letter-spacing: 1.4px;
    }

    .suite-info {
        padding: 1.7rem 1.25rem 1.5rem;
        text-align: left;
    }

    .suite-name {
        font-size: 2rem;
    }

    .suite-features {
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .suite-features li {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 999px;
        padding: 0.55rem 0.8rem;
    }

    .reviews-section {
        border-radius: 30px 30px 0 0;
    }

    .review-card {
        padding: 2rem 1.4rem;
    }

    .review-text {
        font-size: 1.2rem;
    }

    .page-hero {
        min-height: 520px;
        height: 520px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        overflow: hidden;
    }

    .page-hero-content {
        padding: 0 1rem;
    }

    .gallery-grid {
        gap: 1rem;
    }

    .gallery-grid img {
        height: 310px;
        border-radius: 26px;
        box-shadow: 0 18px 42px rgba(0,0,0,0.08);
    }

    .contact-container {
        gap: 1.5rem;
    }

    .contact-info-card,
    .contact-form {
        padding: 1.7rem 1.25rem;
    }

    .contact-info-list li {
        font-size: 0.95rem;
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 18px;
        padding: 0.95rem 1rem;
    }

    .footer {
        padding-bottom: 92px;
    }

    .footer-container {
        gap: 2.2rem;
    }

    .footer-bottom {
        margin-top: 3rem;
        padding: 1.5rem 1rem;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 50%;
        bottom: max(12px, env(safe-area-inset-bottom));
        transform: translateX(-50%);
        width: min(calc(100% - 22px), 440px);
        height: 76px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: center;
        gap: 0.25rem;
        padding: 0.55rem;
        border: 1px solid rgba(197,168,128,0.22);
        border-radius: 28px;
        background: rgba(255,255,255,0.94);
        backdrop-filter: blur(20px);
        box-shadow: 0 18px 50px rgba(0,0,0,0.18);
        z-index: 1200;
    }

    .mobile-nav-item {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        border-radius: 22px;
        color: #777;
        font-size: 0.68rem;
        letter-spacing: 0.2px;
        transition: all 0.3s ease;
    }

    .mobile-nav-item i {
        font-size: 1rem;
    }

    .mobile-nav-item.active {
        color: var(--primary-color);
        background: #f8f4ed;
    }

    .mobile-book-tab {
        margin-top: -28px;
        height: 72px;
        width: 72px;
        justify-self: center;
        border-radius: 50%;
        background: var(--primary-color);
        color: #fff;
        border: 4px solid #fff;
        box-shadow: 0 15px 35px rgba(0,0,0,0.22);
    }

    .mobile-book-tab i {
        color: var(--accent-color);
        font-size: 1.2rem;
    }

    .mobile-book-tab span {
        color: #fff;
        font-weight: 500;
    }
}

@media (max-width: 380px) {
    .hero-section {
        min-height: 700px;
        height: 700px;
    }
    .hero-title {
        font-size: 2.65rem;
    }
    .booking-container {
        width: calc(100% - 20px);
    }
    .mobile-bottom-nav {
        width: calc(100% - 14px);
    }
    .mobile-nav-item span {
        font-size: 0.62rem;
    }
}


/* =========================================
   BOOKING DETAILS / ROOM PRICE SECTION
   ========================================= */

.booking-details-section {
    padding: 8rem 5%;
    background: var(--secondary-color);
}

.booking-details-section.rooms-pricing-section,
.contact-booking-summary {
    background: var(--bg-light);
}

.booking-details-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(520px, 1.15fr);
    gap: clamp(2.5rem, 5vw, 6rem);
    align-items: start;
}

.booking-details-intro {
    position: sticky;
    top: 130px;
    padding: 3rem;
    background: #fff;
    border: 1px solid rgba(197,168,128,0.22);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.booking-details-intro p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.check-time-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.check-time-panel div {
    padding: 1.25rem;
    border: 1px solid #eee;
    background: var(--bg-light);
}

.check-time-panel i {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.check-time-panel span {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

.check-time-panel strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.whatsapp-btn i {
    color: #1fa855;
    font-size: 1.1rem;
}

.room-options-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}


.room-option-image-wrap {
    margin: -2rem -2rem 1.5rem;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.room-option-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 1s ease;
}

.room-option-card:hover .room-option-image {
    transform: scale(1.05);
}

.featured-room-option .room-option-image-wrap {
    border-bottom-color: rgba(255,255,255,0.08);
}

.room-option-card {
    background: var(--secondary-color);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 2rem;
    min-height: 330px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.045);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease, border-color var(--transition-speed) ease;
    opacity: 0;
    transform: translateY(34px);
}

.room-option-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.room-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 54px rgba(0,0,0,0.08);
    border-color: rgba(197,168,128,0.38);
}

.featured-room-option {
    background: #111;
    color: #fff;
}

.featured-room-option h3,
.featured-room-option li,
.featured-room-option .room-option-price {
    color: #fff;
}

.featured-room-option .room-option-tag,
.featured-room-option small {
    color: #cfcfcf;
}

.room-option-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    background: #f8f4ed;
    color: var(--accent-color);
    font-size: 1.25rem;
}

.room-option-icon.green {
    background: #eef8ef;
    color: #40865a;
}

.room-option-icon.blue {
    background: #eef7fb;
    color: #317ba3;
}

.room-option-icon.villa {
    background: rgba(197,168,128,0.12);
    color: var(--accent-color);
}

.room-option-tag {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 0.7rem;
}

.room-option-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.room-option-card ul {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.room-option-card li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #555;
    font-size: 0.95rem;
}

.room-option-card li i {
    color: var(--accent-color);
    min-width: 18px;
}

.room-option-price {
    margin-top: auto;
    font-family: var(--font-heading);
    font-size: 2.6rem;
    line-height: 1;
    color: var(--primary-color);
}

.room-option-price span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-right: 0.25rem;
}

.room-option-price small {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #666;
}

.booking-help-container {
    max-width: 1400px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.booking-help-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 2.5rem;
    box-shadow: 0 14px 34px rgba(0,0,0,0.045);
    opacity: 0;
    transform: translateY(34px);
    transition: all 0.8s ease;
}

.booking-help-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.booking-help-card h3 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.booking-help-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.addon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.addon-list span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1rem;
    border: 1px solid #eee;
    background: var(--bg-light);
    color: #444;
    font-size: 0.9rem;
}

.addon-list i {
    color: var(--accent-color);
}

.compact-price-list {
    display: grid;
    gap: 0.9rem;
}

.compact-price-list div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.compact-price-list strong {
    color: var(--accent-color);
    white-space: nowrap;
}

.small-panel {
    margin: 0 0 1.25rem;
}

.small-panel div {
    padding: 1rem;
}

.compact-addons {
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .booking-details-section {
        padding: 5rem 5%;
    }

    .booking-details-container,
    .booking-help-container {
        grid-template-columns: 1fr;
    }

    .booking-details-intro {
        position: static;
        padding: 2rem;
        text-align: center;
    }

    .room-options-grid {
        grid-template-columns: 1fr 1fr;
    }

    .booking-help-card {
        padding: 2rem;
        text-align: center;
    }

    .addon-list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .booking-details-section {
        padding: 4rem 1rem;
    }

    .booking-details-intro {
        border-radius: 28px;
        padding: 1.7rem 1.25rem;
        box-shadow: 0 18px 42px rgba(0,0,0,0.07);
    }

    .check-time-panel {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .check-time-panel div {
        border-radius: 20px;
        padding: 1rem 0.75rem;
    }

    .check-time-panel strong {
        font-size: 1.1rem;
    }

    .room-options-grid {
        grid-template-columns: 1fr;
    }

    .room-option-card {
        min-height: auto;
        border-radius: 28px;
        padding: 1.55rem 1.25rem;
    }

    .room-option-card h3 {
        font-size: 1.85rem;
    }

    .room-option-price {
        font-size: 2.25rem;
    }

    .booking-help-card {
        border-radius: 28px;
        padding: 1.7rem 1.25rem;
    }

    .booking-help-card h3 {
        font-size: 1.85rem;
    }

    .addon-list span {
        border-radius: 999px;
        padding: 0.75rem 0.9rem;
    }

    .compact-price-list div {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
        text-align: left;
    }
}


@media (max-width: 768px) {
    .room-option-image-wrap {
        margin: -1.5rem -1.5rem 1.25rem;
        height: 190px;
    }

    .room-option-card {
        min-height: auto;
    }
}


/* =========================================
   ABOUT DETAILS / SPACE INFO
   ========================================= */

.about-details-section {
    padding: 2rem 5% 8rem;
    background: var(--secondary-color);
}

.about-details-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    padding: clamp(2rem, 4vw, 3.5rem);
}

.about-details-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-details-block + .about-details-block {
    margin-top: 2rem;
}

.about-details-block h3 {
    font-family: var(--font-body);
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
    color: var(--primary-color);
}

.about-details-block p {
    font-size: 1.08rem;
    color: #555;
    line-height: 1.9;
}

/* =========================================
   FLOATING ACTION BUTTONS
   ========================================= */

.floating-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 96px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-action-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.float-action-btn i {
    font-size: 1.25rem;
}

.float-action-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 24px 42px rgba(0,0,0,0.22);
}

.float-action-btn.location-btn {
    background: var(--primary-color);
}

.float-action-btn.whatsapp-float {
    background: #1fa855;
}

@media (max-width: 768px) {
    .about-details-section {
        padding: 1rem 5% 7rem;
    }

    .about-details-card {
        padding: 1.5rem;
    }

    .about-details-block p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .floating-contact-buttons {
        right: 14px;
        bottom: 92px;
        gap: 10px;
    }

    .float-action-btn {
        width: 52px;
        height: 52px;
    }
}


/* =========================================
   AIRBNB DETAILS / HERO QUICK FACTS
   ========================================= */
.hero-quickfacts {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: -1.2rem 0 2.2rem;
}

.hero-quickfacts span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.95rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.hero-quickfacts i {
    color: var(--accent-color);
}

.airbnb-details-section {
    padding: 7rem 5%;
    background: var(--bg-light);
}

.airbnb-details-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(520px, 1.1fr);
    gap: clamp(2.5rem, 5vw, 6rem);
    align-items: start;
}

.airbnb-summary-card {
    background: #111;
    color: #fff;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 24px 55px rgba(0,0,0,0.15);
}

.airbnb-summary-card .section-subtitle,
.airbnb-summary-card .airbnb-rating strong {
    color: var(--accent-color);
}

.airbnb-summary-card h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 1.15;
    margin: 0.8rem 0 1.4rem;
}

.airbnb-summary-card p {
    color: #d6d6d6;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.airbnb-rating {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.airbnb-rating span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    font-size: 0.88rem;
}

.airbnb-rating span i {
    color: var(--accent-color);
    font-size: 0.95rem;
}

.airbnb-facts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1rem;
}

.airbnb-fact {
    background: #fff;
    padding: 1.4rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 14px 34px rgba(0,0,0,0.045);
}

.airbnb-fact i {
    color: var(--accent-color);
    font-size: 1.35rem;
    margin-bottom: 0.9rem;
}

.airbnb-fact strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 400;
    margin-bottom: 0.35rem;
}

.airbnb-fact span {
    color: #666;
    font-size: 0.95rem;
}

.host-contact-card {
    margin-top: 2rem;
    padding: 1.6rem;
    background: #fff;
    border: 1px solid rgba(197,168,128,0.22);
    box-shadow: 0 18px 45px rgba(0,0,0,0.055);
}

.host-contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.host-contact-list {
    display: grid;
    gap: 0.9rem;
}

.host-contact-list a,
.host-contact-list span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #333;
    word-break: break-word;
}

.host-contact-list i {
    color: var(--accent-color);
    width: 18px;
}

@media (max-width: 992px) {
    .airbnb-details-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-quickfacts {
        margin: -0.8rem 0 1.8rem;
        gap: 0.5rem;
    }

    .hero-quickfacts span {
        font-size: 0.67rem;
        padding: 0.55rem 0.7rem;
        letter-spacing: 1.2px;
    }

    .airbnb-details-section {
        padding: 4.5rem 5% 7rem;
    }

    .airbnb-facts-grid {
        grid-template-columns: 1fr;
    }
}


.footer-action-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-action-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #ddd;
    font-size: 0.95rem;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.footer-action-links a:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.direct-booking-col p {
    line-height: 1.7;
    color: #aaa;
}


/* =========================================
   FACILITIES SECTION
   ========================================= */
.section-shell {
    max-width: 1400px;
    margin: 0 auto;
}

.facilities-section {
    padding: 6rem 5%;
    background: var(--secondary-color);
}

.facilities-header {
    margin-bottom: 2rem;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 2rem;
}

.facility-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.facility-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.1rem;
    width: 22px;
    text-align: center;
}

.facility-item span {
    font-size: 1.3rem;
    color: var(--primary-color);
    line-height: 1.35;
}

.facility-item.unavailable {
    opacity: 0.55;
}

.facility-item.unavailable span {
    text-decoration: line-through;
}

/* =========================================
   REVIEW SUMMARY SECTION
   ========================================= */
.review-summary-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.review-summary-top {
    margin-bottom: 2.5rem;
}

.review-summary-top h2 {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--primary-color);
}

.review-summary-top h2 i {
    color: var(--primary-color);
    font-size: 0.95em;
}

.review-summary-top p {
    margin-top: 0.75rem;
    color: #666;
    font-size: 1.02rem;
}

.review-summary-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.25fr) repeat(6, minmax(150px, 1fr));
    gap: 1.15rem;
    align-items: stretch;
}

.review-overall-box,
.review-highlight-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 1.75rem 1.45rem;
    min-height: 220px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.03);
}

.review-overall-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1.35rem;
    color: var(--primary-color);
}

.rating-bars {
    display: grid;
    gap: 0.85rem;
}

.rating-row {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 0.8rem;
    align-items: center;
}

.rating-row span {
    font-size: 1.05rem;
    color: var(--primary-color);
    font-weight: 500;
}

.bar-track {
    height: 7px;
    background: #ddd;
    overflow: hidden;
    border-radius: 999px;
}

.bar-fill {
    height: 100%;
    background: #3d3d3d;
    border-radius: 999px;
}
.fill-5 { width: 78%; }
.fill-4 { width: 12%; }
.fill-3 { width: 4%; }
.fill-2 { width: 2%; }
.fill-1 { width: 1%; }

.review-highlight-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.2rem;
}

.review-highlight-card strong {
    font-size: 3rem;
    line-height: 1;
    color: var(--primary-color);
}

.review-highlight-card span {
    font-size: 1.12rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.35;
}

.review-highlight-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* =========================================
   GUEST REVIEWS GRID
   ========================================= */
.guest-reviews-section {
    padding: 0 5% 7rem;
    background: var(--bg-light);
}

.guest-reviews-slider {
    margin: 0 -14px;
}

.guest-review-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 1.8rem;
    box-shadow: 0 14px 34px rgba(0,0,0,0.03);
}

.guest-review-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.guest-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(197,168,128,0.15);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.15rem;
}

.guest-review-head h3 {
    font-size: 1.8rem;
    margin: 0 0 0.15rem;
    color: var(--primary-color);
}

.guest-review-head span,
.guest-review-meta {
    color: #6c6c6c;
    font-size: 0.95rem;
}

.guest-review-meta {
    margin-bottom: 1rem;
    font-weight: 500;
}

.guest-review-card p {
    color: #444;
    line-height: 1.75;
    font-size: 1.05rem;
}

/* PWA/mobile refinements */
@media (max-width: 1200px) {
    .review-summary-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .review-overall-box {
        grid-column: 1 / -1;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .facilities-section,
    .review-summary-section,
    .guest-reviews-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .facilities-grid,
    .review-summary-grid {
        grid-template-columns: 1fr;
    }

    .facility-item {
        gap: 0.85rem;
        padding: 0.9rem 0;
    }

    .facility-item span {
        font-size: 1.02rem;
    }

    .review-highlight-card,
    .review-overall-box,
    .guest-review-card {
        min-height: auto;
        padding: 1.35rem;
    }

    .review-highlight-card strong {
        font-size: 2.3rem;
    }

    .review-highlight-card span {
        font-size: 1.02rem;
    }

    .review-summary-top h2 {
        font-size: 1.95rem;
    }

    .guest-review-head h3 {
        font-size: 1.45rem;
    }
}


/* =========================================
   FULL VILLA COLLAGE IMAGE
   ========================================= */
.room-option-collage-wrap,
.suite-collage-wrap {
    overflow: hidden;
}

.room-option-collage,
.suite-collage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
    width: 100%;
    height: 100%;
    background: #0f1012;
    padding: 4px;
    box-sizing: border-box;
}

.room-option-collage .room-option-image,
.suite-collage .suite-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.room-option-card:hover .room-option-collage .room-option-image,
.suite-card:hover .suite-collage .suite-img {
    transform: scale(1.04);
}

.featured-room-option .room-option-collage {
    background: rgba(255,255,255,0.04);
}

.featured-room-option .room-option-collage .room-option-image {
    opacity: 0.96;
}

.suite-collage-wrap {
    position: relative;
}

@media (max-width: 768px) {
    .room-option-collage,
    .suite-collage {
        gap: 3px;
        padding: 3px;
    }
}


/* =========================================
   SUITES POLISH / FEATURED FULL VILLA
   ========================================= */
.full-villa-feature-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(420px, 1.05fr) minmax(320px, 0.95fr);
    align-items: stretch;
}

.full-villa-feature-card .suite-img-wrapper {
    height: 100%;
    min-height: 420px;
}

.full-villa-feature-card .suite-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 3rem 3.2rem;
}

.full-villa-feature-card .suite-features {
    justify-content: flex-start;
}

.full-villa-feature-card .btn-outline {
    align-self: flex-start;
}

/* =========================================
   GUEST REVIEWS SLIDER
   ========================================= */
.guest-reviews-slider {
    margin: 0 -14px;
}

.guest-reviews-slider .slick-slide {
    padding: 0 14px;
    height: inherit;
}

.guest-reviews-slider .slick-track {
    display: flex !important;
}

.guest-reviews-slider .slick-slide > div {
    height: 100%;
}

.guest-reviews-slider .guest-review-card {
    height: 100%;
    min-height: 250px;
}

.guest-reviews-slider .slick-dots {
    bottom: -46px;
}

.guest-reviews-slider .slick-dots li button:before {
    font-size: 10px;
    color: var(--accent-color);
    opacity: 0.45;
}

.guest-reviews-slider .slick-dots li.slick-active button:before {
    color: var(--primary-color);
    opacity: 1;
}

@media (max-width: 992px) {
    .full-villa-feature-card {
        grid-template-columns: 1fr;
    }

    .full-villa-feature-card .suite-img-wrapper {
        min-height: 330px;
    }

    .full-villa-feature-card .suite-info {
        text-align: center;
        padding: 2.2rem 2rem 2.8rem;
    }

    .full-villa-feature-card .suite-features {
        justify-content: center;
    }

    .full-villa-feature-card .btn-outline {
        align-self: center;
    }
}


/* =========================================
   APPLE-LIKE MOBILE ROUNDING POLISH
   ========================================= */
@media (max-width: 768px) {
    .booking-container,
    .about-image-wrapper,
    .amenity-image-wrapper,
    .suite-card,
    .suite-img-wrapper,
    .gallery-grid img,
    .contact-info-card,
    .contact-form,
    .room-option-card,
    .room-option-image-wrap,
    .room-option-collage-wrap,
    .suite-collage-wrap,
    .airbnb-summary-card,
    .airbnb-fact,
    .review-overall-box,
    .review-highlight-card,
    .guest-review-card,
    .about-details-card,
    .booking-details-intro,
    .facility-item {
        border-radius: 24px;
    }

    .about-image-wrapper,
    .amenity-image-wrapper,
    .suite-img-wrapper,
    .room-option-image-wrap,
    .room-option-collage-wrap,
    .suite-collage-wrap,
    .gallery-grid img {
        overflow: hidden;
    }

    .suite-card,
    .contact-info-card,
    .contact-form,
    .room-option-card,
    .airbnb-summary-card,
    .review-overall-box,
    .review-highlight-card,
    .guest-review-card,
    .about-details-card,
    .booking-details-intro {
        box-shadow: 0 18px 45px rgba(15, 16, 18, 0.08);
        border: 1px solid rgba(15, 16, 18, 0.06);
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .booking-container {
        border-radius: 28px;
        box-shadow: 0 20px 48px rgba(15, 16, 18, 0.12);
        overflow: hidden;
    }

    .room-option-image-wrap,
    .suite-img-wrapper,
    .amenity-image-wrapper,
    .about-image-wrapper,
    .gallery-grid img {
        border-radius: 22px;
    }

    .room-option-card,
    .suite-card {
        overflow: hidden;
    }

    .room-option-icon,
    .feature-icon,
    .guest-avatar {
        border-radius: 50%;
    }

    .btn-primary,
    .btn-outline,
    .btn-discover,
    .btn-book-now,
    .btn-check-availability,
    .amenity-link,
    .footer-action-links a {
        border-radius: 999px;
    }

    .mobile-bottom-nav {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        transform: none;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        border-radius: 28px;
        background: rgba(17, 17, 17, 0.88);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0.35rem 0.45rem;
        overflow: visible;
    }

    .mobile-nav-item {
        border-radius: 20px;
        min-height: 58px;
    }

    .mobile-book-tab {
        margin-top: -18px;
        width: 64px;
        height: 64px;
        border-radius: 22px;
        box-shadow: 0 10px 24px rgba(197, 168, 128, 0.28);
    }

    .floating-contact-buttons {
        right: 14px;
        bottom: 96px;
    }

    .float-action-btn {
        border-radius: 50%;
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
    }

    .facility-item {
        background: rgba(255,255,255,0.96);
        padding: 1rem 1rem;
        box-shadow: 0 10px 24px rgba(15,16,18,0.04);
        border: 1px solid rgba(15,16,18,0.05);
    }
}


/* =========================================
   FIVE-IMAGE FULL VILLA COLLAGE
   ========================================= */
.room-option-collage-five,
.suite-collage-five {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
    width: 100%;
    height: 100%;
}

.room-option-collage-five img:nth-child(1),
.suite-collage-five img:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
}

.room-option-collage-five img:nth-child(2),
.suite-collage-five img:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.room-option-collage-five img:nth-child(3),
.suite-collage-five img:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.room-option-collage-five img:nth-child(4),
.suite-collage-five img:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.room-option-collage-five img:nth-child(5),
.suite-collage-five img:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}


/* =========================================
   AMENITY BEDROOM COLLAGE
   ========================================= */
.amenity-collage-wrap {
    padding: 4px;
    background: rgba(0,0,0,0.03);
}

.amenity-collage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
    height: 100%;
}

.amenity-collage-grid .amenity-img {
    width: 100%;
    height: 248px;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .amenity-collage-grid .amenity-img {
        height: 170px;
    }
}


/* =========================================
   FOUR-IMAGE FULL VILLA COLLAGE + BUG FIX
   ========================================= */
.room-option-collage-four,
.suite-collage-four {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
    width: 100%;
    height: 100%;
}

.room-option-collage-four .room-option-image,
.suite-collage-four .suite-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.full-villa-feature-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 1260px;
    display: grid;
    grid-template-columns: minmax(420px, 1.05fr) minmax(360px, 0.95fr);
    align-items: stretch;
}

.full-villa-feature-card .suite-img-wrapper {
    height: 100%;
    min-height: 420px;
}

.full-villa-feature-card .suite-info {
    min-width: 0;
    padding: 3rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.full-villa-feature-card .suite-name {
    line-height: 1.22;
    margin-bottom: 1.3rem;
    word-break: normal;
}

.full-villa-feature-card .suite-details {
    max-width: 520px;
}

.full-villa-feature-card .suite-features {
    gap: 1rem 1.4rem;
}

@media (max-width: 992px) {
    .full-villa-feature-card {
        grid-template-columns: 1fr;
    }

    .full-villa-feature-card .suite-img-wrapper {
        min-height: 320px;
    }

    .full-villa-feature-card .suite-info {
        text-align: center;
        align-items: center;
    }

    .full-villa-feature-card .suite-details {
        max-width: none;
    }
}


/* =========================================
   FINAL MOBILE BUG FIX PASS
   ========================================= */
@media (max-width: 768px) {
    body {
        padding-bottom: 98px;
    }

    main {
        overflow-x: hidden;
    }

    .hero-section {
        min-height: 760px;
        height: auto;
        padding-top: 88px;
        padding-bottom: 180px;
    }

    .hero-content {
        max-width: 320px;
        padding: 0 0.65rem;
    }

    .hero-subtitle {
        font-size: 0.72rem;
        letter-spacing: 3px;
        line-height: 1.45;
        margin-bottom: 0.9rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.15rem);
        line-height: 0.96;
        letter-spacing: -0.02em;
        margin-bottom: 1.3rem;
        max-width: 9ch;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-quickfacts {
        margin: -0.2rem 0 1.35rem;
        gap: 0.45rem;
    }

    .hero-quickfacts span {
        font-size: 0.63rem;
        padding: 0.5rem 0.62rem;
        letter-spacing: 1px;
    }

    .booking-container {
        left: 50%;
        bottom: 92px;
        transform: translateX(-50%);
        width: calc(100% - 24px);
        padding: 0.95rem;
        border-radius: 24px;
    }

    .booking-form {
        gap: 0.75rem;
    }

    .input-group {
        padding: 0.72rem 0.9rem;
        border-radius: 16px;
    }

    .input-group label {
        font-size: 0.66rem;
        letter-spacing: 1.4px;
        margin-bottom: 0.15rem;
    }

    .input-group input,
    .input-group select {
        font-size: 0.98rem;
    }

    .btn-check-availability {
        min-height: 54px;
        padding: 1rem 1.2rem;
        font-size: 0.78rem;
        letter-spacing: 1.6px;
    }

    .page-hero {
        min-height: 470px;
        height: 470px;
    }

    .page-hero .hero-content {
        max-width: 330px;
    }

    .page-hero .hero-title {
        max-width: 10ch;
        font-size: clamp(2.05rem, 9.5vw, 2.85rem);
        line-height: 0.98;
    }

    .floating-contact-buttons {
        right: 14px;
        bottom: 118px;
        gap: 0.75rem;
    }

    .float-action-btn {
        width: 50px;
        height: 50px;
    }

    .mobile-bottom-nav {
        left: 12px;
        right: 12px;
        width: auto;
        transform: none;
        bottom: 10px;
        min-height: 70px;
        padding: 0.3rem 0.35rem;
    }

    .mobile-nav-item {
        min-height: 54px;
    }

    .room-options-grid,
    .suites-container,
    .guest-reviews-section,
    .booking-details-section,
    .footer {
        scroll-margin-top: 90px;
    }

    .footer {
        padding-bottom: 108px;
    }
}

@media (max-width: 380px) {
    .hero-section {
        min-height: 730px;
        padding-bottom: 174px;
    }

    .hero-title {
        font-size: 2.05rem;
        max-width: 8.5ch;
    }

    .page-hero .hero-title {
        font-size: 1.95rem;
    }

    .booking-container {
        width: calc(100% - 18px);
        bottom: 90px;
    }
}


/* =========================================
   BOOK TAB ROUND CIRCLE POLISH
   ========================================= */
@media (max-width: 768px) {
    .mobile-book-tab {
        margin-top: -24px;
        width: 68px;
        height: 68px;
        border-radius: 50%;
        align-self: start;
        justify-self: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.18rem;
        border: 4px solid rgba(255,255,255,0.96);
        box-shadow: 0 14px 30px rgba(0,0,0,0.22);
        z-index: 3;
    }

    .mobile-book-tab i {
        font-size: 1.08rem;
    }

    .mobile-book-tab span {
        font-size: 0.72rem;
        line-height: 1;
    }
}


/* =========================================
   MOBILE CONTACT CARD VISIBILITY + SPACING FIX
   ========================================= */
@media (max-width: 768px) {
    .contact-info-card {
        background: var(--primary-color) !important;
        color: var(--secondary-color) !important;
        padding: 1.45rem 1.15rem !important;
    }

    .contact-info-card .section-subtitle,
    .contact-info-card .section-title,
    .contact-info-card p,
    .contact-info-card .contact-info-list li,
    .contact-info-card .contact-info-list span,
    .contact-info-card .map-card-content p,
    .contact-info-card .map-card-content a {
        color: var(--secondary-color) !important;
    }

    .contact-info-card .section-title {
        margin-top: 0.45rem;
        margin-bottom: 0.75rem;
        font-size: 1.75rem;
        line-height: 1.06;
    }

    .contact-info-card > p {
        margin-bottom: 1rem;
        font-size: 0.95rem;
        line-height: 1.65;
        opacity: 0.9;
    }

    .contact-info-list {
        margin-top: 1rem;
        gap: 0.9rem;
    }

    .contact-info-list li {
        font-size: 0.92rem;
        gap: 0.8rem;
    }

    .contact-info-list i {
        margin-top: 0.2rem;
    }

    .map-card {
        margin-top: 1.2rem;
        padding: 0.9rem;
        background: rgba(255,255,255,0.06) !important;
        border-color: rgba(255,255,255,0.12) !important;
    }

    .map-preview-wrap {
        margin-bottom: 0.75rem;
        height: 170px;
        border-radius: 18px;
        overflow: hidden;
    }
}


/* =========================================
   INNER PAGES HERO TEXT CENTER FIX
   ========================================= */
.page-hero {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero .hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
}

@media (max-width: 768px) {
    .page-hero .hero-content {
        max-width: 340px;
        padding: 0 1rem;
    }

    .page-hero .hero-subtitle {
        margin-bottom: 0.8rem;
    }

    .page-hero .hero-title {
        margin-bottom: 0;
    }
}
