/* ==========================================================================
   HOTEL SILK ELITE — DWARKA
   All-Light Luxury & Gold Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables / Design Tokens (All-Light Luxury Theme) --- */
:root {
  /* Slate & Charcoal Tones (High contrast, refined reading) */
  --navy-deep: #121c2a;
  --navy-dark: #1a2738;
  --navy-main: #24354c;
  --navy-light: #415570;
  --navy-surface: #ffffff;
  --navy-muted: #5e728d;

  /* Gold Luxury Accents */
  --gold-light: #f6eedc;
  --gold-main: #c6a15b;
  --gold-warm: #d4ac5e;
  --gold-dark: #8f6c23;
  --gold-glow: rgba(198, 161, 91, 0.22);
  --gold-border: rgba(198, 161, 91, 0.35);

  /* Backgrounds & Neutrals (100% Light Luxury) */
  --bg-cream: #faf7f2;
  --bg-cream-alt: #f4ede1;
  --bg-white: #ffffff;
  --border-subtle: #eae3d5;
  --border-card: #ece5d8;

  /* Typography Colors */
  --text-dark: #121c2a;
  --text-body: #475467;
  --text-muted: #718096;
  --text-light: #ffffff;
  --text-gold: #8f6c23;

  /* Typography Families */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions & Shadows */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 14px 36px rgba(0, 0, 0, 0.09);
  --shadow-gold: 0 8px 24px rgba(198, 161, 91, 0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.5px;
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold-dark); }
.text-navy { color: var(--text-dark); }
.text-white { color: #ffffff; }

.section-padding {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3.5rem 0;
  }
}

/* Section Header Typography */
.section-header {
  margin-bottom: 3.5rem;
  position: relative;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background-color: var(--gold-main);
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header.dark .section-title {
  color: var(--text-dark);
}

.section-header.dark .section-subtitle {
  color: var(--text-body);
}

.section-header.dark .section-eyebrow {
  color: var(--gold-dark);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, var(--gold-main) 50%, var(--gold-dark) 100%);
  color: #ffffff;
  border-color: var(--gold-main);
  box-shadow: var(--shadow-gold);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #dfbc4b 0%, #b8860b 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(198, 161, 91, 0.4);
  color: #ffffff;
}

.btn-outline-gold {
  background: #ffffff;
  color: var(--gold-dark);
  border-color: var(--gold-main);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-outline-gold:hover {
  background-color: var(--gold-main);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(198, 161, 91, 0.3);
}

.btn-navy {
  background: #ffffff;
  color: var(--text-dark);
  border: 1.5px solid #d9d0c1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-navy:hover {
  background: var(--gold-main);
  color: #ffffff;
  border-color: var(--gold-main);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  border-color: #25d366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* --- Top Info Bar --- */
.top-bar {
  background-color: #faf7f2;
  color: #4a5568;
  font-size: 0.82rem;
  border-bottom: 1px solid #eae2d5;
  padding: 0.5rem 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-bar a {
  color: #4a5568;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar a:hover {
  color: var(--gold-dark);
}

.top-bar-badge, .managed-tag {
  background-color: #f5eddb;
  color: #8a6518;
  border: 1px solid rgba(198, 161, 91, 0.45);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* --- Main Navigation Header --- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(198, 161, 91, 0.25);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo img, .header-logo-img {
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.08));
  transition: transform 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1a202c;
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--gold-main);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-dark);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Hamburger */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #1a202c;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background-color: #ffffff;
  border-left: 1px solid #eae2d5;
  box-shadow: -6px 0 25px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
}

.drawer-backdrop.active {
  display: block;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eae2d5;
}

.drawer-header img, .drawer-logo-img {
  height: 52px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.08));
}

.drawer-close {
  background: none;
  border: none;
  color: #1a202c;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.drawer-close:hover {
  color: var(--gold-dark);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem 0;
}

.drawer-link {
  color: #1a202c;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f0eae1;
}

.drawer-link.active, .drawer-link:hover {
  color: var(--gold-dark);
  padding-left: 0.5rem;
}

.drawer-footer {
  padding-top: 1.5rem;
  border-top: 1px solid #eae2d5;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* --- Hero Section (All-Light Luxury Design) --- */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 85% 15%, rgba(198, 161, 91, 0.16) 0%, transparent 55%),
              linear-gradient(135deg, #ffffff 0%, #faf6ef 50%, #f4ece0 100%);
  color: var(--text-dark);
  padding: 5.5rem 0 6.5rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(198, 161, 91, 0.25);
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.05;
  filter: blur(1px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(250, 246, 239, 0.92) 100%
  );
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1.5px solid var(--gold-main);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  width: fit-content;
  box-shadow: 0 2px 10px rgba(198, 161, 91, 0.16);
}

.hero-title {
  font-size: 3.3rem;
  line-height: 1.16;
  color: #111827;
  margin-bottom: 1.2rem;
  font-family: var(--font-display);
}

.hero-title span {
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-style: italic;
}

.hero-desc {
  font-size: 1.12rem;
  line-height: 1.75;
  color: #475467;
  margin-bottom: 1.8rem;
  max-width: 600px;
}

.hero-highlights-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
}

