:root {
  --ivory:   #faf7f2;
  --ivory-dark: #f0ebe1;
  --navy:    #1a2744;
  --navy-deep: #0f1a30;
  --gold:    #c9933a;
  --saffron: #d4692e;
  --text:    #2c2424;
  --text-muted: #7a7068;
  --white:   #ffffff;
  --border:  rgba(26,39,68,0.12);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--ivory);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── NAV ───────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  background: rgba(10,16,28,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition);
}
nav.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 4px 32px rgba(0,0,0,0.24);
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-svg {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-book-btn {
  background: var(--saffron);
  color: var(--white) !important;
  padding: 8px 22px !important;
  border-radius: 3px;
  font-weight: 600 !important;
}
.nav-book-btn::after { display: none; }
.nav-book-btn:hover { background: var(--gold); color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--navy-deep);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 400;
  color: var(--white); text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-book-btn {
  background: var(--saffron) !important;
  color: var(--white) !important;
  padding: 14px 40px !important;
  font-size: 1.1rem !important;
  border-radius: 4px;
}

/* ─── HERO ──────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,16,28,0.55) 0%,
      rgba(10,16,28,0.30) 40%,
      rgba(10,16,28,0.72) 100%),
    url('https://thesomnathgateway.com/wp-content/uploads/2026/03/TSG-Exterior-1-scaled.avif') center/cover no-repeat;
  /* ↑ Replace with your actual hero image */
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

/* Fallback gradient if image fails */
.hero-bg-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0f1a30 0%, #1a2744 50%, #2a3a5c 100%);
  z-index: -1;
}

/* Decorative line */
.hero-line {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 72px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), var(--gold));
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 24px;
  max-width: 820px;
  animation: fadeUp 1.1s ease both;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-badge::before, .hero-badge::after {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300; line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.hero-title em {
  font-style: italic; font-weight: 400;
  color: var(--gold);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  margin-bottom: 44px;
}
.hero-tagline span {
  color: rgba(255,255,255,0.38);
  margin: 0 10px;
}

.hero-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.btn-primary {
  background: var(--saffron);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 15px 40px;
  border: 2px solid var(--saffron);
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 15px 40px;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute; bottom: 88px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; opacity: 0.5; }

/* ─── BOOKING BAR ───────────────────────────────── */
.booking-bar {
  background: var(--navy);
  padding: 0 40px;
}
.booking-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: stretch;
  min-height: 70px;
}
.booking-field {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 14px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.booking-field label {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 4px;
  line-height: normal;
}
.booking-field input, .booking-field select {
  background: transparent; border: none; outline: none;
  color: var(--white); font-family: var(--font-body);
  font-size: 0.88rem; font-weight: 400;
  width: 100%; cursor: pointer;
  padding: 0;
  border-radius: 0;
}
.booking-field input::placeholder { color: rgba(255,255,255,0.45); }
.booking-field select option { background: var(--navy); color: var(--white); }
/* ─── GUEST INPUT & COUNTER ────────────────────── */
.counter-wrap { display: flex; align-items: center; gap: 10px; }

.counter-btn {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3); padding: 0;
  background: transparent; color: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all var(--transition);
}
.counter-btn:hover { border-color: var(--gold); color: var(--gold); }

/* The Input Box */
.booking-field input.guest-input {
  background: transparent; border: none; outline: none;
  color: var(--white); font-family: var(--font-body);
  font-size: 1rem; font-weight: 500;
  width: 35px; text-align: center;
  -moz-appearance: textfield; /* Hides arrows in Firefox */
}

/* Hides browser arrows in Chrome/Safari/Edge */
.guest-input::-webkit-outer-spin-button,
.guest-input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}

.booking-submit {
  background: var(--saffron); border: none;
  color: var(--white); font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0 36px; cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  border-radius: 0;
}
.booking-submit:hover { background: var(--gold); }

/* ─── COMMON SECTION STYLES ─────────────────────── */
section { padding: 88px 40px; }

.section-label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 1rem; line-height: 1.75;
  color: var(--text-muted); max-width: 540px;
}

.container { max-width: 1200px; margin: 0 auto; }

