:root {
    /* Colors */
    --bg-white: #ffffff;
    --bg-soft: #f8f9fa;
    --accent-green: #10B981;
    --accent-green-soft: rgba(16, 185, 129, 0.1);
    --accent-green-dark: #059669;
    --text-main: #1A1C1E;
    --text-sub: #636E72;
    --glass-bg: rgba(255, 255, 255, 0.5);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shine: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    
    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-glass: 0 8px 32px 0 rgba(16, 185, 129, 0.07);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: clamp(60px, 10vw, 120px);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

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

h1, h2, h3, .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Glow */
.glow-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 10% 10%, rgba(16, 185, 129, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(16, 185, 129, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Common Components */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: var(--shadow-glass);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

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

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--glass-shine);
    pointer-events: none;
    opacity: 0.5;
}

.btn {
    padding: 12px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: var(--accent-green);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-green-dark);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    margin-top: 16px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    color: var(--text-main);
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-green) 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Floating Elements */
.trust-pill {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 100px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: floating 3s ease-in-out infinite;
}

.trust-pill .star { color: #F59E0B; }
.trust-pill .platform { font-size: 0.75rem; opacity: 0.7; font-weight: 500; }

.floating-ctas {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1001;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab .icon { font-size: 1.5rem; }
.fab:hover { transform: scale(1.1) translateY(-5px); }
.fab-wa { background: #25D366; }
.fab-call { background: var(--accent-green); }

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Navigation */
.navbar-wrapper {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 24px;
}

.navbar {
    max-width: 1000px;
    margin: 0 auto;
    padding: 12px 24px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.logo-text span {
    font-weight: 300;
    opacity: 0.7;
    color: var(--accent-green);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-green);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-sub);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    padding-top: 180px;
    padding-bottom: var(--section-padding);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 24px;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    margin-bottom: 24px;
    margin-left: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2); }
    50% { transform: scale(1.02); box-shadow: 0 4px 25px rgba(16, 185, 129, 0.4); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2); }
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-sub);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-visual {
    position: relative;
}

.image-stack {
    position: relative;
    padding: 20px;
}

.main-img {
    aspect-ratio: 4/5;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.floating-badge {
    position: absolute;
    padding: 20px 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    box-shadow: var(--shadow-glass);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.floating-badge.near-badge {
    bottom: 60px;
    left: -40px;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    opacity: 1 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.floating-badge.veg-badge {
    top: 60px;
    left: -40px;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    opacity: 1 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    animation: none !important;
}

.floating-badge.veg-badge-2 {
    bottom: 40px;
    right: -20px;
}

.floating-badge .count {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-green);
}

.floating-badge .label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Bento Grid */
.amenities-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(280px, auto));
    gap: 24px;
}

.bento-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
}

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

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

.bento-content .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.bento-content h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.bento-content p {
    color: var(--text-sub);
    font-size: 0.95rem;
}

.bento-visual {
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
}

.bento-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-visual.food-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    height: 100%;
}

.bento-visual.food-gallery img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.bento-visual.food-gallery img:hover {
    transform: scale(1.05);
}

.bento-item.large .bento-visual {
    flex: 1 1 auto;
    min-height: 250px;
    height: auto;
    overflow: hidden;
    padding: 4px;
}

/* Room Experience Section */
.room-experience-section {
    padding: var(--section-padding) 0;
    position: relative;
    /* Background inherits the site's glowing canvas */
}



/* Seasonal Food Section */
.food-section {
    padding: var(--section-padding) 0;
    background: var(--bg-soft);
}

.food-container {
    max-width: 1000px;
    margin: 0 auto;
}

.food-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.tab-btn {
    padding: 12px 32px;
    border-radius: 100px;
    border: 1px solid rgba(0,0,0,0.05);
    background: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-sub);
}

.tab-btn.active {
    background: var(--accent-green);
    color: white;
    border-color: var(--accent-green);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.menu-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.menu-content.active {
    display: block;
}

.meal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.meal-card {
    padding: 32px;
    text-align: center;
}

.meal-card .time {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.meal-card h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.meal-card p {
    font-size: 0.9rem;
    color: var(--text-sub);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Room Experience Tabs */
.room-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.room-tab-btn {
    padding: 12px 28px;
    border-radius: 100px;
    border: 1px solid rgba(0,0,0,0.05);
    background: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-sub);
}

.room-tab-btn.active {
    background: var(--accent-green);
    color: white;
    border-color: var(--accent-green);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.room-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.room-content.active {
    display: block;
}

/* Reviews Section */
.reviews-section {
    padding: var(--section-padding) 0 200px; /* Extra bottom padding for stacking area */
    background: var(--bg-soft);
    position: relative;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 100px; /* Large gap for clear separation during stack */
    max-width: 800px;
    margin: 0 auto;
}

.review-card {
    padding: 40px;
    position: sticky;
    top: 15vh; /* Card sticks here */
    width: 100%;
    transform-origin: center top;
    transition: all 0.3s ease;
}

.review-card:nth-child(1) { z-index: 1; top: 15vh; }
.review-card:nth-child(2) { z-index: 2; top: 18vh; }
.review-card:nth-child(3) { z-index: 3; top: 21vh; }

.review-card .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.review-header .stars { color: #F59E0B; font-size: 1.25rem; }
.review-header .name { font-weight: 700; color: var(--text-main); font-size: 1.1rem; }
.review-card p { font-style: italic; color: var(--text-sub); line-height: 1.8; font-size: 1.1rem; }

/* FAQ Section */
.faq-section {
    padding: var(--section-padding) 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 24px; /* Default desktop padding */
}

.faq-item {
    border-radius: 20px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-green);
    transform: translateY(-2px);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer {
    padding: 0 32px 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--accent-green);
}

/* Party Moment Feature */
.party-moment {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    overflow: hidden;
    min-height: 400px;
}

.party-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.party-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-green);
}

.party-content p {
    font-size: 1.1rem;
    color: var(--text-sub);
}

.party-visual {
    position: relative;
    height: 100%;
}

.party-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .party-moment {
        grid-template-columns: 1fr;
    }
    .party-content {
        padding: 32px;
    }
    .party-visual {
        height: 250px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: var(--section-padding) 0;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    aspect-ratio: 1;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 185, 129, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay h4 {
    color: white;
    font-size: 1.2rem;
}

/* Booking Section */
.booking-section {
    padding: var(--section-padding) 0;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    padding: 60px;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%);
}

.booking-info h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.booking-features {
    list-style: none;
    margin-top: 32px;
}

.booking-features li {
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--accent-green);
}

