@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&display=swap');

:root {
    --bg-base: #F8FAFC;       /* Light, crisp snowy white */
    --bg-surface: #FFFFFF;    /* Pure white */
    --bg-elevated: #F1F5F9;   /* Slight contrast for sections */
    --text-primary: #0F172A;  /* Deep Slate for high readability */
    --text-secondary: #475569; /* Medium Slate */
    --accent-gold: #B48E2D;   /* Refined Gold for light background */
    --accent-gold-hover: #8A6B1C;
    --accent-whatsapp: #25D366;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
}

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

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

/* Utilities */
.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 8rem 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

.section-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--accent-gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--accent-gold);
    transition: var(--transition-fast);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    color: #ffffff;
}

.btn-whatsapp {
    background-color: var(--accent-whatsapp);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: #1EBE5D;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* WhatsApp Floating Bubble */
.whatsapp-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-whatsapp);
    color: #ffffff;
    border-radius: 50px;
    padding: 12px 24px 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition-fast);
    animation: bounce 2s infinite;
}

.whatsapp-bubble i {
    font-size: 1.5rem;
}

.whatsapp-bubble:hover {
    background-color: #1ebe57;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 25px 0;
    transition: var(--transition-fast);
}

header.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

/* Text colors when header is at the top (over dark images) vs scrolled */
header .logo-text h1, 
header .logo-text p,
header .nav-links a {
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

header.scrolled .logo-text h1 {
    color: var(--text-primary);
    text-shadow: none;
}
header.scrolled .logo-text p {
    color: var(--accent-gold);
    text-shadow: none;
}
header.scrolled .nav-links a {
    color: var(--text-secondary);
    text-shadow: none;
}
header.scrolled .nav-links a:hover, 
header.scrolled .nav-links a.active {
    color: var(--text-primary);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 65px;
    background-color: white; /* In case the logo has transparency */
}

.logo-text h1 {
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.logo-text p {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: var(--font-sans);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 5px;
}

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

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

.has-dropdown > a > i {
    padding: 10px; /* Make the arrow a larger touch target */
    margin-right: -10px; /* Offset the padding visually */
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-surface);
    min-width: 200px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    list-style: none;
    z-index: 200;
    margin-top: 10px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0.5px;
    color: var(--text-secondary) !important;
    text-shadow: none !important;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.dropdown-menu li a::after {
    display: none; /* Remove underline effect from dropdown items */
}

.dropdown-menu li a:hover {
    background: var(--bg-elevated);
    color: var(--accent-gold) !important;
}

.dropdown-menu li a i {
    color: var(--accent-gold);
    width: 16px;
    text-align: center;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition-fast);
    line-height: 1;
}

.mobile-menu-btn i {
    transition: transform 0.3s ease;
    display: block;
}

header.scrolled .mobile-menu-btn {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s infinite alternate;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: -1;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.1rem;
    color: #f1f5f9;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-content .btn-primary {
    color: #ffffff;
    border-color: #ffffff;
}
.hero-content .btn-primary:hover {
    color: var(--text-primary);
    border-color: var(--accent-gold);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-images-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden; /* Prevent child images from bleeding outside */
}

.about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 70%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 10px solid var(--bg-base);
}

.about-content h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Immersive Room Cards */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.room-card {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition-fast);
}

.room-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.room-slider-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.room-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.room-slides img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.room-slider-container:hover .slider-btn,
.product-gallery:hover .slider-btn {
    opacity: 1;
}

/* Room Category Badge */
.room-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,0.92);
    color: var(--text-primary);
    font-size: 0.7rem;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
    backdrop-filter: blur(4px);
}

.room-badge--gold {
    background: var(--accent-gold);
    color: #fff;
}

/* Swipe hint — hidden on desktop, visible only on mobile */
.swipe-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    letter-spacing: 1px;
    animation: swipe-pulse 1.8s ease-in-out infinite;
}

@keyframes swipe-pulse {
    0%, 100% { opacity: 0.6; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(4px); }
}

.slider-btn:hover {
    background: rgba(0,0,0,0.7);
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.room-overlay {
    position: relative;
    background: transparent;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    text-align: center;
    flex: 1;
}

.room-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-info h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    transition: var(--transition-slow);
}

.room-price {
    font-family: var(--font-sans);
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.room-card .room-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
}

.room-card .room-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-card .room-features li i {
    color: var(--accent-gold);
}

.card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    width: 100%;
}

