/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #C8963E;
  --gold-light: #E8C97A;
  --gold-dark: #A07830;
  --dark: #1A1A1A;
  --dark-bg: #0F0F0F;
  --cream: #FAF6F0;
  --cream-dark: #F0E8D8;
  --white: #FFFFFF;
  --gray: #6B6B6B;
  --gray-light: #E0E0E0;
  --radius: 8px;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.3rem; font-weight: 700; color: var(--dark);
  letter-spacing: -0.5px;
}

.logo svg {
  width: 48px; height: 34px; flex-shrink: 0;
}

.logo-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 1rem;
}

/* ===== PHOTO GALLERY ===== */
.gallery-scroll {
  display: flex; gap: 16px; overflow-x: auto;
  padding: 4px 0 16px; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-track { background: var(--cream); border-radius: 3px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.gallery-item {
  flex: 0 0 300px; height: 220px; border-radius: 12px;
  overflow: hidden; scroll-snap-align: start;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--gray);
  transition: var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold); border-radius: 1px;
}

.nav-cta {
  background: var(--gold) !important; color: var(--white) !important;
  padding: 10px 24px; border-radius: var(--radius);
  font-weight: 600 !important; font-size: 0.85rem !important;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); margin: 5px 0; transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  margin-top: 72px;
  height: 85vh; min-height: 500px;
  background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Shri_Ram_Janambhoomi_Mandir%2C_Ayodhya.jpg/1920px-Shri_Ram_Janambhoomi_Mandir%2C_Ayodhya.jpg') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center;
}

.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(30,10,0,0.65) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 0 24px; }

.hero-badge {
  display: inline-block;
  background: rgba(200,150,62,0.15); color: var(--gold-light);
  padding: 6px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 24px; border: 1px solid rgba(200,150,62,0.2);
}

.hero h1 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600; color: var(--white);
  line-height: 1.3; margin-bottom: 12px;
  letter-spacing: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero h1 span { color: var(--white); }

.hero-city {
  display: block;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #FFA040 0%, #FF6600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 15px rgba(255,100,0,0.4));
}

.hero p {
  font-size: 1rem; color: rgba(255,255,255,0.75);
  max-width: 500px; margin: 0 auto 28px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); border: none;
}

.btn-primary {
  background: var(--gold); color: var(--white);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(200,150,62,0.35); }

.btn-outline {
  background: var(--gold); color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }

/* ===== HIGHLIGHTS BAR ===== */
.highlights {
  background: var(--white);
  padding: 0;
  margin-top: -40px; position: relative; z-index: 10;
}

.highlights-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.highlight-item {
  padding: 32px 24px; text-align: center;
  border-right: 1px solid var(--gray-light);
}
.highlight-item:last-child { border-right: none; }

.highlight-icon {
  font-size: 1.8rem; margin-bottom: 12px;
}

.highlight-item h4 {
  font-size: 0.95rem; font-weight: 700; color: var(--dark);
  margin-bottom: 4px;
}
.highlight-item p {
  font-size: 0.8rem; color: var(--gray);
}

/* ===== SECTION COMMON ===== */
.section { padding: 80px 0; }
.section-dark { background: var(--cream); }

.section-header {
  text-align: center; margin-bottom: 48px;
}
.section-header h2 {
  font-size: 2rem; font-weight: 700; color: var(--dark);
  margin-bottom: 12px; letter-spacing: -0.5px;
}
.section-header p {
  font-size: 1rem; color: var(--gray); max-width: 520px; margin: 0 auto;
}
.section-header .line {
  width: 50px; height: 3px;
  background: var(--gold); margin: 16px auto 0;
  border-radius: 2px;
}

/* ===== ROOMS ===== */
.rooms-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.room-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.room-img {
  height: 220px;
  background: var(--cream-dark);
  position: relative; overflow: hidden;
}

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

.room-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  color: var(--gray); font-size: 3rem;
}

.room-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--white);
  padding: 4px 12px; border-radius: 4px;
  font-size: 0.75rem; font-weight: 600;
}

.room-info { padding: 24px; }
.room-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.room-info p { font-size: 0.85rem; color: var(--gray); margin-bottom: 16px; line-height: 1.6; }

.room-amenities {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px;
}
.room-amenities span {
  background: var(--cream); padding: 4px 10px;
  border-radius: 4px; font-size: 0.75rem; color: var(--gray);
}

