* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; }

/* Header Styling */
.main-header {
    background: #FFF8DC; 
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 5%; border-bottom: 3px solid #D4AF37;
    position: sticky; top: 0; z-index: 1000;
}
.site-logo { height: 60px; mix-blend-mode: multiply; }
.nav-links ul { display: flex; list-style: none; gap: 20px; }
.nav-links a { text-decoration: none; color: #4a0404; font-weight: 600; font-size: 13px; }

.header-right { display: flex; align-items: center; gap: 10px; }
.account-btn { 
    background: #4a0404; color: #D4AF37; padding: 8px 12px; 
    border-radius: 5px; text-decoration: none; display: flex; align-items: center; gap: 5px; font-weight: bold; font-size: 12px;
}
.user-svg { width: 16px; height: 16px; stroke: #D4AF37; }

.mobile-toggle { display: none; flex-direction: column; gap: 4px; cursor: pointer; }
.mobile-toggle span { width: 25px; height: 3px; background: #4a0404; }

/* Hero Section - Image & Overlay */
.hero-section {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('ahobilam-main-bg.jpg') no-repeat center center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center; color: white; padding: 20px;
}
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 3.2rem; margin-bottom: 15px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero-content p { max-width: 700px; margin: 0 auto 30px; line-height: 1.6; font-size: 1.1rem; }

/* Buttons in Hero Section */
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-gold { 
    background: #D4AF37; color: #4a0404; border: none; padding: 15px 35px; 
    font-weight: bold; border-radius: 5px; cursor: pointer; font-size: 16px; 
}
.btn-maroon { 
    background: #4a0404; color: #D4AF37; padding: 15px 35px; 
    border: 2px solid #D4AF37; border-radius: 5px; text-decoration: none; font-weight: bold; font-size: 16px;
}

/* Modal Styling */
.modal { 
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.8); z-index: 2000; justify-content: center; align-items: center; 
}
.modal-content { 
    background: #FFF8DC; padding: 30px; width: 90%; max-width: 500px; border-radius: 12px; position: relative; border: 3px solid #D4AF37;
}
.modal-title { color: #4a0404; margin-bottom: 20px; border-bottom: 2px solid #D4AF37; padding-bottom: 10px; }
.close-btn { position: absolute; right: 20px; top: 15px; font-size: 28px; cursor: pointer; color: #4a0404; }

.input-group { margin-bottom: 15px; text-align: left; }
.input-group label { display: block; color: #4a0404; font-weight: bold; font-size: 13px; margin-bottom: 5px; }
.input-group input { width: 100%; padding: 10px; border: 1px solid #D4AF37; border-radius: 5px; outline: none; }
.form-row { display: flex; gap: 10px; }

.booking-submit-btn { 
    width: 100%; background: #4a0404; color: #D4AF37; padding: 12px; border: none; 
    font-weight: bold; border-radius: 5px; cursor: pointer; margin-top: 10px; 
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #FFF8DC; padding: 20px; border-bottom: 2px solid #D4AF37; }
    .nav-links.active { display: block; }
    .nav-links ul { flex-direction: column; text-align: center; }
    .mobile-toggle { display: flex; }
    .btn-text { display: none; }
    .account-btn { padding: 10px; border-radius: 50%; }
    .hero-content h1 { font-size: 2rem; }
}
/* ... ikkada mee patha code motham untundhi ... */

/* Mobile Fix: Ee code ni file chivarana paste cheyandi */
@media (max-width: 992px) {
    .form-row {
        flex-direction: column !important; /* Force ga vertical ga marchadaniki */
        gap: 15px;
    }

    .input-group {
        width: 100% !important;
    }

    /* Check-in, Check-out boxes screen motham span avvadaniki */
    .input-group input {
        width: 100%;
        box-sizing: border-box; /* Padding valla box bayataki pokunda chusthundhi */
    }

    .modal-content {
        width: 90%;
        padding: 20px;
        margin: auto;
    }
}
/* Hotels Section Styling */
.hotels-container {
    padding: 60px 5%;
    background-color: #fffaf0; /* Light cream background */
    text-align: center;
}

.section-header {
    margin-bottom: 40px;
}

.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #4a0404; /* Maroon */
    margin-bottom: 10px;
}

.sub-heading {
    color: #666;
    font-size: 1.1rem;
}

/* 2 Rows & 3 Columns Grid */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hotel Card */
.hotel-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #D4AF37; /* Gold border */
    padding-bottom: 15px;
}

.hotel-card:hover {
    transform: translateY(-10px); /* Hover chesinappudu card paiki vasthundi */
}

.hotel-link {
    text-decoration: none;
    display: block;
}

.hotel-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hotel-name {
    font-size: 1.1rem;
    color: #4a0404;
    padding: 15px 10px;
    height: 60px; /* Peru okela kanipinchadaniki */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Button */
.hotel-btn {
    background: #D4AF37; /* Gold */
    color: #4a0404; /* Maroon */
    border: none;
    padding: 10px 25px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.hotel-btn:hover {
    background: #4a0404;
    color: #D4AF37;
}

/* View More Button Styling */
.view-more-area {
    margin-top: 50px;
}

.view-more-btn {
    background: #4a0404;
    color: #D4AF37;
    padding: 12px 40px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    transition: 0.3s;
}

.view-more-btn:hover {
    background: #D4AF37;
    color: #4a0404;
}

/* Mobile Responsive - 1 Column only */
@media (max-width: 768px) {
    .hotels-grid {
        grid-template-columns: repeat(1, 1fr); /* Mobile lo okkate line ga vasthayi */
    }
    .main-heading {
        font-size: 1.8rem;
    }
}
/* Premium History Section */
.premium-history-section {
    display: flex;
    flex-direction: column; /* Mobile lo image kindhaku vasthundi */
    background-color: #ffffff;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    gap: 30px;
}

.history-content {
    flex: 1.2;
    padding: 10px;
}

.history-content h2 {
    color: #4a0404; /* Maroon to match your theme */
    font-size: 2rem;
    margin-bottom: 20px;
    border-left: 6px solid #D4AF37; /* Gold border */
    padding-left: 15px;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.history-sub-title {
    font-size: 1.3rem;
    color: #666;
    font-weight: normal;
    display: block;
    margin-top: 5px;
}

.history-content p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
}

.gold-text {
    color: #B8860B;
    font-weight: bold;
}

/* Image Visual */
.history-visual {
    flex: 0.8;
    text-align: center;
}

.history-visual img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 2px solid #D4AF37;
}

/* Premium Gold Button */
.btn-wrap {
    margin-top: 10px;
}

.gold-btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: #D4AF37;
    color: #4a0404 !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    transition: 0.3s ease;
    border: 1px solid #4a0404;
}

.gold-btn:hover {
    background-color: #4a0404;
    color: #D4AF37 !important;
}

/* DESKTOP VIEW (Screens wider than 768px) */
@media (min-width: 769px) {
    .premium-history-section {
        flex-direction: row; /* Side by side for PC */
        align-items: center;
        padding: 60px 50px;
    }
    .history-content {
        padding-right: 50px;
    }
}

/* MOBILE FIX */
@media (max-width: 480px) {
    .history-content h2 {
        font-size: 1.7rem;
    }
    .gold-btn {
        width: 100%;
        text-align: center;
    }
}
/* Ritual Container Styles */
.ritual-container {
    background: #ffffff;
    padding: 60px 5%;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.sub-gold-title {
    font-size: 1.6rem;
    color: #D4AF37;
    font-family: 'Poppins', sans-serif;
}

/* Next Swathi Alert Box */
.next-swathi-alert {
    background: #4a0404; /* Maroon */
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 50px;
    font-size: 1.2rem;
    border: 2px solid #D4AF37;
}

/* Section Layout Logic */
.ritual-block {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.ritual-block.reverse { 
    flex-direction: row-reverse; 
}

.ritual-img-frame {
    flex: 1;
    min-width: 300px;
}

.ritual-img-frame img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 8px 8px 25px rgba(0,0,0,0.15);
    border: 3px solid #D4AF37;
}

.ritual-info {
    flex: 1.2;
    min-width: 320px;
}

.ritual-info h3 {
    color: #4a0404;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.ritual-info p {
    line-height: 1.7;
    color: #333;
    font-size: 1.05rem;
}

/* Details Grid Styling */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.detail-item {
    background: #fff8e1;
    padding: 12px;
    border-radius: 8px;
    border-left: 5px solid #D4AF37;
    transition: 0.3s;
}

.detail-item:hover {
    background: #fdf2d0;
}

.detail-item strong { 
    display: block; 
    color: #4a0404; 
    font-size: 0.85rem; 
    text-transform: uppercase;
}

.detail-item span { 
    font-weight: bold; 
    color: #333; 
    font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ritual-block, .ritual-block.reverse { 
        flex-direction: column; 
    }
    .details-grid { 
        grid-template-columns: 1fr; 
    }
    .ritual-container {
        padding: 30px 15px;
    }
}
/* Ugra Section specific tweaks */
.ugra-section {
    background: #fdfaf1; /* Devotional light cream background */
    padding: 60px 10%;
    border-top: 2px solid #D4AF37;
}

.ugra-section .ritual-info h3 {
    color: #4a0404; /* Deep Maroon */
    position: relative;
    padding-bottom: 10px;
}

.ugra-section .ritual-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #D4AF37;
}

/* Enhancing the images for trek feel */
.ugra-section .ritual-img-frame img {
    filter: brightness(0.9);
    transition: 0.5s;
}

.ugra-section .ritual-img-frame img:hover {
    filter: brightness(1);
    transform: translateY(-10px);
}
/* Events Section Styles */
.events-section {
    padding: 60px 5%;
    background-color: #4a0404; /* Maroon Background */
    color: white;
}

.events-section .main-heading { color: #D4AF37; border-bottom-color: #D4AF37; }
.events-section .sub-heading { color: #f0f0f0; margin-bottom: 30px; text-align: center;}

/* Horizontal Scroll Container */
.events-scroll-container {
    display: flex;
    overflow-x: auto; /* Enable horizontal scroll */
    gap: 25px;
    padding: 20px 0 40px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin; /* Firefox scrollbar */
    scrollbar-color: #D4AF37 #4a0404;
}

/* Hide scrollbar for Chrome/Safari if needed, but keeping it is better for UX */
.events-scroll-container::-webkit-scrollbar { height: 8px; }
.events-scroll-container::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 10px; }

/* Event Card - Split Layout (Image Left, Info Right) */
.event-card {
    flex: 0 0 600px; /* Fixed width for laptop */
    background: #ffffff;
    color: #333;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.event-img {
    flex: 1;
    position: relative;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #D4AF37;
    color: #4a0404;
    padding: 5px 12px;
    font-weight: bold;
    font-size: 12px;
    border-radius: 20px;
}

.event-info {
    flex: 1.2;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date {
    color: #B8860B;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.event-info h3 {
    margin: 10px 0;
    font-family: 'Playfair Display', serif;
    color: #4a0404;
}

.event-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.read-more {
    margin-top: 15px;
    text-decoration: none;
    color: #4a0404;
    font-weight: bold;
    border-bottom: 2px solid #D4AF37;
    align-self: flex-start;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .event-card {
        /* పాత కోడ్: flex: 0 0 300px; అని ఉంది కదా దాన్ని తీసేయండి */
        
        /* కొత్త కోడ్: */
        flex: 0 0 85%;       /* స్క్రీన్ వెడల్పులో 85% తీసుకుంటుంది */
        max-width: 380px;    /* మరీ పెద్దగా సాగకుండా చూస్తుంది */
        flex-direction: column; /* ఇమేజ్ పైన, మేటర్ కింద వస్తుంది */
        margin-right: 15px;  /* పక్కన ఉన్న కార్డుకి కొంచెం గ్యాప్ ఇస్తుంది */
        scroll-snap-align: center; /* స్క్రోల్ ఆపినప్పుడు కరెక్ట్ గా మధ్యలో ఆగుతుంది */
    }

    .event-img { 
        height: 220px; /* ఇమేజ్ హైట్ కొంచెం పెంచితే అందంగా ఉంటుంది */
    }
}
/* FAQ Section Premium Styling */
.faq-section {
    padding: 60px 5%;
    background-color: #fffaf0;
}

.faq-container {
    max-width: 850px;
    margin: 30px auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #D4AF37;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Button style ni motham marchi, normal button look remove cheyadam */
.faq-question {
    width: 100%;
    padding: 20px;
    background: #fff;
    color: #4a0404;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    transition: 0.3s;
}

.faq-question:hover {
    background: #fff8e1;
}

.faq-question.active {
    background: #4a0404;
    color: #D4AF37;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #fffdf5;
}

.faq-answer p {
    padding: 20px;
    color: #333;
    line-height: 1.7;
    border-top: 1px solid #eee;
    margin: 0;
}
/* Modal Row Fix */
.form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Space lekapothe box kindhaku vasthundhi */
}

.form-row .input-group {
    flex: 1;
    min-width: 200px; /* Mobile lo automatic ga okadhani kindha okati ravadaniki */
}

/* Date/Time Input field look */
input[type="datetime-local"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #D4AF37;
    border-radius: 5px;
    font-family: inherit;
    background: white;
}
@media (max-width: 600px) {
    .form-row .input-group {
        flex: 1 1 100%; /* Mobile lo full width */
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 15px;
    }

    .modal-content {
        width: 95%;
        padding: 15px;
    }
}
/* FAQ Section Enhancement */
.faq-section {
    padding: 80px 20px;
    background-color: #fffaf0; /* Light cream background for contrast */
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 12px; /* Slightly more rounded */
    border: 1px solid #D4AF37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1); /* Subtle gold shadow */
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: #ffffff;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 700;
    color: #4a0404;
    text-align: left;
    transition: 0.3s;
}

/* Question open ayinappudu maroon background and gold text */
.faq-question.active {
    background: #4a0404;
    color: #D4AF37;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fffdf5;
}

.answer-content {
    padding: 25px;
    color: #333;
    line-height: 1.8;
    font-size: 1.05rem;
    border-top: 1px solid #eee;
}

.arrow {
    font-size: 1.4rem;
    transition: 0.3s;
}
.main-footer {
    background-color: #4a0404;
    color: #ffffff;
    padding: 60px 5% 20px;
    border-top: 5px solid #D4AF37;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    max-height: 70px;
    margin-bottom: 20px;
}

.footer-box h3 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid #D4AF37;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 8px;
}

.footer-box ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #D4AF37;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-box h3 {
        display: block;
        width: fit-content;
        margin: 0 auto 15px;
    }
}
/* --- Footer Email Color Fix --- */

/* Gmail link ni Gold color loki marchadam */
.footer-box a[href^="mailto:"] {
    color: #D4AF37 !important; /* Gold Color */
    text-decoration: none !important; /* Underline remove chesthundhi */
    font-weight: bold;
    font-size: 1rem;
}

/* Mouse meedhaku vellinappudu White color */
.footer-box a[href^="mailto:"]:hover {
    color: #ffffff !important;
}

/* Logo Size Control (Okavela peddaga vasthe idhi control chesthundhi) */
.footer-logo {
    max-width: 150px; /* Logo size */
    height: auto;
    display: block;
    margin-bottom: 15px;
}
/* --- Hotels List Page Styles (YatraDham Style) --- */

.hotel-list-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 15px;
}

/* ఒక్కో హోటల్ బాక్స్ */
.hotel-card-row {
    display: flex; /* పక్కపక్కన రావడానికి */
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.hotel-card-row:hover {
    transform: translateY(-5px); /* మౌస్ పెడితే పైకి లేస్తుంది */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ఫోటో సెక్షన్ */
.hotel-img-frame {
    width: 35%;
    position: relative;
}

.hotel-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 240px;
}

/* వివరాల సెక్షన్ */
.hotel-info-frame {
    width: 65%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hotel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f; /* ఎరుపు రంగు హెడ్డింగ్ */
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.hotel-location {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* సౌకర్యాలు (Amenities) */
.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #444;
}

.amenity-item {
    background: #f1f1f1;
    padding: 5px 10px;
    border-radius: 4px;
}

/* టైమింగ్స్ */
.check-time {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
    border-top: 1px dashed #ccc;
    padding-top: 10px;
}

/* బటన్ డిజైన్ */
.select-room-btn {
    background-color: #ff9800;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    align-self: flex-start; /* ఎడమ వైపు ఉండటానికి */
    transition: background 0.3s;
}

.select-room-btn:hover {
    background-color: #e65100;
}

/* మొబైల్ ఫోన్ కోసం */
@media (max-width: 768px) {
    .hotel-card-row {
        flex-direction: column; /* మొబైల్ లో ఒకదాని కింద ఒకటి */
    }
    .hotel-img-frame, .hotel-info-frame {
        width: 100%;
    }
    .hotel-img-frame img {
        height: 200px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff9e6; /* లేత క్రీమ్ రంగు */
}

 /* --- HOTEL PAGE FAQ STYLES (Unique Names) --- */

.hotel-faq-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hotel-faq-main-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    border-bottom: 3px solid #ff9800;
    display: inline-block;
    padding-bottom: 5px;
}

/* బాక్స్ డిజైన్ - కొత్త పేరుతో */
.hotel-faq-item {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
    overflow: hidden;
}

/* ప్రశ్న డిజైన్ */
.hotel-faq-question {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px;
    background-color: #f9f9f9;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.hotel-faq-question:hover {
    background-color: #f1f1f1;
}

/* సమాధానం */
.hotel-faq-answer {
    display: none; /* కనిపించదు */
    padding: 20px;
    color: #555;
    line-height: 1.6;
    background-color: #fff;
    border-top: 1px solid #eee;
    width: 100%;
}

/* ఓపెన్ అయినప్పుడు */
.hotel-faq-item.active .hotel-faq-answer {
    display: block !important;
    position: relative !important;
}

.hotel-faq-item.active .hotel-faq-question {
    background-color: #ffe0b2;
    color: #d32f2f;
}

/* సింబల్స్ */
.hotel-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #ff9800;
}

.hotel-faq-item.active .hotel-faq-question::after {
    content: '-';
}

/* --- FINAL FOOTER (RED COLOR MATCH) --- */

/* 1. ఫుటర్ బ్యాక్‌గ్రౌండ్ - ముదురు ఎరుపు రంగు (Maroon) */
footer.main-footer {
    background-color: #3d0505 !important; /* ఇది మీ ఫోటోలోని ఎరుపు రంగు */
    color: white !important;
    padding: 60px 0 20px;
}

/* 2. లింకులు అన్నీ వైట్ కలర్ (White) */
footer.main-footer a {
    color: #ffffff !important; 
    text-decoration: none !important;
    font-size: 16px;
}

/* 3. లిస్ట్ లో చుక్కలు తీసేయడం */
footer.main-footer ul {
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

footer.main-footer ul li {
    margin-bottom: 10px;
}

/* 4. హెడ్డింగ్స్ గోల్డ్/ఆరెంజ్ కలర్ */
footer.main-footer h3 {
    color: #ff9800 !important; /* Gold/Orange */
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid #ff9800;
    display: inline-block;
}

/* 5. మౌస్ పెట్టినప్పుడు */
footer.main-footer a:hover {
    color: #ff9800 !important;
    padding-left: 5px;
    transition: all 0.3s ease;
}

/* 6. గ్రిడ్ లేఅవుట్ (బాక్సులు పక్కపక్కన రావడానికి) */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- CONTAINER ALIGNMENT --- */
.container { 
    max-width: 1000px; /* వెడల్పు తగ్గించాం, సెంటర్లో బాగుంటుంది */
    margin: 0 auto; 
    padding: 0 20px; 
}
.centered-container { text-align: center; } /* టైటిల్ సెంటర్ చేయడానికి */

/* --- HOTEL TITLE SECTION --- */
.hotel-header-section {
    background-color: #fff3e0;
    padding: 20px 0; /* హైట్ తగ్గించాం */
    border-bottom: 1px solid #ffe0b2;
}
.back-link-simple { 
    text-decoration: none; color: #d32f2f; font-weight: 600; 
    font-size: 0.9rem; display: inline-block; margin-bottom: 5px;
}
.hotel-main-title { 
    font-family: 'Playfair Display', serif; color: #4a0404; 
    font-size: 2rem; margin: 5px 0; 
}
.hotel-sub-text { color: #666; font-size: 0.95rem; }

/* --- PHOTO GALLERY SECTION --- */
.main-gallery-section { 
    max-width: 1000px; /* కంటైనర్ సైజు తగ్గించాం */
    margin: 20px auto; /* పైన కింద గ్యాప్ */
    padding: 0 20px; 
}

.gallery-grid {
    display: grid;
    grid-template-columns: 60% 39%; /* పక్క పక్కన */
    gap: 1%;
    height: 300px; /* ఇంతకు ముందు 380px ఉండేది, ఇప్పుడు 300px (చిన్నది చేశాం) */
}

/* ఇమేజ్ బాక్సులు */
.big-img-wrapper, .small-img-wrapper {
    width: 100%; height: 100%;
    border-radius: 10px; overflow: hidden;
    position: relative; cursor: pointer;
}

.side-imgs { 
    display: flex; flex-direction: column; 
    justify-content: space-between; height: 100%; 
}
.small-img-wrapper { height: 49%; } /* సగం హైట్ */

.g-img { 
    width: 100%; height: 100%; object-fit: cover; 
    transition: transform 0.3s;
}
.g-img:hover { transform: scale(1.05); } /* మౌస్ పెడితే జూమ్ అవుతుంది */

.overlay-text {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); color: white; 
    font-weight: bold; font-size: 1.1rem;
    display: flex; justify-content: center; align-items: center;
}

/* --- POPUP MODAL (ZOOM) STYLE - FIXED --- */
.modal {
    display: none; /* మొదట్లో కనిపించదు */
    position: fixed; 
    z-index: 2000;
    left: 0; top: 0; 
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.92); /* ఇంకాస్త డార్క్ బ్యాక్‌గ్రౌండ్ */
    justify-content: center; 
    align-items: center;
    backdrop-filter: blur(5px); /* వెనుక ఉన్నది బ్లర్ అవుతుంది */
}

.modal-content {
    max-width: 85%; 
    max-height: 90vh; /* స్క్రీన్ హైట్ లో 90% మాత్రమే తీసుకుంటుంది */
    border-radius: 4px; 
    /* పాత వైట్ గ్లో తీసేసి, సింపుల్ షాడో పెట్టాను */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    border: 2px solid #fff; /* సన్నని వైట్ బోర్డర్ */
    object-fit: contain; /* ఫోటో సాగకుండా కరెక్ట్ గా కనిపిస్తుంది */
    animation: zoomIn 0.3s ease;
}

/* క్లోజ్ బటన్ (X) */
.close-btn {
    position: absolute; 
    top: 20px; right: 40px;
    color: #f1f1f1; 
    font-size: 45px; 
    font-weight: 300; /* మరీ లావుగా లేకుండా సన్నగా */
    cursor: pointer;
    transition: 0.3s;
    z-index: 2001;
}

.close-btn:hover {
    color: #bbb;
    transform: scale(1.1);
}

/* జూమ్ యానిమేషన్ */
@keyframes zoomIn { 
    from {transform: scale(0.8); opacity: 0;} 
    to {transform: scale(1); opacity: 1;} 
}

/* మొబైల్ లో క్లోజ్ బటన్ అడ్జస్ట్మెంట్ */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 80vh;
        border: none; /* మొబైల్ లో బోర్డర్ అవసరం లేదు */
    }
    .close-btn {
        top: 10px; right: 20px;
        font-size: 35px;
    }
}


/* --- MOBILE RESPONSIVE (Fixes) --- */
@media (max-width: 768px) {
    .container, .main-gallery-section { padding: 0 15px; } /* ప్యాడింగ్ అడ్జస్ట్మెంట్ */
    
    .hotel-main-title { font-size: 1.6rem; } /* టైటిల్ సైజు తగ్గించాం */
    
    .gallery-grid { 
        grid-template-columns: 1fr; /* ఒకదాని కింద ఒకటి */
        height: auto; gap: 10px; 
    }
    
    .big-img-wrapper { height: 200px; } /* మొబైల్ లో పెద్ద ఫోటో హైట్ */
    
    .side-imgs { 
        flex-direction: row; /* చిన్న ఫోటోలు పక్క పక్కన */
        height: 100px; gap: 10px; 
    }
    .small-img-wrapper { height: 100%; } /* హైట్ ఫిక్స్ */
}
/* --- GLOBAL RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background-color: #fdfbf7; color: #333; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.centered-container { text-align: center; }

/* --- 1. HEADER STYLES --- */
.main-header {
    background: #FFF8DC; 
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 5%; border-bottom: 3px solid #D4AF37;
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.site-logo { height: 60px; mix-blend-mode: multiply; }
.nav-links ul { display: flex; list-style: none; gap: 25px; }
.nav-links a { text-decoration: none; color: #4a0404; font-weight: 700; font-size: 14px; text-transform: uppercase; }
.nav-links a:hover { color: #ff9800; }
.header-right { display: flex; align-items: center; gap: 15px; }
.account-btn { background: #4a0404; color: #D4AF37; padding: 8px 15px; border-radius: 30px; text-decoration: none; font-weight: bold; font-size: 13px; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.mobile-toggle span { width: 25px; height: 3px; background: #4a0404; }

/* --- 2. HOTEL TITLE SECTION --- */
.hotel-header-section {
    background-color: #fff3e0; padding: 30px 0; border-bottom: 1px solid #ffe0b2;
}
.back-link-simple { text-decoration: none; color: #d32f2f; font-weight: 600; font-size: 0.9rem; display: inline-block; margin-bottom: 5px; }
.hotel-main-title { font-family: 'Playfair Display', serif; color: #4a0404; font-size: 2.2rem; margin: 5px 0; }
.hotel-sub-text { color: #666; font-size: 1rem; font-weight: 500; }

/* --- 3. PHOTO GALLERY SECTION --- */
.main-gallery-section { max-width: 1000px; margin: 30px auto; padding: 0 20px; }
.gallery-grid {
    display: grid; grid-template-columns: 60% 39%; gap: 1%; height: 320px;
}
.big-img-wrapper, .small-img-wrapper { width: 100%; height: 100%; border-radius: 10px; overflow: hidden; position: relative; cursor: pointer; }
.side-imgs { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.small-img-wrapper { height: 49%; }
.g-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.g-img:hover { transform: scale(1.05); }
.overlay-text { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); color: white; font-weight: bold; font-size: 1.1rem; display: flex; justify-content: center; align-items: center; }

/* --- 4. AMENITIES SECTION (Grid Fix) --- */
.amenities-section {
    background-color: #ffffff;
    padding: 40px 0;
    
    /* ఇది ఫోటోల కిందకి నెడుతుంది */
    margin-top: 50px; 
    
    border-top: 1px solid #eee; border-bottom: 1px solid #eee;
    position: relative; z-index: 10; clear: both;
}
.section-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #4a0404; margin-bottom: 30px; text-align: center; position: relative; }
.section-title::after { content: ''; display: block; width: 60px; height: 3px; background: #D4AF37; margin: 10px auto 0; border-radius: 2px; }

/* గ్రిడ్ డిజైన్ (ఇది ముఖ్యం) */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    width: 100%;
}

.amenity-item { 
    background: #fdfbf7; 
    border: 1px solid #e0e0e0; 
    border-radius: 10px; 
    padding: 15px 20px; 
    display: flex; align-items: center; gap: 15px; 
    transition: 0.3s; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
}
.amenity-item:hover { transform: translateY(-3px); border-color: #D4AF37; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.am-icon { font-size: 1.6rem; }
.amenity-item span:last-child { font-weight: 600; color: #444; font-size: 0.95rem; }

/* --- POPUP MODAL --- */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.92); justify-content: center; align-items: center; backdrop-filter: blur(5px); }
.modal-content { max-width: 85%; max-height: 90vh; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); border: 2px solid #fff; object-fit: contain; animation: zoomIn 0.3s ease; }
.close-btn { position: absolute; top: 20px; right: 40px; color: #f1f1f1; font-size: 45px; font-weight: 300; cursor: pointer; z-index: 2001; }
@keyframes zoomIn { from {transform: scale(0.8); opacity: 0;} to {transform: scale(1); opacity: 1;} }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: #FFF8DC; text-align: center; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .nav-links.active { display: flex; flex-direction: column; gap: 15px; }
    .mobile-toggle { display: flex; }
    
    .gallery-grid { grid-template-columns: 1fr; height: auto; gap: 10px; }
    .big-img-wrapper { height: 220px; }
    .side-imgs { flex-direction: row; height: 120px; gap: 10px; }
    .small-img-wrapper { height: 100%; }
    
    .amenities-section { margin-top: 30px; }
    .amenities-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .amenity-item { flex-direction: column; text-align: center; padding: 10px; }
    
    .modal-content { max-width: 95%; max-height: 80vh; border: none; }
    .close-btn { top: 10px; right: 20px; font-size: 35px; }
}
/* --- SYSTEM (DESKTOP) FIX ONLY --- */
/* ఈ కోడ్ కేవలం కంప్యూటర్ లో మాత్రమే పనిచేస్తుంది, మొబైల్ ని మార్చదు */

@media screen and (min-width: 1024px) {
    
    /* 1. గ్యాలరీ బాక్స్ హైట్ ని సిస్టమ్ లో పెంచుతున్నాం */
    .gallery-grid {
        height: 400px !important; /* ఫోటోలకు ఎక్కువ స్పేస్ */
        margin-bottom: 50px;
    }

    /* 2. Amenities సెక్షన్ ని బలవంతంగా కిందకి నెడుతున్నాం */
    .amenities-section {
        margin-top: 200px !important; /* 200px కిందకి వెళ్తుంది */
        position: relative;
        z-index: 5;
        padding-top: 40px;
    }
}
/* --- ROOMS LIST DESIGN (UPDATED SIZE) --- */
.rooms-container {
    max-width: 1000px; /* వెడల్పు పెంచాను */
    margin: 0 auto 50px;
    padding: 0 20px;
}

.room-row {
    display: flex; 
    align-items: center; 
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 25px;
    padding: 15px; /* ప్యాడింగ్ పెంచాను */
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.room-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #ff9800;
}

/* 1. Left Image (BIGGER on Desktop) */
.room-left-img {
    width: 280px; /* సిస్టమ్ లో ఇమేజ్ పెద్దగా ఉంటుంది */
    height: 180px;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.room-left-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.3s;
}
.room-left-img:hover img { transform: scale(1.1); }

/* "View Photos" Badge */
.photos-badge {
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(0,0,0,0.7); color: white;
    font-size: 0.8rem; padding: 4px 8px; border-radius: 4px;
    pointer-events: none;
}

/* 2. Middle Details */
.room-mid-details {
    flex: 1; padding: 0 25px;
}
.room-mid-details h3 {
    margin: 0 0 10px; color: #4a0404; font-size: 1.5rem;
}
.room-desc {
    color: #555; font-size: 0.95rem; margin-bottom: 12px;
}
.features-list { display: flex; flex-wrap: wrap; gap: 10px; }
.features-list span {
    font-size: 0.9rem; color: #444; background: #fdfbf7;
    padding: 5px 10px; border-radius: 5px; border: 1px solid #e0e0e0;
}

/* 3. Right Price Button */
.room-right-price-btn {
    text-decoration: none; background-color: #fff8e1;
    border: 2px solid #ff9800; color: #e65100;
    padding: 15px 10px; border-radius: 8px;
    text-align: center; min-width: 140px; /* బటన్ వెడల్పు పెంచాను */
    display: flex; flex-direction: column; justify-content: center;
    transition: 0.3s;
}
.room-right-price-btn:hover { background-color: #ff9800; }
.room-right-price-btn:hover .price-txt, 
.room-right-price-btn:hover .book-txt { color: white; }

.price-txt { font-size: 1.6rem; font-weight: bold; color: #333; margin-bottom: 5px; }
.book-txt { font-size: 0.9rem; font-weight: bold; text-transform: uppercase; color: #e65100; }

/* --- GALLERY MODAL STYLES --- */
.gallery-modal {
    display: none; position: fixed; z-index: 3000;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.95);
    justify-content: center; align-items: center;
}
.gallery-content { text-align: center; width: 90%; max-width: 800px; }
#galleryImage { width: 100%; max-height: 70vh; object-fit: contain; border-radius: 5px; border: 2px solid white; }
.close-gallery {
    position: absolute; top: 20px; right: 40px; color: #fff;
    font-size: 50px; cursor: pointer;
}
.gallery-nav { margin-top: 15px; display: flex; justify-content: center; gap: 20px; }
.gallery-nav button {
    background: #ff9800; border: none; color: white; padding: 10px 20px;
    font-size: 1rem; cursor: pointer; border-radius: 5px;
}
.caption-text { color: #ccc; margin-top: 10px; font-size: 1.2rem; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .room-row { flex-direction: column; align-items: flex-start; padding: 10px; }
    .room-left-img { width: 100%; height: 200px; margin-bottom: 15px; }
    .room-mid-details { padding: 0; margin-bottom: 15px; width: 100%; }
    .room-mid-details h3 { font-size: 1.3rem; }
    .room-right-price-btn { width: 100%; flex-direction: row; justify-content: space-between; align-items: center; padding: 12px 20px; }
    .price-txt { margin-bottom: 0; font-size: 1.4rem; }
}
/* --- 6. INFO & TERMS SECTION --- */
.info-terms-section {
    background-color: #fdfbf7; /* లైట్ క్రీమ్ బ్యాక్‌గ్రౌండ్ */
    padding: 50px 0;
    border-top: 1px solid #eee;
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* రెండు పక్క పక్కన (50% - 50%) */
    gap: 30px;
}

/* బాక్సులు డిజైన్ */
.info-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.info-title {
    font-family: 'Playfair Display', serif;
    color: #4a0404;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #D4AF37; /* గోల్డ్ లైన్ */
    display: inline-block;
}

/* Location List Styling */
.info-list {
    list-style: none;
}
.info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #444;
}
.info-list .icon {
    font-size: 1.4rem;
    width: 30px;
    text-align: center;
}

/* Terms List Styling */
.terms-list {
    list-style: none;
}
.terms-list li {
    position: relative;
    padding-left: 25px; /* బుల్లెట్ పాయింట్ స్పేస్ */
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}
.terms-list li::before {
    content: '•'; /* కస్టమ్ బుల్లెట్ పాయింట్ */
    color: #D4AF37;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}
.terms-list strong {
    color: #333;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr; /* మొబైల్ లో ఒకదాని కింద ఒకటి */
        gap: 20px;
    }
    .info-box {
        padding: 20px;
    }
}
/* --- 6. LEGAL & ACCOMMODATION SECTION --- */
.legal-info-section {
    padding: 60px 0;
    background-color: #fff;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* పక్క పక్కన */
    gap: 40px;
}

.legal-box {
    background: #fdfbf7;
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 10px;
}

.legal-title {
    font-family: 'Playfair Display', serif;
    color: #4a0404;
    font-size: 1.6rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #D4AF37;
    display: inline-block;
    padding-bottom: 5px;
}

/* Location Details */
.location-list {
    list-style: none;
    padding: 0;
}
.location-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #444;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 8px;
}
.location-list li strong {
    color: #333;
    width: 180px;
    display: inline-block;
}

.transport-note {
    margin-top: 20px;
    padding: 15px;
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    font-size: 0.9rem;
}

/* Terms & Conditions */
.terms-scroll-area {
    max-height: 300px; /* మరీ పొడవు అవ్వకుండా స్క్రోల్ బార్ వస్తుంది */
    overflow-y: auto;
    padding-right: 10px;
}

/* స్క్రోల్ బార్ స్టైలింగ్ */
.terms-scroll-area::-webkit-scrollbar { width: 5px; }
.terms-scroll-area::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 10px; }

.terms-ol {
    padding-left: 20px;
}
.terms-ol li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .legal-grid {
        grid-template-columns: 1fr; /* మొబైల్ లో ఒకటి కింద ఒకటి */
    }
    .location-list li strong {
        display: block;
        margin-bottom: 5px;
    }
}
/* ఒకటే బాక్స్ ఉన్నప్పుడు అది సెంటర్‌గా రావడానికి */
.legal-grid.single-box {
    display: flex;
    justify-content: center;
}

.legal-grid.single-box .legal-box {
    width: 100%;
    max-width: 800px; /* మరీ వెడల్పు అవ్వకుండా నియంత్రిస్తుంది */
}
.hotel-sold-out {
    position: relative;
    pointer-events: none;
}

.hotel-sold-out::after {
    content: "ALL ROOMS FULL / SOLD OUT";
    position: absolute;
    top: 150px; /* బ్యానర్ ఎత్తును ఇక్కడ అడ్జస్ట్ చేయవచ్చు */
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    background: rgba(211, 47, 47, 0.95);
    color: white;
    padding: 15px 30px;
    font-size: 2rem;
    font-weight: bold;
    border: 4px solid white;
    z-index: 999;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    white-space: nowrap;
}

.hotel-sold-out .room-row {
    opacity: 0.3;
    filter: grayscale(1);
}
/* --- BOOKING MODAL STYLES --- */
.booking-modal {
    display: none; /* Default hidden */
    position: fixed; z-index: 4000;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
    justify-content: center; align-items: center;
    backdrop-filter: blur(5px);
}

.booking-modal-content {
    background: white; padding: 30px;
    border-radius: 15px; width: 90%; max-width: 550px;
    position: relative; box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.close-booking {
    position: absolute; right: 20px; top: 15px;
    font-size: 28px; cursor: pointer; color: #666;
}

.modal-title { font-family: 'Playfair Display', serif; color: #4a0404; margin-bottom: 5px; }
.modal-subtitle { color: #ff9800; font-weight: 600; margin-bottom: 25px; border-bottom: 1px solid #eee; padding-bottom: 10px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.full-width { grid-column: span 2; }

.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; color: #333; }
.form-group input, .form-group select {
    width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; font-family: inherit;
}

.id-note { font-size: 0.75rem; color: #d32f2f; margin: 20px 0; background: #fff5f5; padding: 10px; border-radius: 5px; }

.proceed-btn {
    width: 100%; background: #4a0404; color: white; border: none;
    padding: 15px; border-radius: 8px; font-weight: bold; cursor: pointer;
    font-size: 1rem; transition: 0.3s;
}
.proceed-btn:hover { background: #d32f2f; }

@media (max-width: 600px) {
    .form-grid { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
}