.booking-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.6);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    width: 100%;
    margin: 0 auto;
}

.qr-wrapper {
    text-align: center;
    background: white;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.qr-image {
    width: 180px;
    height: 180px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.scan-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-sub);
    margin: 0;
}

.contact-details {
    width: 100%;
}

.contact-details h3 {
    margin-bottom: 16px;
    font-size: 1.2rem;
    color: var(--text-main);
}

.contact-info-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-info-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-row .icon {
    font-size: 1.4rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-info-row div {
    display: flex;
    flex-direction: column;
}

.contact-info-row .label {
    font-size: 0.8rem;
    color: var(--text-sub);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.contact-info-row .value {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}

.contact-info-row .link {
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-row .link:hover {
    color: #059669;
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-white);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 16px;
    color: var(--text-sub);
    max-width: 300px;
}

.footer h4 {
    margin-bottom: 24px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer a {
    text-decoration: none;
    color: var(--text-sub);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-sub);
    font-size: 0.9rem;
}

.footer-address-card {
    display: block;
    margin-top: 16px;
    padding: 20px;
    text-decoration: none !important;
    transition: all 0.4s ease;
    width: 100%;
    max-width: 350px;
}

.footer-address-card:hover {
    border-color: var(--accent-green) !important;
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15) !important;
}

.address-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.address-content .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.address-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-main) !important;
    margin: 0;
}

/* Location Map */
.location-map-container {
    margin-top: 24px;
    width: 100%;
    max-width: 350px;
    height: 200px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.location-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
}

.map-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

/* Animations */
@keyframes revealText {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    animation: revealText 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-text-slow {
    animation: revealText 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
    opacity: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    /* Global Spacing */
    :root {
        --section-padding: 60px;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    /* Typography */
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }

    /* Grids to Single Column */
    .hero-grid, .booking-wrapper, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .navbar-wrapper {
        top: 12px;
        padding: 0 16px;
    }
    
    .navbar {
        justify-content: space-between;
        width: 100%;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        margin-left: auto;
        margin-right: 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        padding: 6px 16px;
        font-size: 0.9rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 16px;
    }
    
    .bento-item {
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }
    
    .bento-content .icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .bento-item.large, .bento-item.medium {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .bento-visual {
        height: auto;
        max-height: 180px;
        margin-top: 16px;
    }

    .booking-wrapper {
        padding: 32px 16px;
    }

    .food-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }

    /* Fix Footer for Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 0;
    }
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-address-card, .location-map-container {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand p {
        margin: 16px auto 0;
        text-align: center;
    }

    /* Adjust Floating Badges for Mobile */
    .hero-visual {
        margin-top: 32px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .image-stack {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .floating-badge {
        transform: scale(0.6);
        width: 95px !important;
        height: 95px !important;
        padding: 10px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        border-radius: 20px !important;
        aspect-ratio: 1/1 !important;
        box-sizing: border-box !important;
    }
    .floating-badge .count {
        font-size: 1.5rem !important;
        line-height: 1 !important;
        margin-bottom: 2px !important;
    }
    .floating-badge .label {
        font-size: 0.6rem !important;
        line-height: 1.1 !important;
        white-space: normal !important;
        display: block !important;
        width: 100% !important;
    }
    .floating-badge.near-badge {
        left: -35px;
        bottom: 10px;
    }
    .floating-badge.veg-badge {
        right: -35px;
        top: 10px;
        width: 115px !important;
        height: 115px !important;
    }
    .floating-badge.veg-badge .count {
        font-size: 3rem !important;
        margin-bottom: 0 !important;
    }
    .floating-badge.veg-badge .label {
        font-size: 0.9rem !important;
        font-weight: 800 !important;
    }
    
    /* Booking Centering */
    .booking-wrapper {
        text-align: center;
        padding: 40px 20px;
    }
    .booking-info h2 {
        font-size: 2.2rem;
    }
    .booking-features {
        display: inline-block;
        text-align: left;
    }
    .qr-wrapper {
        margin: 0 auto;
        display: inline-block;
    }

    .contact-info-row .value {
        word-break: break-all;
        font-size: 0.85rem !important;
    }

    .faq-accordion {
        padding: 0 20px; /* Prevent touching edges on mobile */
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .reviews-grid {
        gap: 60px; /* Slightly tighter stacking for mobile */
    }

    .review-card {
        padding: 24px;
    }

    /* Mobile CTA Adjustments */
    .trust-pill {
        top: auto;
        bottom: 30px;
        left: 20px;
        right: auto;
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .fab {
        width: 54px;
        height: 54px;
    }

    .room-tabs {
        flex-direction: column;
        gap: 12px;
    }

    .room-tab-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .glass-card {
        padding: 24px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .bento-content h3 {
        font-size: 1.3rem;
    }
    .qr-image {
        width: 150px;
        height: 150px;
    }
}
