/* ===== CSS VARIABLES ===== */
:root {
    --saffron-50: #fff8f0;
    --saffron-100: #ffedd5;
    --saffron-500: #f97316;
    --saffron-600: #ea580c;
    --saffron-700: #c2410c;
    --temple-red: #b91c1c;
    --deep-bg: #1a0a00;
    --cream: #fff9f0;
    --warm-cream: #fef3e2;
    --text-dark: #1f2937;
    --text-gray: #4b5563;
    --text-light: #9ca3af;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background-color: var(--cream); color: var(--text-dark); line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
.hindi { font-family: 'Tiro Devanagari Hindi', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.3s ease; padding: 15px 0; }
.navbar.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); box-shadow: var(--shadow-md); padding: 10px 0; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.logo-area { display: flex; align-items: center; gap: 12px; }
.logo-svg { width: 45px; height: 45px; }
.logo-text h2 { font-size: 1.25rem; font-weight: 700; color: var(--white); transition: color 0.3s; }
.navbar.scrolled .logo-text h2 { color: var(--text-dark); }
.logo-text span { font-size: 0.7rem; color: var(--saffron-500); display: block; margin-top: -4px; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.9); transition: color 0.3s; position: relative; }
.nav-links a:hover { color: var(--saffron-500); }
.navbar.scrolled .nav-links a { color: var(--text-dark); }
.navbar.scrolled .nav-links a:hover { color: var(--saffron-600); }
.btn-book { background: var(--saffron-500); color: var(--white); padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; transition: background 0.3s; border: none; cursor: pointer; }
.btn-book:hover { background: var(--saffron-600); }
.mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; transition: color 0.3s; }
.navbar.scrolled .mobile-toggle { color: var(--text-dark); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,10,0,0.8) 0%, rgba(185,28,28,0.5) 50%, rgba(249,115,22,0.3) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding-top: 80px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 8px 16px; margin-bottom: 24px; }
.hero-badge span { color: var(--saffron-500); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.hero-badge i { color: var(--saffron-500); animation: pulse 2s infinite; }
.hero h1 { font-size: 3.5rem; color: var(--white); margin-bottom: 10px; }
.hero h1 span { color: var(--saffron-500); }
.hero .hindi-sub { color: var(--saffron-100); font-size: 1.5rem; margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 32px; max-width: 600px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--saffron-500); color: var(--white); padding: 14px 32px; border-radius: 50px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow-lg); transition: all 0.3s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--saffron-600); transform: translateY(-2px); }
.btn-outline { background: rgba(255,255,255,0.1); color: var(--white); padding: 14px 32px; border-radius: 50px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,0.3); transition: all 0.3s; cursor: pointer; }
.btn-outline:hover { background: rgba(255,255,255,0.2); }

/* ===== HERO NEW (ALTERNATE) ===== */
.hero-new { background: linear-gradient(160deg, var(--warm-cream) 0%, var(--saffron-50) 100%); padding: 140px 0 80px; overflow: hidden; }
.hero-new-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-new-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--saffron-100); border-radius: 50px; padding: 8px 16px; margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.hero-new-badge span { color: var(--saffron-700); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.hero-new-badge i { color: var(--saffron-500); }
.hero-new-text h1 { font-size: 3rem; color: var(--text-dark); margin-bottom: 10px; }
.hero-new-text h1 span { color: var(--saffron-600); }
.hero-new-text .hindi-sub { color: var(--saffron-700); font-size: 1.4rem; margin-bottom: 18px; }
.hero-new-desc { color: var(--text-gray); font-size: 1.05rem; margin-bottom: 22px; max-width: 560px; }
.hero-new-points { list-style: none; margin-bottom: 30px; display: grid; gap: 12px; }
.hero-new-points li { display: flex; align-items: center; gap: 12px; color: var(--text-dark); font-size: 0.95rem; font-weight: 500; }
.hero-new-points i { width: 24px; height: 24px; border-radius: 50%; background: var(--saffron-500); color: var(--white); display: inline-flex; align-items: center; justify-content: center; font-size: 0.7rem; }
.hero-new-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-new-media { position: relative; }
.hero-new-card { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-xl); border: 6px solid var(--white); }
.hero-new-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.hero-new-chip { position: absolute; left: 16px; bottom: 16px; background: rgba(26,10,0,0.7); backdrop-filter: blur(5px); color: var(--white); display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 500; }
.hero-new-chip i { color: var(--saffron-500); }
.hero-new-stat { position: absolute; background: var(--white); border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-lg); text-align: center; }
.hero-new-stat h3 { font-size: 1.5rem; color: var(--saffron-600); line-height: 1; }
.hero-new-stat span { font-size: 0.7rem; color: var(--text-gray); font-weight: 500; }
.hero-new-stat.stat-1 { top: -20px; right: -20px; }
.hero-new-stat.stat-2 { bottom: -20px; left: -20px; }

