/*
Theme Name: The Moti Plaza Luxury
Author: Jaswant
Description: A premium, fast, and luxury hotel theme for The Motiplaza Udaipur.
Version: 2.0
*/

/* CSS Variables */
:root {
    --gold: #C9A227;
    --gold-hover: #b38f22;
    --charcoal: #1a1a1a;
    --white: #ffffff;
    --light-bg: #f9f9f9;
    --text-gray: #666666;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Reset & Global - Prevent Horizontal Scrolling */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { 
    font-family: var(--body-font); 
    color: var(--charcoal); 
    background-color: var(--light-bg); 
    overflow-x: hidden !important; 
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--heading-font); color: var(--charcoal); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.section-padding { padding: 80px 5%; }
.container { max-width: 1280px; margin: 0 auto; width: 100%; padding: 0 20px; }
.text-center { text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 10px; }
.section-subtitle { color: var(--gold); font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; font-weight: 500; }

.btn-gold { 
    background-color: var(--gold); 
    color: var(--white); 
    padding: 12px 28px; 
    border-radius: var(--border-radius); 
    font-weight: 500; 
    display: inline-block; 
    border: 1px solid var(--gold); 
    cursor: pointer; 
    transition: var(--transition); 
    text-align: center;
}
.btn-gold:hover { background-color: transparent; color: var(--gold); }
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }

#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--white); z-index: 9999; display: flex; justify-content: center; align-items: center; }
.loader { border: 3px solid #eee; border-top: 3px solid var(--gold); border-radius: 50%; width: 50px; height: 50px; animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* TOP UTILITY BAR */
.top-utility-bar {
    background: var(--charcoal);
    color: #ccc;
    font-size: 0.85rem;
    padding: 8px 5%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left {
    display: flex;
    gap: 25px;
}
.top-bar-left span i, .top-bar-right span i {
    color: var(--gold);
    margin-right: 6px;
}
/* Top Bar Mobile Fix */
@media (max-width: 768px) {
    .top-utility-bar { 
        display: block !important; 
        padding: 5px 2%; 
        font-size: 0.75rem; 
        text-align: center;
    }
    .top-bar-container {
        flex-direction: column;
        gap: 5px;
    }
    .top-bar-left {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    .top-bar-right {
        display: none; /* Mobile par address hide rakha hai taaki zyada lamba na ho, Phone aur Email dikhega */
    }
}
/* PERMANENT STICKY HEADER */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
.logo { font-family: var(--heading-font); font-size: 1.8rem; font-weight: 700; color: var(--charcoal); letter-spacing: 1px; }
.logo img { max-height: 45px; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: var(--charcoal); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--gold); }
.menu-toggle { display: none; color: var(--charcoal); font-size: 1.5rem; cursor: pointer; }
.mobile-book-btn { display: none; }

/* HERO SECTION (Mobile Optimized Height) */
.hero { height: calc(100vh - 120px); min-height: 550px; position: relative; background-color: var(--charcoal); }
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.8s ease-in-out; }
.slide.active { opacity: 1; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.5); color: var(--charcoal); width: 50px; height: 50px; display: flex; justify-content: center; align-items: center; border-radius: 50%; cursor: pointer; z-index: 5; font-size: 1.5rem; transition: var(--transition); }
.slider-arrow:hover { background: var(--white); }
.prev-arrow { left: 30px; }
.next-arrow { right: 30px; }