/* ─── ABOUT ─────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; border-radius: 4px;
  background: linear-gradient(135deg, #c9933a22, #1a274422),
              url('https://thesomnathgateway.com/wp-content/uploads/2026/03/TSG-FRONT.jpg') center/cover;
  /* fallback gradient pattern */
}
.about-img-card {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--navy); color: var(--white);
  padding: 24px 28px; border-radius: 4px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
}
.about-img-card .num {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.about-img-card .lbl {
  font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.about-text .section-body { max-width: 100%; }
.about-stats {
  display: flex; gap: 40px; margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat .val {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 400; color: var(--navy);
}
.stat .val span { color: var(--gold); }
.stat .desc {
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  margin-top: 3px;
}

/* ─── ROOMS ─────────────────────────────────────── */
.rooms-section { background: var(--navy-deep); }
.rooms-section .section-title,
.rooms-section .section-label { color: var(--white); }
.rooms-section .section-title em { color: var(--gold); }
.rooms-section .section-body { color: rgba(255,255,255,0.55); }

.rooms-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  max-width: 1200px; margin: 0 auto 52px;
  gap: 32px;
}
.rooms-header .section-body { margin-bottom: 0; }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 1200px; margin: 0 auto;
}
.room-card {
  position: relative; overflow: hidden; border-radius: 4px;
  cursor: pointer;
  background: var(--navy);
}
.room-card:first-child {
  grid-column: 1 / 2; grid-row: 1 / 3;
}
.room-img {
  width: 100%;
  height: 100%; min-height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.room-card:first-child .room-img { min-height: 100%; }
.room-card:hover .room-img { transform: scale(1.05); }

/* Room image backgrounds (replace with real images) */
.room-img-1 {
  background:
    linear-gradient(to bottom, rgba(10,16,28,0.1), rgba(10,16,28,0.7)),
    url('https://thesomnathgateway.com/wp-content/uploads/2026/03/Elegance-Room.avif') center/cover;
  min-height: 520px !important;
}
.room-img-2 {
  background:
    linear-gradient(to bottom, rgba(10,16,28,0.1), rgba(10,16,28,0.7)),
    url('https://thesomnathgateway.com/wp-content/uploads/2026/03/Executive-Twin-Room-1-scaled.jpg') center/cover;
}
.room-img-3 {
  background:
    linear-gradient(to bottom, rgba(10,16,28,0.1), rgba(10,16,28,0.7)),
    url('https://thesomnathgateway.com/wp-content/uploads/2026/03/Queen-Suite-scaled.jpg') center/cover;
}
.room-img-4 {
  background:
    linear-gradient(to bottom, rgba(10,16,28,0.1), rgba(10,16,28,0.7)),
    url('https://thesomnathgateway.com/wp-content/uploads/2026/03/King-Suite-2-scaled.jpg') center/cover;
}
.room-img-5 {
  background:
    linear-gradient(to bottom, rgba(10,16,28,0.1), rgba(10,16,28,0.7)),
    url('https://thesomnathgateway.com/wp-content/uploads/2026/03/Family-Room-1-scaled.jpg') center/cover;
}

.room-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px; background: linear-gradient(to top, rgba(10,16,28,0.92), transparent);
}
.room-type {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.room-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 400;
  color: var(--white); line-height: 1.2;
}
.room-detail {
  font-size: 0.75rem; color: rgba(255,255,255,0.55);
  margin-top: 6px;
}
.room-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.room-card:hover .room-arrow { background: var(--saffron); border-color: var(--saffron); }
.room-arrow svg { width: 14px; color: white; }

.rooms-cta { text-align: center; margin-top: 44px; }

/* ─── WHY TSG ───────────────────────────────────── */
.why-section { background: var(--ivory-dark); }
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; max-width: 1200px; margin: 52px auto 0;
  border: 1px solid var(--border);
}
.why-item {
  padding: 48px 36px;
  background: var(--ivory-dark);
  border-right: 1px solid var(--border);
  transition: background var(--transition);
  position: relative; overflow: hidden;
}
.why-item:last-child { border-right: none; }
.why-item:hover { background: var(--white); }

.why-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(201,147,58,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.why-icon svg { width: 22px; color: var(--gold); }
.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400;
  color: var(--navy); margin-bottom: 12px;
}
.why-item p {
  font-size: 0.9rem; line-height: 1.75;
  color: var(--text-muted);
}
.why-number {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 300;
  color: var(--gold); /*rgba(26,39,68,0.06); */
  line-height: 1;
  user-select: none;
}

/* ─── DINING ────────────────────────────────────── */
.dining-section-wrap {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 3px;
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.12);
}
.dining-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}
.dining-grid.reverse { direction: rtl; }
.dining-grid.reverse > * { direction: ltr; }