/* ===== SECTIONS GENERAL ===== */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .tag { display: inline-block; color: var(--saffron-600); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.section-header h2 { font-size: 2.5rem; color: var(--text-dark); margin-bottom: 12px; }
.section-header h2 span { color: var(--saffron-600); }
.section-header p { color: var(--text-gray); max-width: 600px; margin: 0 auto; }
.bg-white { background: var(--white); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-xl); }
.about-img img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--saffron-500); color: var(--white); padding: 16px; border-radius: 16px; box-shadow: var(--shadow-lg), 0 0 30px rgba(249,115,22,0.3); text-align: center; }
.about-badge h3 { font-size: 1.8rem; margin-bottom: 2px; }
.about-badge span { font-size: 0.75rem; font-weight: 500; }
.about-text p { color: var(--text-gray); margin-bottom: 16px; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--saffron-50); display: flex; align-items: center; justify-content: center; color: var(--saffron-600); flex-shrink: 0; }
.feature-text h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; }
.feature-text span { font-size: 0.75rem; color: var(--text-light); }

/* ===== ROOMS ===== */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.room-card { background: var(--white); border-radius: 16px; border: 1px solid #f3f4f6; overflow: hidden; transition: all 0.3s; }
.room-card:hover { box-shadow: 0 20px 40px -12px rgba(249,115,22,0.25); transform: translateY(-5px); }
.room-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.room-card:hover .room-img img { transform: scale(1.05); }
.price-tag { position: absolute; top: 16px; right: 16px; background: linear-gradient(135deg, var(--saffron-500), var(--saffron-600)); color: var(--white); padding: 6px 14px; border-radius: 50px; font-size: 0.9rem; font-weight: 700; box-shadow: var(--shadow-md); }
.popular-tag { position: absolute; top: 16px; left: 16px; background: var(--temple-red); color: var(--white); padding: 4px 12px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; }
.room-content { padding: 20px; }
.room-content h3 { font-size: 1.15rem; margin-bottom: 6px; }
.room-content p { font-size: 0.85rem; color: var(--text-gray); margin-bottom: 12px; }
.room-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.room-tags span { font-size: 0.75rem; background: var(--saffron-50); color: var(--saffron-700); padding: 4px 10px; border-radius: 6px; display: inline-flex; align-items: center; gap: 4px; }
.room-actions { display: flex; gap: 8px; align-items: stretch; }
.btn-room { display: block; flex: 1; text-align: center; background: var(--saffron-500); color: var(--white); padding: 10px; border-radius: 12px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s; border: none; cursor: pointer; }
.btn-room:hover { background: var(--saffron-600); color: var(--white); }
.btn-whatsapp-room { flex: 0 0 auto; width: 46px; display: flex; align-items: center; justify-content: center; background: #25D366; color: var(--white); border-radius: 12px; font-size: 1.2rem; transition: all 0.3s; }
.btn-whatsapp-room:hover { background: #1ebe5d; color: var(--white); transform: translateY(-2px); }

/* Tariff Table */
.tariff-box { background: var(--saffron-50); border-radius: 16px; padding: 30px; margin-top: 60px; border: 1px solid var(--saffron-100); }
.tariff-box h3 { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; margin-bottom: 20px; color: var(--saffron-700); }
.tariff-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.tariff-table th { text-align: left; padding: 12px 16px; color: var(--saffron-800); border-bottom: 2px solid var(--saffron-200); font-family: 'Inter', sans-serif; }
.tariff-table td { padding: 12px 16px; border-bottom: 1px solid var(--saffron-100); color: var(--text-gray); }
.tariff-table tr:hover td { background: rgba(255,237,213,0.5); }
.tariff-table .price { text-align: right; font-weight: 700; color: var(--saffron-700); }
.tariff-note { font-size: 0.75rem; color: var(--text-light); margin-top: 16px; }

/* ===== AMENITIES ===== */
.amenities-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.amenity-item { background: var(--white); border-radius: 12px; padding: 20px 10px; text-align: center; border: 1px solid #f3f4f6; transition: all 0.3s; }
.amenity-item:hover { border-color: var(--saffron-200); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.amenity-icon { width: 50px; height: 50px; margin: 0 auto 12px; border-radius: 12px; background: var(--saffron-50); display: flex; align-items: center; justify-content: center; color: var(--saffron-500); font-size: 1.25rem; transition: all 0.3s; }
.amenity-item:hover .amenity-icon { background: var(--saffron-500); color: var(--white); }
.amenity-item span { font-size: 0.8rem; font-weight: 500; color: var(--text-dark); }

/* ===== BOOKING ===== */
.booking-section { background: var(--deep-bg); position: relative; overflow: hidden; }
.booking-bg { position: absolute; inset: 0; opacity: 0.1; }
.booking-bg img { width: 100%; height: 100%; object-fit: cover; }
.booking-form-wrap { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group.full { grid-column: span 2; }
.form-group label { display: block; color: rgba(255,255,255,0.7); font-size: 0.8rem; font-weight: 500; margin-bottom: 8px; }
.form-group label .req { color: var(--saffron-500); }
.form-input { width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 12px 16px; color: var(--white); font-size: 0.9rem; font-family: 'Inter', sans-serif; transition: all 0.3s; outline: none; }
.form-input:focus { border-color: var(--saffron-500); box-shadow: 0 0 0 2px rgba(249,115,22,0.2); }
.form-input::placeholder { color: rgba(255,255,255,0.3); }
select.form-input option { background: #1f2937; color: white; }
textarea.form-input { resize: none; }
.btn-submit { width: 100%; padding: 14px; background: var(--saffron-500); color: var(--white); border: none; border-radius: 12px; font-weight: 700; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.3s; margin-top: 24px; }
.btn-submit:hover { background: var(--saffron-600); }
.form-msg { padding: 16px; border-radius: 12px; font-size: 0.9rem; font-weight: 500; margin-bottom: 20px; }
.form-msg.success { background: rgba(34,197,94,0.2); color: #86efac; border: 1px solid rgba(34,197,94,0.3); }
.form-msg.error { background: rgba(239,68,68,0.2); color: #fca5a5; border: 1px solid rgba(239,68,68,0.3); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.info-card { background: var(--white); border-radius: 16px; padding: 24px; border: 1px solid #f3f4f6; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.info-card h3 { display: flex; align-items: center; gap: 8px; font-size: 1.1rem; margin-bottom: 20px; color: var(--text-dark); }
.info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.info-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--saffron-50); display: flex; align-items: center; justify-content: center; color: var(--saffron-600); flex-shrink: 0; }
.info-text h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.info-text p, .info-text a { font-size: 0.85rem; color: var(--text-gray); }
.info-text a:hover { color: var(--saffron-600); }
.quick-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.quick-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-radius: 12px; font-size: 0.85rem; font-weight: 600; transition: all 0.3s; }
.map-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid #f3f4f6; box-shadow: var(--shadow-sm); min-height: 400px; }

/* ===== FOOTER ===== */
.footer { background: var(--deep-bg); color: var(--white); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 16px; max-width: 400px; }
.footer h4 { font-family: 'Inter', sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--saffron-500); margin-bottom: 20px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a, .footer-contact li { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.3s; display: flex; align-items: center; gap: 8px; }
.footer ul a:hover { color: var(--saffron-500); }
.footer-divider { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-btn { position: fixed; bottom: 30px; right: 30px; z-index: 999; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.8rem; box-shadow: var(--shadow-xl); transition: transform 0.3s; }
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-dot { position: absolute; top: -2px; right: -2px; width: 15px; height: 15px; background: var(--temple-red); border-radius: 50%; border: 2px solid var(--cream); animation: pulse 2s infinite; }

/* ===== ANIMATIONS ===== */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 2rem; }
    .hero-new { padding: 120px 0 60px; }
    .hero-new-inner { grid-template-columns: 1fr; gap: 50px; }
    .hero-new-text h1 { font-size: 2.3rem; }
    .hero-new-stat.stat-1 { right: 10px; }
    .hero-new-stat.stat-2 { left: 10px; }
    .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .rooms-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-links { grid-template-columns: 1fr; }
}