/* BOOKING WIDGET */
.booking-container { position: relative; margin-top: -60px; z-index: 10; padding: 0 5%; }
.booking-widget { background: var(--white); border: 1px solid #eee; padding: 25px; border-radius: var(--border-radius); display: flex; gap: 15px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; justify-content: center; align-items: center; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.booking-field { display: flex; flex-direction: column; flex: 1; min-width: 130px; text-align: left; }
.booking-field label { font-size: 0.8rem; text-transform: uppercase; color: var(--text-gray); margin-bottom: 5px; font-weight: 600; }
.booking-field input, .booking-field select { padding: 12px; border-radius: 6px; border: 1px solid #ddd; font-family: var(--body-font); background: var(--light-bg); outline: none; }
.booking-widget .btn-gold { padding: 14px 30px; border: none; margin-top: 22px; }

/* TRUST SECTION */
.trust-section { background: var(--light-bg); padding: 60px 5% 30px; }
.trust-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { text-align: center; color: var(--text-gray); font-size: 0.9rem; }
.trust-item i { font-size: 2rem; color: var(--gold); margin-bottom: 10px; display: block; }
.trust-item .stars { color: var(--gold); margin-bottom: 5px; }

/* ABOUT */
.about { display: flex; align-items: center; gap: 50px; }
.about-img { flex: 1; position: relative; }
.about-img img { border-radius: var(--border-radius); box-shadow: -20px 20px 0 var(--gold); width: 100%; height: 450px; object-fit: cover; }
.about-content { flex: 1; }
.about-content p { color: var(--text-gray); margin-bottom: 20px; line-height: 1.8; }

/* ROOMS SECTION (Janak Vilas Style Cards) */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; }
.room-card { background: var(--white); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid #eee; display: flex; flex-direction: column; }
.room-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.room-img-wrapper { position: relative; height: 260px; overflow: hidden; background: #111; }
.room-slider-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.r-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.4s ease; }
.r-slide.active { opacity: 1; z-index: 1; }
.r-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.8); color: var(--charcoal); width: 32px; height: 32px; display: flex; justify-content: center; align-items: center; border-radius: 50%; cursor: pointer; z-index: 5; font-size: 0.9rem; transition: var(--transition); box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.r-arrow:hover { background: var(--gold); color: white; }
.r-prev { left: 12px; }
.r-next { right: 12px; }
.room-price { position: absolute; top: 15px; right: 15px; background: rgba(26,26,26,0.85); backdrop-filter: blur(4px); color: var(--gold); padding: 6px 14px; border-radius: 4px; font-weight: 600; font-size: 0.95rem; z-index: 10; font-family: var(--heading-font); }
.photo-count-badge { position: absolute; bottom: 15px; right: 15px; background: rgba(0,0,0,0.6); color: white; padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; z-index: 10; }
.room-details { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.room-details h3 { font-size: 1.4rem; margin-bottom: 12px; }
.room-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.room-features span { font-size: 0.8rem; background: var(--light-bg); padding: 5px 10px; border-radius: 4px; color: var(--text-gray); }
.room-features span i { color: var(--gold); margin-right: 5px; }
.room-amenities-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; font-size: 0.8rem; color: var(--text-gray); }
.room-actions { display: flex; gap: 10px; margin-top: auto; }
.room-actions button { flex: 1; padding: 12px 10px; font-size: 0.9rem; cursor: pointer; border-radius: 8px; font-weight: 500; }

/* AMENITIES */
.icon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; text-align: center; }
.icon-card { background: var(--white); padding: 30px 15px; border-radius: var(--border-radius); box-shadow: var(--shadow); transition: var(--transition); border: 1px solid transparent; }
.icon-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.icon-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 15px; }
.icon-card h4 { font-size: 1rem; }