.hero-highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #ffffff;
  border: 1px solid rgba(198, 161, 91, 0.35);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: #2d3748;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-highlight-tag i {
  color: var(--gold-dark);
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Hero Right: Architectural Showcase Card */
.hero-showcase-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(198, 161, 91, 0.45);
  background: #ffffff;
}

.hero-showcase-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.hero-showcase-frame:hover .hero-showcase-img {
  transform: scale(1.03);
}

.hero-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(17, 24, 39, 0.78) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  pointer-events: none;
}

.hero-showcase-top-badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-main);
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-showcase-bottom {
  color: #ffffff;
}

.hero-showcase-bottom h3 {
  color: #ffffff;
  font-size: 1.35rem;
  font-family: var(--font-display);
  margin-bottom: 0.2rem;
}

.hero-showcase-bottom p {
  color: #e5e7eb;
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* --- Redesigned Luxury Booking Console ("and this") --- */
.booking-console-wrapper {
  position: relative;
  z-index: 20;
  margin-top: -3.75rem;
}

.booking-console-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
  border: 1.5px solid var(--gold-main);
  position: relative;
}

.booking-console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.booking-console-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.booking-console-title i {
  color: var(--gold-dark);
}

.booking-console-tag {
  font-size: 0.82rem;
  color: #16a34a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.booking-console-form {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr 1fr 1.3fr;
  gap: 1.25rem;
  align-items: center;
}

.booking-field-segment {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: #faf8f5;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  transition: var(--transition);
}

.booking-field-segment:focus-within {
  border-color: var(--gold-main);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.18);
}

.booking-field-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.booking-field-label i {
  color: var(--gold-dark);
  font-size: 0.85rem;
}

.booking-field-input {
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  outline: none;
  width: 100%;
  cursor: pointer;
}

.booking-field-input option {
  font-weight: 500;
  color: var(--text-dark);
}

.btn-booking-submit {
  height: 100%;
  min-height: 58px;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #d4af37 0%, var(--gold-main) 50%, var(--gold-dark) 100%);
  color: #ffffff;
  border: 1.5px solid var(--gold-main);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.btn-booking-submit:hover {
  background: linear-gradient(135deg, #dfbc4b 0%, #b8860b 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(198, 161, 91, 0.45);
  color: #ffffff;
}

.btn-booking-submit-sub {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Stat Strip --- */
.stat-strip {
  background-color: #ffffff;
  color: var(--text-dark);
  padding: 3rem 0;
  border-top: 1px solid #eae2d5;
  border-bottom: 1px solid #eae2d5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
  padding: 0 1rem;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(198, 161, 91, 0.3);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.88rem;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* --- Room Cards & Grid --- */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.room-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(198, 161, 91, 0.5);
}

.room-card-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
  background-color: #f3eee3;
}

.room-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-card-img {
  transform: scale(1.06);
}

.room-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #ffffff;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold-main);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.room-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-title {
  font-size: 1.45rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.room-desc {
  font-size: 0.94rem;
  color: var(--text-body);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.room-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-card);
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: #faf7f2;
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid #eae2d5;
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* Image Fallback System */
.img-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #faf6ee 0%, #f1e7d5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  text-align: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.img-fallback::before {
  content: "SE";
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(198, 161, 91, 0.12);
  position: absolute;
  font-weight: 800;
}

.img-fallback svg {
  width: 42px;
  height: 42px;
  margin-bottom: 0.5rem;
  stroke: var(--gold-dark);
}

.img-fallback-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- Facilities Section --- */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.facility-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-main);
}

.facility-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.12);
  border: 1.5px solid var(--gold-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.facility-card:hover .facility-icon-box {
  background: var(--gold-main);
  color: #ffffff;
  transform: scale(1.08);
}

.facility-title {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.facility-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* --- Atithi Restaurant Highlight --- */
.restaurant-section {
  background-color: #faf7f2;
  color: var(--text-body);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #eae2d5;
  border-bottom: 1px solid #eae2d5;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.restaurant-content {
  position: relative;
  z-index: 2;
}

.restaurant-logo-preview {
  height: 60px;
  margin-bottom: 1.5rem;
}

.restaurant-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.rest-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.rest-feature-item svg {
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.rest-feature-text h4 {
  color: var(--text-dark);
  font-size: 1.05rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.rest-feature-text p {
  color: #5b697e;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.restaurant-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}

.restaurant-img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 240px;
  border: 2px solid rgba(198, 161, 91, 0.35);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.restaurant-img-card:first-child {
  transform: translateY(-15px);
}

.restaurant-img-card:last-child {
  transform: translateY(15px);
}

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

/* --- Dwarka Attractions --- */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.attraction-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-main);
}

.attraction-img-wrapper {
  height: 200px;
  position: relative;
  background-color: #f3eee3;
  overflow: hidden;
}

.attraction-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.attraction-card:hover .attraction-img {
  transform: scale(1.06);
}

.attraction-distance-badge {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  color: var(--gold-dark);
  border: 1.5px solid var(--gold-main);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.attraction-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - 200px);
}

.attraction-location-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.55rem;
  background-color: rgba(198, 161, 91, 0.1);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold-main);
}