.room-card .btn {
    width: 100%;
    padding: 14px 20px;
    border: none;
    background-color: var(--text-primary);
    color: #ffffff;
    transition: var(--transition-fast);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.room-card .btn:hover {
    background-color: var(--accent-gold);
    color: #ffffff;
}

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

.btn-outline:hover {
    background-color: var(--text-primary);
    color: #ffffff;
    border-color: var(--text-primary);
}



/* Travel Packages Banner */
.packages-banner {
    background-color: var(--bg-surface);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border-radius: 16px;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.packages-banner::after {
    content: '';
    flex: 0 0 45%;
    background-image: url('photos/frontview_day.jpg');
    background-size: cover;
    background-position: center;
}

.packages-content {
    flex: 1;
    padding: 5rem;
    position: relative;
    z-index: 1;
}

/* Inner Pages Header */
.page-hero {
    height: 60vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: -1;
}

.page-hero h1 {
    font-size: 4.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

/* Room Single Page */
.room-single-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 4rem;
}

.product-main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: opacity 0.3s ease;
}

.product-thumbnails {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.product-thumbnails::-webkit-scrollbar {
    display: none;
}

.product-thumb {
    flex: 0 0 120px;
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-thumb:hover {
    opacity: 1;
}

.product-thumb.active {
    opacity: 1;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(180, 142, 45, 0.3);
}

.content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-block p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 3rem;
}

.amenities-grid li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-primary);
    font-size: 1rem;
    padding: 15px;
    background: var(--bg-surface);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.amenities-grid li i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.booking-widget {
    background-color: var(--bg-surface);
    padding: 3rem;
    position: sticky;
    top: 120px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.booking-widget h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.booking-widget .price {
    font-size: 3rem;
    color: var(--accent-gold);
    font-family: var(--font-serif);
    margin-bottom: 2rem;
}

.booking-widget .price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-family: var(--font-sans);
}

/* Contact Form Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    background-color: var(--bg-surface);
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.premium-form .form-group {
    margin-bottom: 20px;
}

.premium-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.premium-form input,
.premium-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.premium-form input:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(180, 142, 45, 0.1);
}

.premium-form textarea {
    resize: vertical;
}

/* Footer */
footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 6rem 0 2rem;
    background-color: var(--bg-surface);
}

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

.footer-brand img {
    height: 75px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.contact-list li {
    display: flex;
    gap: 15px;
    color: var(--text-secondary);
    align-items: flex-start;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid, .room-single-grid {
        grid-template-columns: 1fr;
    }
    .about-images-wrapper {
        height: 500px;
        order: -1;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-surface);
        flex-direction: column;
        padding: 2rem;
        gap: 20px;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-fast);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .nav-links a {
        color: var(--text-primary) !important;
        text-shadow: none !important;
    }
    /* Mobile dropdown: show inline, toggle via JS */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-elevated);
        border-radius: 8px;
        margin-top: 8px;
        padding: 8px 0;
        display: none; /* Hidden by default, toggled via JS */
        opacity: 1;
        visibility: visible;
    }
    .has-dropdown:hover .dropdown-menu {
        display: none; /* Disable hover on mobile */
        margin-top: 8px;
    }
    .has-dropdown .dropdown-menu.open {
        display: block !important; /* Force display block to override mobile hover */
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }
    .mobile-menu-btn {
        display: block;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .rooms-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 1.2rem;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .rooms-grid::-webkit-scrollbar {
        display: none; /* hide scrollbar on mobile */
    }
    .room-card {
        flex: 0 0 92vw; /* one card fills full screen width */
        max-width: 92vw;
        scroll-snap-align: center;
    }
    .room-slider-container {
        height: 220px;
    }
    .swipe-hint {
        display: flex; /* Show only on mobile */
    }
    .whatsapp-bubble {
        bottom: 20px;
        right: 20px;
        padding: 10px 18px 10px 14px;
        font-size: 0.9rem;
    }
    .whatsapp-bubble i {
        font-size: 1.3rem;
    }
    .packages-banner {
        flex-direction: column;
    }
    .packages-banner::after {
        height: 300px;
        flex: none;
        width: 100%;
    }
    .packages-content {
        padding: 3rem 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }
    .premium-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .product-main-image {
        height: 350px;
    }
    .product-thumb {
        flex: 0 0 80px;
        width: 80px;
        height: 60px;
    }
    .page-hero h1 {
        font-size: 3rem !important;
    }
    .logo img {
        height: 40px;
    }
    .logo-text h1 {
        font-size: 0.95rem;
    }
    .logo-text p {
        font-size: 0.55rem;
        letter-spacing: 2px;
    }
    .hero-content h2 {
        font-size: 2.5rem; /* Smaller hero title */
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .section-subtitle {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 1rem !important;
    }
    section {
        padding: 4rem 0;
    }
    .hero {
        padding-top: 80px; /* Prevent overlap with header */
        height: 100vh;
        min-height: 600px; /* Ensure content fits */
        overflow: hidden;
    }
    .hero-bg {
        background-attachment: scroll; /* Fixes massive zoom bug on iOS */
    }
    .about-images-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        order: 0; /* Let text come first */
    }
    .about-img-1, .about-img-2 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 300px;
        border: none;
        border-radius: 8px;
    }
    .about-grid {
        gap: 3rem;
    }
    .room-card .btn {
        padding: 12px 10px;
        font-size: 0.65rem;
    }
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}