/* RESTAURANT */
.restaurant { background: linear-gradient(rgba(26,26,26,0.85), rgba(26,26,26,0.85)), url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&w=1920&q=80') center/cover fixed; color: var(--white); text-align: center; padding: 100px 5%; }
.restaurant h2 { color: var(--white); }
.restaurant p { max-width: 700px; margin: 0 auto 30px; font-size: 1.1rem; line-height: 1.8; color: #ddd; }

/* OFFERS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.offer-card { background: var(--white); padding: 25px; border-radius: var(--border-radius); border-top: 4px solid var(--gold); box-shadow: var(--shadow); }
.offer-card h3 { margin-bottom: 10px; font-size: 1.3rem; }

/* ATTRACTIONS */
.attraction-card { position: relative; height: 320px; border-radius: var(--border-radius); overflow: hidden; }
.attraction-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.attraction-card:hover img { transform: scale(1.1); }
.attraction-info { position: absolute; bottom: 0; width: 100%; background: linear-gradient(transparent, rgba(26,26,26,0.9)); padding: 30px 20px 20px; color: var(--white); }
.attraction-info h4 { color: var(--white); margin-bottom: 5px; font-size: 1.2rem; }
.attraction-info p { font-size: 0.85rem; color: var(--gold); font-weight: 600; margin-bottom: 5px; }
.directions-link { display: inline-block; font-size: 0.8rem; color: var(--gold); font-weight: 500; transition: var(--transition); border-bottom: 1px solid transparent; margin-top: 5px; }
.directions-link:hover { color: var(--white); border-bottom: 1px solid var(--white); }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-auto-rows: 250px; gap: 15px; }
.gallery-item { border-radius: var(--border-radius); overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; cursor: pointer; }
.gallery-item:hover img { transform: scale(1.05); filter: brightness(0.8); }

/* REVIEWS */
.reviews-container { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 20px; scroll-behavior: smooth; scrollbar-width: none; }
.reviews-container::-webkit-scrollbar { display: none; }
.review-card { min-width: 280px; max-width: 320px; background: var(--white); padding: 20px; border-radius: var(--border-radius); box-shadow: var(--shadow); flex-shrink: 0; }
.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.review-header img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.review-header h4 { font-family: var(--body-font); font-size: 0.95rem; margin-bottom: 2px; }
.stars { color: var(--gold); font-size: 0.85rem; }
.review-text { color: var(--text-gray); font-style: italic; font-size: 0.9rem; line-height: 1.6; }

/* FAQ */
.faq-item { background: var(--white); margin-bottom: 10px; border-radius: 8px; box-shadow: var(--shadow); overflow: hidden; }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; font-weight: 600; color: var(--charcoal); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--text-gray); }
.faq-item.active .faq-answer { padding: 0 20px 20px; max-height: 200px; }
.faq-item.active .faq-question { color: var(--gold); }