.attraction-location-bar i {
  color: var(--gold-main);
  font-size: 0.85rem;
}

.attraction-title {
  font-size: 1.22rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.attraction-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 1.1rem;
  flex-grow: 1;
}

.attraction-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-deep);
  background-color: #faf7f2;
  border: 1px solid var(--border-card);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-decoration: none;
  width: fit-content;
}

.attraction-map-btn:hover {
  background-color: var(--gold-main);
  color: #ffffff;
  border-color: var(--gold-main);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(198, 161, 91, 0.28);
}

/* --- Gallery & Lightbox --- */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.4rem;
  background: #ffffff;
  color: var(--text-dark);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-main);
  color: #ffffff;
  border-color: var(--gold-main);
  box-shadow: 0 4px 14px rgba(198, 161, 91, 0.35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-card);
  background: #ffffff;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(17, 24, 39, 0.8) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: #ffffff;
  transition: var(--transition);
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-title {
  font-size: 1.05rem;
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.gallery-item-category {
  font-size: 0.75rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-container {
  position: relative;
  max-width: 900px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border);
}

.lightbox-caption {
  margin-top: 1rem;
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--gold-main);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--gold-border);
  color: var(--text-dark);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--gold-main);
  color: #ffffff;
}

.lightbox-prev { left: -65px; }
.lightbox-next { right: -65px; }

@media (max-width: 768px) {
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #faf5ed 0%, #f3ebdd 100%);
  color: var(--text-dark);
  padding: 4.5rem 0;
  position: relative;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  text-align: center;
}

.cta-banner-content {
  max-width: 750px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: 2.5rem;
  color: #121c2a;
  margin-bottom: 1rem;
}

.cta-banner-desc {
  font-size: 1.1rem;
  color: #475467;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* --- Contact Page Styles --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: flex-start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--gold-main);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.12);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-text h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  font-family: var(--font-sans);
}

.contact-card-text p, .contact-card-text a {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 0;
  display: block;
}

.contact-form-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-md);
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.45rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: #faf8f5;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--gold-main);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.18);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group-full {
  margin-bottom: 1.25rem;
}

.map-wrapper {
  margin-top: 3.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Page Header / Subpage Banner --- */
.subpage-banner {
  background: radial-gradient(circle at 85% 20%, rgba(198, 161, 91, 0.14) 0%, transparent 60%),
              linear-gradient(135deg, #ffffff 0%, #faf6ef 50%, #f4ede1 100%);
  color: var(--text-dark);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(198, 161, 91, 0.25);
  position: relative;
}

.subpage-title {
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #64748b;
}

.breadcrumb a {
  color: var(--gold-dark);
  font-weight: 600;
}

.breadcrumb span {
  color: #94a3b8;
}

/* --- Room Details Specifics --- */
.room-detail-section {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.room-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.room-detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.room-detail-img-main {
  grid-column: 1 / -1;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-card);
}

.room-detail-img-sub {
  height: 160px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-card);
}

.room-detail-img-main img, .room-detail-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.amenity-check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
}

.amenity-check-item svg {
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* --- Footer (All-Light Luxury Design) --- */
.site-footer {
  background-color: #f6f1ea;
  color: #4a5568;
  padding: 4.5rem 0 1.5rem;
  border-top: 2px solid var(--gold-main);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand img, .footer-logo-img {
  height: 85px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #4a5568;
  margin-top: 1.2rem;
  max-width: 320px;
}

.footer-management {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #8a6518;
  margin-top: 0.5rem;
  background: #f4ead7;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(198, 161, 91, 0.4);
}

.footer-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: #121c2a;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background-color: var(--gold-main);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #4a5568;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--gold-dark);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #4a5568;
}

.footer-contact-item svg {
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #e5dccf;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-bottom a {
  color: var(--gold-dark);
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 9990;
  transition: var(--transition);
  text-decoration: none;
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.floating-whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: #ffffff;
  color: var(--text-dark);
  border: 1px solid var(--gold-main);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.floating-whatsapp:hover .floating-whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-showcase-img {
    height: 380px;
  }
  .booking-console-form {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .restaurant-grid, .contact-grid, .room-detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .top-bar-right {
    display: none;
  }
  .hero-section {
    padding: 3.5rem 0 5.5rem;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-showcase-img {
    height: 300px;
  }
  .section-title {
    font-size: 2rem;
  }
  .booking-console-wrapper {
    margin-top: -2.5rem;
  }
  .booking-console-card {
    padding: 1.25rem;
  }
  .booking-console-form {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .restaurant-visual {
    grid-template-columns: 1fr;
  }
  .restaurant-img-card:first-child, .restaurant-img-card:last-child {
    transform: none;
  }
}