.dining-img {
  min-height: 420px;
  background-size: cover !important;
  background-position: center !important;
}
.dining-img-tsg {
  background:
    linear-gradient(to right, rgba(10,16,28,0.05), rgba(10,16,28,0.3)),
    url('https://thesomnathgateway.com/wp-content/uploads/2026/03/TSG-Restaurant-scaled.jpg') center/cover;
}
.dining-img-swadsagar {
  background:
    linear-gradient(to left, rgba(10,16,28,0.05), rgba(10,16,28,0.3)),
    url('https://thesomnathgateway.com/wp-content/uploads/2026/03/SWAD-SAGAR.jpg') center/cover;
}
.dining-text {
  padding: 56px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.dining-text-dark {
  background: var(--navy-deep);
}
.dining-text-warm {
  background: var(--navy);
}
.dining-text .section-label { color: var(--gold); }
.dining-text .section-title {
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  margin-bottom: 6px;
}
.dining-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold); /*rgba(255,255,255,0.55);*/
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.dining-text .section-body { color: rgba(255,255,255,0.6); max-width: 100%; margin-bottom: 28px; }
.dining-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.dining-badge::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--gold);
}
.dining-tags {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px;
}
.dining-tag {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 2px;
  padding: 6px 14px; color: rgba(255,255,255,0.7);
}

/* ─── EXPLORE ───────────────────────────────────── */
.explore-section { background: var(--ivory); }

/* Featured Somnath card */
.explore-featured {
  position: relative; border-radius: 6px; overflow: hidden;
  cursor: pointer; height: 420px;
  margin-bottom: 0;
}
.explore-featured-img {
  width: 100%; height: 100%;
  background: linear-gradient(120deg, #1a2744, #2a3a5c);
  transition: transform 0.6s ease;
}
.explore-featured:hover .explore-featured-img { transform: scale(1.03); }
.explore-featured-overlay {
  position: absolute; inset: 0;
 background: linear-gradient(to right, rgb(10 16 28 / 95%) 30%, rgb(10 16 28 / 38%) 100%),
	url('https://thesomnathgateway.com/wp-content/uploads/2026/03/download.jpeg') center/cover;
  display: flex; flex-direction: column; justify-content: center;
  padding: 52px;
}
.explore-featured-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.explore-featured-badge::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}
.explore-featured-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; color: var(--white); line-height: 1.1;
  margin-bottom: 12px;
}
.explore-featured-title em { font-style: italic; color: var(--gold); }
.explore-featured-desc {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  max-width: 420px; line-height: 1.7; margin-bottom: 28px;
}
.explore-quick-links {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.explore-quick-link {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px; padding: 8px 16px;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}
.explore-quick-link:hover { border-color: var(--gold); color: var(--gold); }

/* Circuit 4-card row */
.explore-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; margin: 24px 0 0;
}
.explore-card {
  border-radius: 4px; overflow: hidden;
  position: relative; cursor: pointer;
}
.explore-card-img {
  aspect-ratio: 4/5;
  background: var(--navy);
  position: relative; overflow: hidden;
  transition: transform 0.6s ease;
}
.explore-card:hover .explore-card-img { transform: scale(1.04); }

