/* --- Brand Custom Palette Setup --- */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-cream: #FDFBF7;
    --bg-card: #FFFFFF;
    --text-dark: #1E1A17;
    --text-muted: #6B625D;
    --accent-gold: #D4AF37;
    --dark-block: #1A1512;
    --dark-input: #261F1B;
    --border-color: #EFECE6;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Instrument Serif', serif;
}

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

html {
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.tagline {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

h1, h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--text-dark);
}

h2 {
    font-size: 2.8rem;
    line-height: 1.2;
}

.section-header {
    max-width: 700px;
    margin-bottom: 3.5rem;
}

.section-desc {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 1.05rem;
}

/* --- Action Triggers --- */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--dark-block);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    color: var(--dark-block);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: #fff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 6%; 
    background-color: var(--bg-cream);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.navbar .logo-container {
    display: flex;
    align-items: center;
    gap: 12px; 
    text-decoration: none; 
}

.navbar .logoImg {
    height: 50px;       
    width: auto;      
    object-fit: contain;
}

.navbar .logo {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dark);
    line-height: 1; 
}

.navbar nav a {
    text-decoration: none;
    color: var(--text-dark);
    margin: 0 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: var(--accent-gold);
}

.nav-book {
    padding: 0.6rem 1.5rem;
}

/* --- Mobile Nav Toggle (hidden on desktop) --- */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* --- Hero Section Layout --- */
.hero {
    padding: 4rem 6% 9rem 6%;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    font-style: italic;
    color: var(--accent-gold);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    flex-wrap: wrap;
}

.stat-item strong {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
}

.stat-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.hero-images {
    position: relative;
    height: 520px;
}

.main-img-wrapper {
    width: 85%;
    height: 90%;
    border-radius: 24px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.img-badge i {
    color: #2ECC71;
    font-size: 0.5rem;
}

.sub-img-wrapper {
    width: 42%;
    height: 45%;
    border-radius: 18px;
    overflow: hidden;
    position: absolute;
    bottom: -15px;
    left: 20px;
    border: 6px solid var(--bg-cream);
}

.hero-sub-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Floating Reservation Bar --- */
.booking-bar {
    position: absolute;
    bottom: -35px;
    left: 6%;
    right: 6%;
    background: #FFFFFF;
    padding: 1.4rem 3rem;
    border-radius: 100px;
    box-shadow: 0 20px 40px rgba(26, 21, 18, 0.08);
    border: 1px solid var(--border-color);
    z-index: 10;
}

.booking-bar form {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr auto;
    gap: 2rem;
    align-items: center;
}

.booking-bar .input-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.booking-bar label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.booking-bar input, .booking-bar select {
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    background: transparent;
    cursor: pointer;
    width: 100%;
    min-width: 0;
}

.btn-search {
    background-color: var(--dark-block);
    color: #fff;
    border: none;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-search:hover {
    background-color: var(--accent-gold);
    color: var(--dark-block);
}

/* --- Branches Layout Style --- */
.locations-section {
    padding: 10rem 6% 4rem 6%;
}

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

.location-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.location-card:hover {
    transform: translateY(-5px);
}

.premium-highlight {
    border: 2px solid var(--accent-gold);
}

.loc-icon {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.location-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.loc-address {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    min-height: 50px;
}

.loc-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #F5F2EC;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.family-only {
    background: #FDF2F2;
    color: #C0392B;
}

/* --- Rooms Layout Matrix --- */
.rooms {
    padding: 4rem 6%;
}

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

.room-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.bungalow-card {
    border: 2px dashed var(--accent-gold);
}

.room-img-container {
    height: 260px;
    position: relative;
}

.room-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.special-gold {
    background-color: var(--accent-gold);
    color: var(--dark-block);
}

.room-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-info h3 {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.room-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.room-footer .price {
    font-size: 1.2rem;
    font-weight: 700;
}

.room-footer .price span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.view-room-btn {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.view-room-btn:hover {
    gap: 0.75rem;
    color: var(--accent-gold);
}

/* --- Amenities Grid System --- */
.amenities {
    padding: 6rem 6%;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background-color: var(--bg-card);
    overflow: hidden;
}

.amenity-card {
    padding: 2.5rem 1.8rem;
    border-right: 1px solid var(--border-color);
}

.amenity-card:last-child {
    border-right: none;
}

.amenity-icon {
    width: 45px;
    height: 45px;
    background-color: #F8F5F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.amenity-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.amenity-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Masonry Gallery --- */
/* --- Premium Horizontal Scroll Gallery UI --- */
.premium-gallery-section {
    padding: 6rem 0 6rem 6%; /* Right padding removed for off-screen fluid flowing track */
    overflow: hidden;
}

.gallery-upper-control {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-right: 6%;
    margin-bottom: 2.5rem;
}

.gallery-upper-control .section-header {
    margin-bottom: 0;
    max-width: 600px;
}

/* Arrow Navigation System Hooks */
.scroll-navigation-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.nav-scroll-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.nav-scroll-btn:hover {
    background-color: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

/* Horizontal Track Setup */
.gallery-scroll-outer {
    width: 100%;
    cursor: grab;
    overflow-x: scroll;
    padding-bottom: 2rem;
    scrollbar-width: none; /* Hide default scrollbars for Firefox */
}

.gallery-scroll-outer::-webkit-scrollbar {
    display: none; /* Hide default scrollbars for Chrome/Safari */
}

.gallery-scroll-outer:active {
    cursor: grabbing;
}

.gallery-scroll-inner {
    display: flex;
    gap: 1.8rem;
    width: max-content;
    padding-right: 6%; /* Pad end block for natural terminal bounce styling */
}

/* Advanced Card Aesthetics */
.premium-gallery-card {
    position: relative;
    width: 380px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #ECE7E1;
    box-shadow: 0 10px 30px rgba(42, 36, 33, 0.04);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-gallery-card.card-wide-aspect {
    width: 560px; /* Varied aspect weights for premium editorial grid pattern appearance */
}

.premium-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.92);
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Micro-interactions */
.premium-gallery-card:hover {
    transform: translateY(-8px);
}

.premium-gallery-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.85);
}

/* Metadata Text Overlays */
.card-overlay-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(26,21,18,0.85) 0%, rgba(26,21,18,0.4) 60%, transparent 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transform: translateY(10px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-gallery-card:hover .card-overlay-meta {
    transform: translateY(0);
}

.img-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-gold);
}

.card-overlay-meta h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: #fff;
    font-weight: 400;
}

/* Progress Linear Tracker */
.gallery-progress-container {
    width: calc(100% - 12%);
    height: 2px;
    background-color: var(--border-color);
    margin: 1.5rem 6% 0 6%;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.gallery-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--text-dark);
    transition: width 0.1s ease-out;
}

/* --- Immersive Lightbox Modal Interface --- */
.gallery-lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 4rem;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(26, 21, 18, 0.96);
    backdrop-filter: blur(8px);
}