.room-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--gray-light);
}
.room-footer-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}
.room-capacity {
  display: flex; align-items: center; gap: 3px;
  font-size: 0.75rem; color: #444; font-weight: 500;
}
.room-capacity span { margin-left: 2px; }

.room-price { font-size: 1.3rem; font-weight: 700; color: var(--dark); }
.room-price small { font-size: 0.75rem; font-weight: 400; color: var(--gray); }

.btn-sm {
  padding: 8px 20px; font-size: 0.85rem;
  background: var(--gold); color: var(--white);
  border-radius: var(--radius); border: none;
  font-weight: 600; cursor: pointer; transition: var(--transition);
}
.btn-sm:hover { background: var(--gold-dark); }

/* ===== AMENITIES ===== */
.amenities-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.amenity-card {
  text-align: center; padding: 32px 20px;
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow); transition: var(--transition);
}
.amenity-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.amenity-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: var(--cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.amenity-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.amenity-card p { font-size: 0.78rem; color: var(--gray); }

/* ===== LOCATION ===== */
.location-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}

.location-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; }
.location-info p { color: var(--gray); margin-bottom: 20px; line-height: 1.7; }

.location-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.location-details .detail {
  display: flex; align-items: center; gap: 12px; font-size: 0.9rem;
}
.location-details .detail-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--cream); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

.map-placeholder {
  width: 100%; height: 360px;
  background: var(--cream-dark); border-radius: 12px;
  overflow: hidden;
}
.map-placeholder iframe { width: 100%; height: 100%; border: none; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white); padding: 32px;
  border-radius: 12px; box-shadow: var(--shadow);
}

.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; }
.testimonial-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.testimonial-source { font-size: 0.75rem; color: var(--gray); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2A1F10 100%);
  padding: 64px 0; text-align: center;
}
.cta-banner h2 { font-size: 2rem; color: var(--white); margin-bottom: 12px; font-weight: 700; }
.cta-banner p { color: rgba(255,255,255,0.6); margin-bottom: 28px; font-size: 1rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-bg); color: rgba(255,255,255,0.5);
  padding: 60px 0 30px;
}

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

.footer-about .logo { color: var(--white); margin-bottom: 16px; }
.footer-about p { font-size: 0.85rem; line-height: 1.7; }

.footer h4 {
  color: var(--white); font-size: 0.9rem; font-weight: 600;
  margin-bottom: 16px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.85rem; transition: var(--transition); }
.footer ul a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}

.social-links { display: flex; gap: 16px; }
.social-links a { font-size: 1.1rem; transition: var(--transition); }
.social-links a:hover { color: var(--gold-light); }

/* ===== ABOUT PAGE ===== */
.page-hero {
  margin-top: 72px;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2A1F10 100%);
  text-align: center;
}
.page-hero h1 { font-size: 2.5rem; color: var(--white); font-weight: 700; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; }

.about-story { padding: 80px 0; }
.about-story .container { max-width: 800px; }
.about-story h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 20px; }
.about-story p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }

.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px; margin-top: 24px;
}

.value-card {
  padding: 32px; background: var(--cream);
  border-radius: 12px; text-align: center;
}
.value-card .icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ===== PAYMENT PAGE ===== */
.payment-section { padding: 80px 0; margin-top: 72px; }

.payment-container {
  max-width: 640px; margin: 0 auto;
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}

.payment-header {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2A1F10 100%);
  padding: 32px; text-align: center;
}
.payment-header h1 { color: var(--white); font-size: 1.6rem; margin-bottom: 6px; }
.payment-header p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.payment-body { padding: 32px; }

.payment-summary {
  background: var(--cream); border-radius: var(--radius);
  padding: 24px; margin-bottom: 28px;
}
.payment-summary h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }

.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 0.9rem;
}
.summary-row.total {
  border-top: 2px solid var(--gray-light);
  margin-top: 12px; padding-top: 14px;
  font-weight: 700; font-size: 1.1rem;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 6px; color: var(--dark);
}
.form-group input,
.form-group select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.9rem; font-family: inherit;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,62,0.1);
}

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

.btn-pay {
  width: 100%; padding: 16px;
  background: var(--gold); color: var(--white);
  border: none; border-radius: var(--radius);
  font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  margin-top: 8px;
}
.btn-pay:hover { background: var(--gold-dark); }

.payment-secure {
  text-align: center; margin-top: 16px;
  font-size: 0.8rem; color: var(--gray);
}