/* Gradient placeholders */
.exp-1 { background: linear-gradient(160deg, #1a3060, #3a5090);background: url('https://thesomnathgateway.com/wp-content/uploads/2026/03/Dwarka.webp') center/cover; }
.exp-2 { background: linear-gradient(160deg, #1a3060, #3a5090);background: url('https://thesomnathgateway.com/wp-content/uploads/2026/03/girrlionss.webp') center/cover; }
.exp-3 { background: linear-gradient(160deg, #1a3060, #3a5090);background: url('https://thesomnathgateway.com/wp-content/uploads/2026/03/junagadh.webp') center/cover; }
.exp-4 { background: linear-gradient(160deg, #1a3060, #3a5090);background: url('https://thesomnathgateway.com/wp-content/uploads/2026/03/diu.webp') center/cover; }
.explore-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgb(0 0 0) 0%, transparent 80%);
  padding: 20px; display: flex; flex-direction: column; justify-content: flex-end;
}
.explore-dist {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 5px;
}
.explore-name {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 400; color: var(--white);
  line-height: 1.2; margin-bottom: 6px;
}
.explore-desc {
  font-size: 0.75rem; color: rgba(255,255,255,0.55);
  line-height: 1.5; margin-bottom: 12px;
}
.explore-learn-more {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap var(--transition);
}
.explore-learn-more:hover { gap: 9px; }

/* ─── REVIEWS ───────────────────────────────────── */
.reviews-section { background: var(--ivory-dark); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; max-width: 1200px; margin: 35px auto 0;
}
.review-card {
  background: var(--white); border-radius: 4px;
  padding: 36px; position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.review-stars {
  display: flex; gap: 3px; margin-bottom: 18px;
}
.review-stars svg { width: 14px; color: var(--gold); fill: var(--gold); }
.review-text {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.08rem; line-height: 1.65; color: var(--text);
  margin-bottom: 24px;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--gold); font-weight: 400;
}
.review-name { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.review-source { font-size: 0.72rem; color: var(--text-muted); }
.review-quote {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-display); font-size: 4rem;
  color: var(--gold); opacity: 0.18; line-height: 1; user-select: none;
}

/* ─── CTA BANNER ────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 100px 40px;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(15,26,48,0.88), rgba(15,26,48,0.88)),
    url('https://thesomnathgateway.com/wp-content/uploads/2026/03/Somnath-Temple.webp') center/cover fixed;
}
/* Decorative gold rule */
.cta-banner::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.cta-banner .section-label { color: var(--gold); margin-bottom: 18px; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300; color: var(--white);
  line-height: 1.15; max-width: 720px; margin: 0 auto 36px;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  padding: 64px 40px 36px;
}
.footer-logo-text { color:#ffffff; font-family:'Playfair Display', serif; font-size:22px; text-transform:uppercase; line-height:1.2;margin-bottom: 12px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; max-width: 1200px; margin: 0 auto 48px;
}
.footer-brand .nav-logo-main { font-size: 1.4rem; display: block; margin-bottom: 4px; }
.footer-brand .nav-logo-sub { font-size: 0.62rem; display: block; margin-bottom: 18px; }
.footer-brand p {
  font-size: 0.84rem; line-height: 1.7;
  color: rgba(255,255,255,0.45); max-width: 260px;
}
.footer-col h4 {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.84rem; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact p {
  font-size: 0.84rem; line-height: 1.7;
  color: rgba(255,255,255,0.5); margin-bottom: 8px;
}
.footer-contact a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.76rem; color: rgba(255,255,255,0.28);
  flex-wrap: wrap; gap: 12px;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.38);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,0.50);
}
.whatsapp-float svg { width: 26px; color: white; }

/* ─── ANIMATIONS ────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.reveal {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-reveal-ready .reveal {
  opacity: 1; transform: translateY(0);
}
.js-reveal-ready .reveal {
  opacity: 0; transform: translateY(28px);
}
.js-reveal-ready .reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .room-card:first-child { grid-column: 1 / 3; grid-row: auto; }
  .room-card:first-child .room-img { min-height: 300px !important; }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
   section { padding: 36px 16px; }
   .rooms-header { gap: 0; margin: 0 auto 26px; }
	footer{ padding: 40px 40px 40px; }
   nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.8rem; }
  .booking-bar { padding: 0; }
  .booking-bar-inner {
    flex-direction: column; min-height: auto;
  }
  .booking-field {
    border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 14px 20px;
  }
  .booking-submit { padding: 18px; font-size: 0.8rem; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-card { right: 0; bottom: -20px; }
  .about-stats { 
	  /*flex-wrap: wrap; gap: 24px;*/ 
	    margin-top: 14px; padding-top: 14px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        align-items: start;
        text-align: center;
    }
    .about-stats .stat {
        width: auto;
        min-width: 0;
        padding: 0 4px;
        text-align: center;
    }
    .about-stats .val,
    .about-stats .desc {
        text-align: center;
    }
    .about-stats .desc {
        font-size: 11px;
        line-height: 1.45;
        letter-spacing: 0.08em;
        white-space: normal;
        word-break: normal;
        overflow-wrap: break-word;
    }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card:first-child { grid-column: 1; }
  .rooms-header { flex-direction: column; align-items: flex-start; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none; border-bottom: 1px solid var(--border); }
  .why-item:last-child { border-bottom: none; }
  .dining-grid { display: flex; flex-direction: column-reverse; direction: ltr; }
  .dining-grid.reverse { flex-direction: column-reverse; direction: ltr; }
  .dining-img { min-height: 260px; }
  .dining-text { padding: 40px 28px; }
  .explore-featured { height: 340px; }
  .explore-featured-overlay { padding: 28px; }
  .explore-featured-title { font-size: 2rem; }
  .explore-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
	.nav-logo {
		font-size: 15px !important;
		letter-spacing: 1px !important;
		white-space: nowrap;
	}
	.footer-logo-text {
		font-size: 18px !important;
        letter-spacing: 1px !important;
        white-space: nowrap;
		margin-bottom: 10px;
    }
	
}
@media (max-width: 480px) {
  .explore-featured { height: 490px; }
  .explore-quick-links { flex-direction: column; gap: 8px; }
  .explore-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 260px; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-col ul li { margin-bottom: 4px; }
}