.lightbox-content-target {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    animation: zoomAnimation 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes zoomAnimation {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-lightbox-trigger {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: #A39992;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}

.close-lightbox-trigger:hover {
    color: #fff;
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    text-align: center;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    padding: 1.5rem 0;
}

/* --- Inquiry Submission Area --- */
.inquiry-section {
    background-color: var(--dark-block);
    color: #fff;
    padding: 7rem 6%;
}

.inquiry-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.dark-tag { color: var(--accent-gold); }

.inquiry-info h2 {
    color: #fff;
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.inquiry-sub {
    color: #A39992;
    margin-bottom: 3.5rem;
}

.contact-details h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.address-desc {
    color: #A39992;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.8rem;
}

.icon-box {
    width: 46px;
    height: 46px;
    background-color: var(--dark-input);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-item span {
    display: block;
    font-size: 0.75rem;
    color: #A39992;
}

.contact-item p {
    font-size: 1rem;
    font-weight: 600;
}

/* Form Styling Parameters */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    min-width: 0;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #A39992;
    margin-bottom: 0.5rem;
}

.form-group input, .form-group select, .form-group textarea {
    background-color: var(--dark-input);
    border: 1px solid #3A312B;
    border-radius: 8px;
    padding: 0.95rem 1.2rem;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    width: 100%;
}

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

.form-group select {
    cursor: pointer;
}

.btn-submit {
    background-color: var(--accent-gold);
    color: var(--dark-block);
    border: none;
    width: 100%;
    padding: 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

/* --- Footer Infrastructure --- */
footer {
    background-color: var(--bg-cream);
    padding: 5rem 6% 2.5rem 6%;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 { font-size: 2rem; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; max-width: 320px; }

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-dark);
    text-decoration: none;
    margin-right: 0.6rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--text-dark);
    color: #fff;
}

.footer-links h4 { font-size: 0.85rem; letter-spacing: 0.05em; margin-bottom: 1.25rem; text-transform: uppercase;}
.footer-links a, .footer-links p { display: block; color: var(--text-muted); text-decoration: none; font-size: 0.9rem; margin-bottom: 0.75rem; }
.footer-links a:hover { color: var(--accent-gold); }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--border-color); padding-top: 2rem; font-size: 0.8rem; color: var(--text-muted); flex-wrap: wrap; gap: 0.5rem; }

/* =========================================================
   RESPONSIVE ADAPTATIONS
   ========================================================= */

/* --- Tablet / small laptop (<=1100px) --- */
@media (max-width: 1100px) {
    .hero-container, .inquiry-wrapper, .footer-top { grid-template-columns: 1fr; gap: 3rem; }
    .hero-images { height: 420px; }
    .booking-bar form { grid-template-columns: 1fr 1fr; }
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .amenity-card:nth-child(3) { border-right: none; }
    .rooms-grid, .locations-grid { grid-template-columns: 1fr 1fr; }
}

/* --- Tablet portrait / large phone (<=768px) --- */
@media (max-width: 768px) {
    .navbar { padding: 1rem 5%; position: relative; }

    /* Hamburger menu becomes visible, desktop nav turns into a dropdown */
    .menu-toggle { display: flex; }

    .navbar nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-cream);
        padding: 0 5%;
        border-bottom: 1px solid var(--border-color);
        gap: 0.25rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
    }

    .navbar nav a {
        margin: 0;
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .navbar nav a:last-child { border-bottom: none; }

    .navbar.nav-open nav {
        max-height: 400px;
        opacity: 1;
        padding: 1rem 5% 1.5rem 5%;
    }

    .navbar.nav-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .navbar.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
    .navbar.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-book { padding: 0.55rem 1.1rem; font-size: 0.8rem; }

    .hero { padding: 2.5rem 6% 4rem 6%; }
    .hero-text h1 { font-size: 3.2rem; }
    .hero-images { height: 320px; margin-top: 1rem; }
    .hero-actions { margin-bottom: 2.5rem; }
    .hero-stats { gap: 2rem; }

    /* Booking bar drops out of absolute positioning to avoid overlap on small screens */
    .booking-bar {
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 2rem;
        border-radius: 24px;
        padding: 1.5rem;
    }
    .booking-bar form { grid-template-columns: 1fr; gap: 1.2rem; }

    .locations-section { padding: 3rem 6% 3rem 6%; }

    .amenities-grid, .rooms-grid, .locations-grid { grid-template-columns: 1fr; }
    .amenity-card { border-right: none; border-bottom: 1px solid var(--border-color); }
    .amenity-card:last-child { border-bottom: none; }

    .form-row { grid-template-columns: 1fr; }

    .gallery-upper-control { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .premium-gallery-card { width: 300px; height: 400px; }
    .premium-gallery-card.card-wide-aspect { width: 420px; }
    .scroll-navigation-actions { display: none; } /* On mobile, native touch swipe handles it natively */

    .inquiry-section { padding: 4rem 6%; }
    .inquiry-info h2 { font-size: 2.4rem; }

    .footer-top { gap: 2.5rem; }
}

/* --- Small phones (<=480px) --- */
@media (max-width: 480px) {
    .navbar .logo { font-size: 1.7rem; }
    .navbar .logoImg { height: 38px; }
    .nav-right { gap: 0.6rem; }
    .nav-book { padding: 0.5rem 0.9rem; font-size: 0.72rem; }

    h2 { font-size: 2rem; }
    .section-desc { font-size: 0.95rem; }

    .hero-text h1 { font-size: 2.3rem; }
    .hero-description { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary { text-align: center; width: 100%; }
    .hero-stats { gap: 1.2rem; }
    .hero-images { height: 260px; }
    .sub-img-wrapper { width: 48%; left: 12px; }

    .booking-bar { padding: 1.2rem; }
    .img-badge { font-size: 0.65rem; padding: 0.5rem 0.9rem; }

    .location-card, .room-info { padding: 1.5rem; }
    .room-info h3 { font-size: 1.5rem; }
    .room-img-container { height: 200px; }

    .premium-gallery-card { width: 250px; height: 340px; }
    .premium-gallery-card.card-wide-aspect { width: 300px; }
    .card-overlay-meta { padding: 1.5rem 1.2rem; }
    .card-overlay-meta h3 { font-size: 1.3rem; }

    .inquiry-info h2 { font-size: 2rem; }
    .contact-details h3 { font-size: 1.7rem; }

    .lightbox-content-target { width: 92%; }
    #lightbox-caption { width: 92%; font-size: 1.3rem; }
    .close-lightbox-trigger { top: 1rem; right: 1.5rem; font-size: 2rem; }

    .footer-brand h2 { font-size: 1.6rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}