.payment-methods {
  display: flex; justify-content: center; gap: 20px;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--gray-light);
}
.payment-methods span {
  font-size: 0.8rem; color: var(--gray); font-weight: 500;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 1500;
  background: #25D366; color: white;
  padding: 13px 20px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 700;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  display: flex; align-items: center; gap: 8px;
  transition: all 0.3s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 6px 28px rgba(37,211,102,0.6); color: white; }
@media (max-width: 480px) {
  .whatsapp-float { padding: 11px 15px; font-size: 0.82rem; bottom: 16px; right: 14px; }
}

/* ===== GALLERY WITH ARROWS ===== */
.gallery-wrapper { position: relative; }

.gallery-btn {
  position: absolute; top: calc(50% - 8px); transform: translateY(-50%);
  z-index: 20; width: 40px; height: 40px;
  background: white; border: none; border-radius: 50%;
  box-shadow: 0 2px 14px rgba(0,0,0,0.18);
  cursor: pointer; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: var(--dark);
}
.gallery-btn:hover { background: var(--gold); color: white; }
.gallery-btn-prev { left: -16px; }
.gallery-btn-next { right: -16px; }

/* ===== ROOM CARD IMAGE SLIDER ===== */
.room-slides-track {
  display: flex; height: 100%;
  transition: transform 0.38s ease; will-change: transform;
}
.room-slide-img { flex: 0 0 100%; height: 220px; object-fit: cover; }

.room-slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.45); color: white;
  border: none; width: 30px; height: 30px;
  border-radius: 50%; cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 5; font-size: 0.75rem;
  transition: var(--transition); opacity: 0.7;
}
.room-slide-btn:hover { background: rgba(0,0,0,0.75); opacity: 1; }
.room-slide-prev-btn { left: 8px; }
.room-slide-next-btn { right: 8px; }

.room-slide-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px;
}
.room-slide-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.55); cursor: pointer;
  border: none; padding: 0; transition: var(--transition);
}
.room-slide-dot.active { background: white; transform: scale(1.3); }

.room-count-badge {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.5); color: white;
  font-size: 0.7rem; padding: 3px 8px;
  border-radius: 4px; font-weight: 500;
}

/* ===== HOST / ABOUT PAGE ===== */
.host-section { padding: 80px 0; }

.host-layout {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 60px; align-items: start;
}

.host-text .greeting {
  font-family: Georgia, serif; font-style: italic;
  color: var(--gold-dark); font-size: 1.1rem; font-weight: 600;
  margin-bottom: 20px; display: block;
}

.host-text h2 {
  font-size: 1.9rem; font-weight: 700; margin-bottom: 20px;
  color: var(--dark);
}

.host-text p {
  color: var(--gray); line-height: 1.85; margin-bottom: 14px;
  font-size: 0.98rem;
}

.host-text em { color: var(--gold-dark); font-style: italic; }

.host-sig {
  font-family: Georgia, serif; color: var(--gold-dark);
  font-style: italic; font-size: 1rem; margin-top: 24px;
  line-height: 1.7; display: block;
}

.host-photo-wrap {
  position: sticky; top: 90px;
}

.host-photo-wrap img {
  width: 100%; border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 4px solid var(--cream-dark);
}

.host-photo-caption {
  text-align: center; margin-top: 12px;
  font-size: 0.82rem; color: var(--gray); font-style: italic;
}

/* ===== UPI PAYMENT MODAL ===== */
.pay-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.pay-overlay.active { display: flex; }