/* INSTAGRAM FEED */
.instagram-feed { background: var(--white); padding: 60px 5%; text-align: center; border-top: 1px solid #eee; }
.insta-header { display: flex; justify-content: center; align-items: center; gap: 15px; margin-bottom: 40px; }
.insta-header i { font-size: 2.5rem; color: #E1306C; }
.insta-header h2 { font-size: 2rem; margin: 0; color: var(--charcoal); font-family: var(--heading-font); }
.insta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; max-width: 1200px; margin: 0 auto; }
.insta-item { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 8px; cursor: pointer; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.insta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: flex; justify-content: center; align-items: center; gap: 15px; color: white; opacity: 0; transition: opacity 0.3s ease; font-weight: 600; }
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-item:hover img { transform: scale(1.1); }

/* CONTACT & FOOTER */
.contact-wrapper { display: flex; gap: 40px; }
.contact-form, .contact-info { flex: 1; background: var(--white); padding: 40px; border-radius: var(--border-radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-family: var(--body-font); outline: none; }
.info-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: center; }
.info-item i { width: 40px; height: 40px; background: var(--light-bg); display: flex; justify-content: center; align-items: center; border-radius: 50%; color: var(--gold); font-size: 1.2rem; }
.map-container iframe { width: 100%; height: 300px; border: none; border-radius: var(--border-radius); margin-top: 20px; }

/* 100% FIXED FOOTER & NEWSLETTER */
.site-footer { background: var(--charcoal); color: #ccc; padding: 60px 5% 20px; font-size: 0.9rem; }
.footer-container { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; margin-bottom: 20px; }
.footer-logo-text { font-family: var(--heading-font); color: var(--gold); font-size: 1.8rem; margin-bottom: 20px; display: block; }
.site-footer h4 { color: var(--white); margin-bottom: 20px; font-family: var(--body-font); font-size: 1.1rem; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a { color: #ccc; transition: 0.3s; }
.site-footer ul li a:hover { color: var(--gold); padding-left: 5px; }
.social-icons-footer { display: flex; gap: 15px; margin-top: 20px; }
.social-icons-footer a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); display: flex; justify-content: center; align-items: center; border-radius: 50%; color: var(--white); transition: 0.3s; }
.social-icons-footer a:hover { background: var(--gold); transform: translateY(-3px); }
.footer-newsletter { display: flex; margin-top: 15px; width: 100%; max-width: 100%; }
.footer-newsletter input { flex: 1; padding: 12px 15px; border: none; outline: none; border-radius: 4px 0 0 4px; font-family: var(--body-font); min-width: 0; background: #fff; color: #1a1a1a; }
.footer-newsletter button { background: var(--gold); color: #fff; border: none; padding: 0 20px; border-radius: 0 4px 4px 0; cursor: pointer; transition: 0.3s; font-size: 1.1rem; flex-shrink: 0; }
.footer-newsletter button:hover { background: var(--gold-hover); }
.footer-bottom-bar { text-align: center; color: #888; font-size: 0.85rem; }
.contact-text-footer { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; font-size: 0.95rem; }
.contact-text-footer i { color: var(--gold); font-size: 1.1rem; margin-top: 3px; }

/* FLOATING BUTTONS & MODALS */
.floating-btns { position: fixed; bottom: 20px; left: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 999; }
.float-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--white); font-size: 1.5rem; box-shadow: var(--shadow); transition: transform 0.3s; }
.float-btn:hover { transform: scale(1.1); }
.btn-wa { background: #25D366; } .btn-call { background: var(--gold); } .btn-map { background: #4285F4; }
.btn-top { position: fixed; bottom: 20px; right: 20px; background: var(--charcoal); display: none; width: 50px; height: 50px; justify-content: center; align-items: center; color: white; border-radius: 50%; z-index: 999; cursor: pointer; box-shadow: var(--shadow); }

.counters { background: var(--gold); color: var(--white); padding: 40px 5%; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.counter-box { text-align: center; }
.counter-box h3 { font-size: 2.5rem; color: var(--white); margin-bottom: 5px; font-family: var(--body-font); }
.counter-box p { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

/* MODALS */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.75); z-index: 2000; display: flex; justify-content: center; align-items: center; backdrop-filter: blur(4px); }
.booking-modal { background: white; padding: 30px; border-radius: 12px; width: 90%; max-width: 500px; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 1.5rem; cursor: pointer; color: var(--text-gray); z-index: 10; }

/* ROOM DETAILS POPUP STYLES (Janak Vilas Style) */
.room-detail-modal-box { max-width: 700px !important; padding: 35px !important; }
.modal-room-header { text-align: center; margin-bottom: 20px; }
.room-modal-subtitle { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; font-weight: 600; text-transform: uppercase; }
.modal-room-header h2 { font-size: 2rem; margin-top: 5px; }
.modal-img-slider { position: relative; width: 100%; height: 350px; border-radius: 8px; overflow: hidden; background: #000; margin-bottom: 25px; }
.modal-slide { position: absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; opacity: 0; transition: opacity 0.4s ease; }
.modal-slide.active { opacity: 1; }
.modal-slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.8); color: #111; width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; font-size: 1rem; transition: 0.3s; }
.modal-slider-arrow:hover { background: var(--gold); color: #fff; }
.modal-prev { left: 15px; } .modal-next { right: 15px; }

.modal-specs-grid { display: flex; justify-content: space-between; gap: 15px; background: var(--light-bg); padding: 15px; border-radius: 8px; border: 1px solid #eee; margin-bottom: 20px; flex-wrap: wrap; }
.spec-box { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 140px; }
.spec-box i { font-size: 1.5rem; color: var(--gold); }
.spec-box small { display: block; font-size: 0.7rem; color: #888; font-weight: 600; letter-spacing: 1px; }
.spec-box span { font-size: 0.9rem; font-weight: 600; color: var(--charcoal); }

.modal-amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; font-size: 0.9icon; color: var(--text-gray); }
.modal-amenities-grid span { display: flex; align-items: center; gap: 8px; }

.modal-footer-action { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; border-top: 1px solid #eee; padding-top: 20px; }

/* CHATBOT */
.chatbot-btn { position: fixed; bottom: 85px; right: 20px; width: 55px; height: 55px; background: var(--gold); color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.6rem; cursor: pointer; box-shadow: 0 10px 20px rgba(201,162,39,0.4); z-index: 1000; transition: transform 0.3s; }
.chatbot-btn:hover { transform: scale(1.1); }

/* RESPONSIVE & MOBILE FIXES (NO RIGHT-LEFT DRAGGING) */
@media (max-width: 991px) {
    .menu-toggle { display: block; }
    .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 25px; gap: 15px; text-align: center; box-shadow: var(--shadow); display: none; border-top: 1px solid #eee; }
    .nav-links.active { display: flex; }
    .mobile-book-btn { display: inline-block !important; width: 100%; margin-top: 10px; }
    .header-right-desktop { display: none; }
    .about, .contact-wrapper { flex-direction: column; }
    .slider-arrow { display: none; }
}

/* =========================================
   MOBILE FIXES (FOR WIDGET OVERLAP & INPUTS)
========================================= */
@media (max-width: 768px) {
    .section-padding { padding: 40px 4%; }
    .section-title { font-size: 1.8rem; }
    
    /* Hero mobile sizing */
    .hero { height: 60vh; min-height: 400px; }
    
    /* BOOKING WIDGET FIX (No Overlap) */
    .booking-container { 
        margin-top: -30px; 
        padding: 0 15px; 
        position: relative; 
        z-index: 20; 
        margin-bottom: 25px; /* Push Trust Badges Down */
    }
    .booking-widget { 
        flex-direction: column; 
        padding: 20px; 
        gap: 12px; 
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15); 
    }
    .booking-field { width: 100%; min-width: 100%; }
    
    /* Inputs Fix for Mobile browsers */
   /* Inputs Fix for Mobile browsers */
    .booking-field input, .booking-field select { 
        width: 100% !important; 
        min-width: 100% !important;
        box-sizing: border-box !important;
        height: 48px; 
        padding: 10px 15px; 
        background-color: #fff; 
        border: 1px solid #ccc;
        border-radius: 8px;
    }
    .booking-widget .btn-gold { 
        width: 100%; 
        margin-top: 5px; 
        height: 50px; 
        font-size: 1.1rem;
    }
    
    /* Push Trust Section safely below Widget */
    .trust-section { padding-top: 50px; }

    /* Single Column Grid for Mobile */
    .rooms-grid, .cards-grid, .gallery-grid, .trust-grid, .icon-grid, .footer-container { 
        grid-template-columns: 1fr !important; 
        gap: 20px; 
    }
    
    .room-img-wrapper { height: 230px; }
    .about-img img { height: 280px; }
    
    /* Footer newsletter mobile fix */
    .footer-newsletter { flex-direction: column; gap: 10px; }
    .footer-newsletter input { border-radius: 4px; padding: 12px; width: 100%; }
    .footer-newsletter button { border-radius: 4px; padding: 12px; width: 100%; }

    /* Modal size fix for mobile */
    .room-detail-modal-box { padding: 20px !important; width: 95% !important; }
    .modal-img-slider { height: 240px; }
    .modal-specs-grid { flex-direction: column; gap: 10px; }
    .spec-box { width: 100%; }
    .modal-footer-action { flex-direction: column; gap: 15px; align-items: stretch; text-align: center; }

    /* Floating buttons placement (Keep clear of widget) */
    .btn-top { right: 15px; bottom: 85px; width: 45px; height: 45px; font-size: 1.2rem; }
    .chatbot-btn { bottom: 140px; right: 15px; width: 48px; height: 48px; font-size: 1.4rem; }
	/* Mobile Amenities 2-Column Fix */
    .icon-grid {
        grid-template-columns: 1fr 1fr !important; /* Mobile par 2 box ek line mein */
        gap: 15px !important;
    }
    .icon-card {
        padding: 20px 10px !important; /* Mobile par padding thodi kam ki hai */
    }
    .icon-card i {
        font-size: 1.8rem !important; /* Icon thoda chota kiya hai */
        margin-bottom: 10px !important;
    }
    .icon-card h4 {
        font-size: 0.85rem !important; /* Text bhi mobile ke hisaab se adjust kiya hai */
    }
}