.pay-modal {
  background: var(--white); border-radius: 16px;
  max-width: 420px; width: 100%; max-height: 90vh;
  overflow-y: auto; position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

.pay-modal-close {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: var(--gray); width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.pay-modal-close:hover { background: var(--cream); }

.pay-modal-head {
  padding: 28px 28px 0; text-align: center;
}
.pay-modal-head h2 {
  font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 4px;
}
.pay-amount {
  font-size: 2rem; font-weight: 800; color: var(--gold); margin-top: 4px;
}

.pay-modal-body { padding: 20px 28px 28px; }

.pay-summary {
  background: var(--cream); border-radius: var(--radius);
  padding: 14px 16px; margin-bottom: 20px;
}
.pay-summary .summary-row { font-size: 0.85rem; }

.pay-qr-wrap { text-align: center; margin-bottom: 18px; }
.pay-qr-img {
  width: 200px; height: 200px;
  border-radius: 12px; margin: 0 auto; display: block;
  background: var(--cream);
}
.pay-qr-hint {
  font-size: 0.75rem; color: var(--gray); margin-top: 8px;
}

.btn-upi {
  display: block; width: 100%; padding: 14px;
  background: #5F259F; color: white; text-align: center;
  border-radius: var(--radius); font-size: 0.95rem; font-weight: 700;
  margin-bottom: 14px; transition: var(--transition);
}
.btn-upi:hover { background: #4A1D7A; }

.pay-upi-id-row {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 0.82rem; color: var(--gray); margin-bottom: 20px;
}
.pay-upi-id-row code {
  background: var(--cream); padding: 5px 10px;
  border-radius: 4px; font-weight: 600; color: var(--dark); font-size: 0.82rem;
}
.btn-copy {
  background: var(--cream-dark); border: none;
  padding: 5px 10px; border-radius: 4px;
  font-size: 0.75rem; cursor: pointer; transition: var(--transition);
  font-family: inherit;
}
.btn-copy:hover { background: var(--gold-light); color: var(--white); }

.btn-paid {
  width: 100%; padding: 14px;
  background: var(--gold); color: white; border: none;
  border-radius: var(--radius); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: var(--transition); font-family: inherit;
}
.btn-paid:hover { background: var(--gold-dark); }

.btn-cancel-pay {
  display: block; margin: 14px auto 0;
  background: none; border: none; color: var(--gray);
  font-size: 0.85rem; cursor: pointer; font-family: inherit;
}
.btn-cancel-pay:hover { color: var(--dark); }

/* Success Screen */
.pay-success { text-align: center; padding: 40px 28px; }
.pay-success-icon { font-size: 3.5rem; margin-bottom: 12px; }
.pay-success h2 { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.pay-success p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.pay-ref {
  display: inline-block; background: var(--cream); padding: 10px 20px;
  border-radius: var(--radius); font-size: 0.9rem; font-weight: 700;
  color: var(--gold-dark); margin-bottom: 16px; letter-spacing: 1px;
}
.pay-confirm-details {
  background: var(--cream); padding: 16px; border-radius: var(--radius);
  margin-bottom: 20px; font-size: 0.85rem; line-height: 1.7; color: var(--gray);
}
.pay-confirm-details strong { color: var(--dark); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: #25D366; color: white;
  border-radius: var(--radius); font-size: 0.95rem; font-weight: 700;
  transition: var(--transition); margin-bottom: 16px;
}
.btn-whatsapp:hover { background: #1DA851; }

.pay-note {
  font-size: 0.78rem; color: var(--gray);
}
.pay-note a { color: var(--gold); font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .location-content { grid-template-columns: 1fr; }
  .host-layout { grid-template-columns: 1fr; gap: 36px; }
  .host-photo-wrap { position: static; max-width: 420px; margin: 0 auto; order: -1; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column; padding: 24px;
    gap: 16px; box-shadow: var(--shadow);
  }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }

  .hero { height: 75vh; }
  .hero h1 { font-size: 2rem; }

  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .highlight-item { border-right: none; border-bottom: 1px solid var(--gray-light); padding: 22px 14px; }
  .highlight-item:nth-child(odd) { border-right: 1px solid var(--gray-light); }
  .highlight-item:nth-last-child(-n+2) { border-bottom: none; }

  .hero-city { letter-spacing: 3px; }
  .hero p { font-size: 0.88rem; }
  .hero-actions { gap: 10px; }
  .btn { padding: 12px 22px; font-size: 0.88rem; }

  .gallery-item { flex: 0 0 250px; height: 180px; }
  .section { padding: 56px 0; }
  .section-header h2 { font-size: 1.6rem; }
  .section-header p { font-size: 0.9rem; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .amenity-card { padding: 22px 14px; }

  .rooms-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-banner { padding: 48px 0; }
  .cta-banner h2 { font-size: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Payment page */
  .payment-container { margin: 0 -8px; border-radius: 8px; }
  .payment-body { padding: 20px 16px; }

  /* About page host section */
  .host-text h2 { font-size: 1.5rem; }
  .host-text p { font-size: 0.93rem; }
  .host-section { padding: 56px 0; }

  /* UPI Modal */
  .pay-modal { border-radius: 12px; }
  .pay-modal-head { padding: 20px 20px 0; }
  .pay-modal-body { padding: 16px 20px 24px; }
  .pay-qr-img { width: 170px; height: 170px; }
}
