/* ============================================================
   HOTEL NARMADA SHREE — Premium Hospitality Design System
   Palette: Imperial Gold, Obsidian Midnight, Royal Teal & Silk Pearl
   Typography: Cinzel (Majestic Display Serif) & Plus Jakarta Sans
   Fonts are loaded via <link> tags in HTML for better LCP performance.
   ============================================================ */

:root {
  /* Royal Dark Palette */
  --obsidian: #040914;
  --navy: #08101E;
  --navy-deep: #050A14;
  --navy-surface: #0E182A;
  --navy-light: #16243E;

  /* Imperial Gold System */
  --gold: #DFB76C;
  --gold-deep: #C59B27;
  --gold-light: #F2D898;
  --gold-pale: #FAF0D7;
  --gold-gradient: linear-gradient(135deg, #F2D898 0%, #DFB76C 50%, #9E7624 100%);
  --gold-border: rgba(223, 183, 108, 0.35);
  --gold-glow: 0 0 25px rgba(223, 183, 108, 0.25);

  /* WhatsApp Brand Color */
  --whatsapp: #25D366;
  --whatsapp-hover: #1DA851;

  /* Secondary Accents */
  --teal: #183D38;
  --teal-deep: #0E2A27;
  --teal-accent: #2E6B63;
  --ivory: #FAF7F2;
  --sand: #F4EFE6;
  --sand-deep: #E8DFD0;
  --ink: #111827;
  --ink-soft: #374151;
  --white: #FFFFFF;

  /* Typography */
  --font-display: "Cinzel", "Cormorant Garamond", Georgia, serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Radii & Shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-soft: 0 20px 40px -15px rgba(4, 9, 20, 0.12);
  --shadow-card: 0 14px 35px -10px rgba(4, 9, 20, 0.15);
  --shadow-gold: 0 10px 30px -5px rgba(197, 155, 39, 0.35);
  --shadow-hover: 0 25px 50px -12px rgba(4, 9, 20, 0.25);
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 0.5em;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2.2rem, 5vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.6vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.85rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink-soft); font-size: 1.02rem; font-weight: 450; word-wrap: break-word; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Luxury Text Accents */
.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  color: var(--gold-deep);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.eyebrow::before, .eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold-deep);
  display: inline-block;
  opacity: 0.7;
}

/* ---------- Top Bar Above Header ---------- */
.site-top-bar {
  background: var(--obsidian);
  color: rgba(250, 247, 242, 0.9);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(223, 183, 108, 0.2);
  padding: 8px 0;
  position: relative;
  z-index: 201;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.top-info-item svg { color: var(--gold); flex-shrink: 0; }
.top-info-item a:hover { color: var(--gold-light); }

@media (max-width: 768px) {
  .top-info-address { display: none !important; }
  .top-info-phone { margin: 0 auto; }
}

/* ---------- Main Site Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000 !important;
  background: rgba(5, 10, 20, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 183, 108, 0.25);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* When drawer is open: disable header blur */
.site-header.nav-open {
  z-index: 1000 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: #040914 !important;
}

.site-header.scrolled {
  background: rgba(4, 9, 20, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(223, 183, 108, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
  transition: padding 0.4s ease;
}

.site-header.scrolled .header-inner {
  padding: 10px 24px;
}

/* Brand Logo & Title */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.8px solid var(--gold);
  overflow: hidden;
  padding: 2px;
  background: var(--obsidian);
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo-wrap {
  transform: scale(1.04);
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.brand-text {
  font-family: var(--font-display);
  color: var(--ivory);
  line-height: 1.15;
}

.brand-text .name {
  font-size: 1.35rem;
  font-weight: 700;
  display: block;
  letter-spacing: 0.04em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text .place {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.85);
  font-family: var(--font-body);
  font-weight: 600;
}

/* Desktop Navigation Layout */
.main-nav {
  display: flex;
  align-items: center;
}

.mobile-nav-header, .mobile-nav-footer {
  display: none !important;
}

/* Nav links: works for BOTH old (direct a in main-nav) and new (.mobile-nav-links a) structure */
.main-nav > a,
.mobile-nav-links a {
  color: rgba(250, 247, 242, 0.92);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  padding: 8px 2px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

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

.main-nav > a::after,
.mobile-nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold-gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.main-nav > a:hover, .main-nav > a.active,
.mobile-nav-links a:hover, .mobile-nav-links a.active {
  color: var(--gold-light);
}

.main-nav > a:hover::after, .main-nav > a.active::after,
.mobile-nav-links a:hover::after, .mobile-nav-links a.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: rgba(223, 183, 108, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 1.4rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: var(--gold);
  color: var(--obsidian);
}

/* Backdrop Overlay when Drawer is Open — full screen dim behind drawer */
.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 6, 15, 0.7);
  z-index: 100 !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Side Drawer Navigation (< 960px) */
@media(max-width: 960px) {
  .header-inner { padding: 10px 16px; }
  .brand-logo-wrap { width: 48px; height: 48px; }
  .brand-text .name { font-size: 1.18rem; }
  .brand-text .place { font-size: 0.62rem; letter-spacing: 0.18em; }

  .header-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }

  /* Old-style nav (direct a tags) — hide them on mobile, shown via drawer */
  .main-nav > a {
    display: none !important;
  }

  .main-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 82% !important;
    max-width: 320px !important;
    height: 100vh !important;
    /* Proper visible dark navy — NOT near-black */
    background: #0f1c35 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    will-change: transform;
    isolation: isolate;
    border-left: 2px solid rgba(223, 183, 108, 0.4);
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    gap: 0 !important;
    transform: translateX(110%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200 !important;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    overflow-x: hidden;
    /* Ensure drawer ALWAYS receives pointer events */
    pointer-events: auto !important;
  }

  .main-nav.open {
    transform: translateX(0) !important;
  }

  .mobile-nav-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 18px 20px !important;
    border-bottom: 1px solid rgba(223, 183, 108, 0.3) !important;
    background: #0a162a !important;
    flex-shrink: 0 !important;
  }

  .mobile-nav-header .brand-logo-wrap {
    width: 42px !important;
    height: 42px !important;
  }

  .mobile-nav-close {
    background: rgba(223, 183, 108, 0.15) !important;
    border: 1px solid rgba(223, 183, 108, 0.35) !important;
    color: #F2D898 !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    font-size: 1.35rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
  }

  .mobile-nav-close:hover {
    background: #DFB76C !important;
    color: #040914 !important;
  }

  .mobile-nav-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 12px 0 !important;
    flex: 1 !important;
  }

  /* Override the desktop ::after underline for mobile */
  .mobile-nav-links a::after { display: none !important; }

  .mobile-nav-links a {
    display: block !important;
    padding: 16px 24px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #E8DFB8 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: transparent !important;
    transition: background 0.2s, color 0.2s, padding-left 0.2s !important;
    cursor: pointer !important;
    /* CRITICAL: ensure links receive clicks */
    pointer-events: auto !important;
    position: relative !important;
    z-index: 1 !important;
    text-decoration: none !important;
  }

  .mobile-nav-links a:hover,
  .mobile-nav-links a.active {
    background: rgba(223, 183, 108, 0.15) !important;
    color: #F2D898 !important;
    border-left: 3px solid #DFB76C !important;
    padding-left: 21px !important;
  }

  .mobile-nav-footer {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 20px !important;
    border-top: 1px solid rgba(223, 183, 108, 0.3) !important;
    background: #0a162a !important;
    flex-shrink: 0 !important;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn:hover::after { left: 100%; }

.btn-gold {
  background: var(--gold-gradient);
  color: var(--obsidian);
  box-shadow: var(--shadow-gold);
  border-color: rgba(223, 183, 108, 0.6);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(197, 155, 39, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold-border);
  color: var(--ivory);
}

.btn-outline:hover {
  background: rgba(223, 183, 108, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold-border);
  color: var(--gold-light);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--obsidian);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
  font-weight: 700;
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--whatsapp);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.btn-block { width: 100%; }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--obsidian);
  color: var(--ivory);
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 8s ease-out;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, 
    rgba(4, 9, 20, 0.84) 0%, 
    rgba(4, 9, 20, 0.70) 50%, 
    rgba(4, 9, 20, 0.96) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 100px 24px 60px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.18;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85);
  letter-spacing: -0.01em;
}

.hero p.lead {
  color: rgba(250, 247, 242, 0.95);
  max-width: 660px;
  margin: 0 auto 32px;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.7;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-features-strip {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(223, 183, 108, 0.22);
}

.hero-feat-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(250, 247, 242, 0.95);
  letter-spacing: 0.03em;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-feat-badge svg { color: var(--gold); flex-shrink: 0; }

@media(max-width: 600px) {
  .hero-inner { padding: 60px 16px 40px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero-features-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
  }
}

/* ---------- Interior Page Hero ---------- */
.page-hero {
  min-height: 38vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--navy-deep);
  background-size: cover;
  background-position: center;
  color: var(--ivory);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 9, 20, 0.8) 0%, rgba(4, 9, 20, 0.94) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
  max-width: 840px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.8);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { margin: 0 8px; opacity: 0.6; }

/* ---------- Sections ---------- */
section { padding: 80px 0; position: relative; }

@media (max-width: 375px) {
  section { padding: 52px 0; }
  .container { padding: 0 14px; }
}
.section-alt { background: var(--sand); }
.section-navy {
  background: var(--navy-deep);
  color: var(--ivory);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.section-navy h2, .section-navy h3 { color: var(--ivory); }
.section-navy p { color: rgba(250, 247, 242, 0.88); }

.section-head { max-width: 700px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Visual Overlap Collage ---------- */
.overlap-collage {
  position: relative;
  padding-right: 30px;
  padding-bottom: 30px;
}

.overlap-img-main {
  width: 90%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gold-border);
  object-fit: cover;
}

.overlap-img-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 4px solid var(--ivory);
  object-fit: cover;
}

/* ---------- Cards & Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Tablet: grid-4 → 2-col, grid-3 → 1-col */
@media(max-width: 960px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .overlap-collage { padding-right: 0; padding-bottom: 0; margin-top: 24px; }
  .overlap-img-sub { display: none; }
  .overlap-img-main { width: 100%; }
}

/* Mobile: all grids → 1-col */
@media(max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(4, 9, 20, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-border);
}

/* Feature Box */
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(4, 9, 20, 0.08);
  transition: transform 0.3s ease;
}

.feature:hover { transform: translateY(-4px); border-color: var(--gold-border); }

.feature .ic {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(223, 183, 108, 0.15);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
}

.feature h4 { margin: 0 0 6px; font-size: 1.1rem; color: var(--navy); }
.feature p { margin: 0; font-size: 0.94rem; color: var(--ink-soft); }

/* Room Cards */
.room-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(4, 9, 20, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.room-card-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
  cursor: pointer;
}

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

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

.room-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--navy-deep);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.room-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--navy);
  font-weight: 700;
  margin: 8px 0;
}

.room-price small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
}

.tag {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--sand);
  color: var(--teal-deep);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.room-features {
  list-style: none;
  padding: 0;
  margin: 14px 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

.room-features li {
  font-size: 0.86rem;
  color: var(--ink-soft);
  display: flex;
  gap: 6px;
  align-items: center;
}

.room-features li::before {
  content: "✦";
  color: var(--gold-deep);
  font-size: 0.7rem;
}

/* Stat Strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(223, 183, 108, 0.22);
  border-bottom: 1px solid rgba(223, 183, 108, 0.22);
  padding: 36px 0;
  margin-top: 36px;
}

.stat { text-align: center; }
.stat .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat .label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.85);
  font-weight: 600;
}

@media(max-width: 600px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
}

/* Offer Banner */
.offer-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--teal-deep) 100%);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-card);
}

.offer-banner h3 { color: var(--gold-light); margin-bottom: 8px; font-size: 1.6rem; }
.offer-banner p { color: rgba(250, 247, 242, 0.92); margin: 0; max-width: 560px; }

@media(max-width: 600px) {
  .offer-banner { padding: 28px 20px; text-align: center; }
  .offer-banner .btn { width: 100%; }
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid rgba(4, 9, 20, 0.12);
  transition: all 0.3s ease;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 8px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.08rem;
}

.faq-q .plus {
  font-size: 1.3rem;
  color: var(--gold-deep);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 8px 20px; margin: 0; color: var(--ink-soft); }

/* Gallery Filters & Grid */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.gfilter {
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid rgba(4, 9, 20, 0.15);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  cursor: pointer;
  color: var(--navy);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.gfilter.active, .gfilter:hover {
  background: var(--navy);
  color: var(--gold-light);
  border-color: var(--navy);
  box-shadow: var(--shadow-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  height: 260px;
  border: 1px solid rgba(4, 9, 20, 0.08);
}

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

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

.gallery-grid figcaption {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 9, 20, 0.9) 0%, rgba(4, 9, 20, 0.2) 60%, transparent 100%);
  color: var(--ivory);
  padding: 16px;
  display: flex;
  align-items: flex-end;
  font-family: var(--font-display);
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-grid figure:hover figcaption { opacity: 1; }

@media(max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Lightbox Modal with Carousel Arrows */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(4, 9, 20, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
  box-shadow: 0 25px 60px rgba(0,0,0,0.85);
  object-fit: contain;
}

.lightbox-caption {
  color: var(--gold-light);
  font-family: var(--font-display);
  text-align: center;
  margin-top: 14px;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.lightbox-counter {
  color: rgba(250, 247, 242, 0.7);
  font-family: var(--font-body);
  font-size: 0.8rem;
  margin-top: 4px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(223, 183, 108, 0.15);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1005;
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(4, 9, 20, 0.75);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1005;
}

.lightbox-nav:hover {
  background: var(--gold);
  color: var(--obsidian);
}

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

/* Contact Form Styling */
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 700;
}

.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(4, 9, 20, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

/* ---------- ROYAL ARCHED FOOTER ---------- */
footer {
  background: var(--obsidian);
  color: rgba(250, 247, 242, 0.88);
  padding: 0 0 30px;
  border-top: 1px solid var(--gold-border);
  position: relative;
}

.footer-arch-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  margin-top: -26px;
}

.footer-arch-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 54px;
  background: var(--obsidian);
  border: 1px solid var(--gold-border);
  border-bottom: none;
  border-radius: 40px 40px 0 0;
  color: var(--gold-light);
  margin: 0 auto;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.5);
}

.footer-arch-badge svg { color: var(--gold); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr;
  gap: 36px;
  margin-bottom: 44px;
}

/* Enlarged Footer Logo */
.footer-grid .brand-logo-wrap {
  width: 68px;
  height: 68px;
  border-width: 2px;
}

@media(max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

footer h4 {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 8px;
}

footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 12px; font-size: 0.94rem; display: flex; align-items: center; gap: 10px; }
footer li a { display: inline-flex; align-items: center; gap: 8px; }
footer li a:hover { color: var(--gold-light); }

.footer-link-arrow { color: var(--gold); font-size: 0.9rem; }
.footer-icon-wrap { color: var(--gold); flex: 0 0 auto; width: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(223, 183, 108, 0.22);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: rgba(250, 247, 242, 0.75);
}

.footer-tagline-flourish {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-tagline-flourish::before, .footer-tagline-flourish::after {
  content: "✦";
  font-style: normal;
  font-size: 0.7rem;
  color: var(--gold);
}

@media(max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* Floating Official WhatsApp CTA */
.float-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover { transform: scale(1.1); box-shadow: 0 15px 35px rgba(0,0,0,0.6); }
.float-btn.wa { background: var(--whatsapp); color: #FFFFFF; }
.float-btn.call { background: var(--gold-deep); color: var(--obsidian); }

/* Scroll-to-Top Button */
#scrollTopBtn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(4, 9, 20, 0.92);
  border: 1.5px solid var(--gold-border);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

#scrollTopBtn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  background: var(--gold);
  color: var(--obsidian);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(197, 155, 39, 0.45);
  transform: translateY(-3px);
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Book Direct Benefits Strip ─────────────────────────────────────────── */
.book-direct-strip {
  background: linear-gradient(135deg, #0a1628 0%, #0f1c35 50%, #0a1628 100%);
  border-top: 1px solid rgba(223,183,108,0.2);
  border-bottom: 1px solid rgba(223,183,108,0.2);
  padding: 20px 0;
}

.book-direct-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.book-direct-label {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.book-direct-benefits {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}

.benefit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(223,183,108,0.1);
  border: 1px solid rgba(223,183,108,0.25);
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(250,247,242,0.92);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.benefit-badge:hover {
  background: rgba(223,183,108,0.18);
  border-color: rgba(223,183,108,0.5);
  color: var(--gold-light);
}

.benefit-badge .tick {
  color: #4ade80;
  font-size: 0.9rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .book-direct-inner { flex-direction: column; gap: 14px; text-align: center; }
  .book-direct-label { font-size: 0.78rem; }
  .benefit-badge { font-size: 0.72rem; padding: 5px 10px; }
}

/* ── Hotel Statistics Section ───────────────────────────────────────────── */
.hotel-stats-section {
  background: var(--ivory);
  padding: 60px 0;
}

.hotel-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid rgba(223,183,108,0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hotel-stat-item {
  background: #fff;
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid rgba(223,183,108,0.12);
  transition: background 0.3s;
}

.hotel-stat-item:last-child { border-right: none; }

.hotel-stat-item:hover { background: var(--sand); }

.hotel-stat-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(223,183,108,0.12), rgba(223,183,108,0.06));
  border: 1px solid rgba(223,183,108,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold-deep);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hotel-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hotel-stat-item { padding: 28px 16px; border-bottom: 1px solid rgba(223,183,108,0.12); }
}

/* ── Google Reviews Section ─────────────────────────────────────────────── */
.reviews-section { background: var(--sand); }

.overall-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(223,183,108,0.3);
  border-radius: 16px;
  padding: 20px 32px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-soft);
}

.rating-big-num {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.rating-stars { color: #F59E0B; font-size: 1.4rem; letter-spacing: 2px; }
.rating-meta { font-size: 0.82rem; color: var(--ink-soft); font-weight: 500; }
.rating-powered { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--ink-soft); margin-top: 4px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.review-quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  color: rgba(223,183,108,0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.reviewer-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.reviewer-info .reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  display: block;
}

.reviewer-info .reviewer-date {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.review-stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 12px; }

.review-text {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.72;
  margin: 0;
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .overall-rating-badge { flex-wrap: wrap; justify-content: center; text-align: center; padding: 16px 20px; }
  .rating-big-num { font-size: 2.6rem; }
}

/* ── Room Detail Layout Mobile Fix ──────────────────────────────────────── */
.room-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .room-detail-layout { grid-template-columns: 1fr; }
}

/* ── Gallery Improvements ───────────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.gfilter {
  padding: 8px 20px;
  min-height: 40px;
  min-width: 80px;
  touch-action: manipulation;
}

/* ── Page Body Bottom Padding (prevent float-cta overlap) ───────────────── */
body { padding-bottom: 0; }

@media (max-width: 768px) {
  body { padding-bottom: 100px; }
}

/* ── Sticky Booking Bar ─────────────────────────────────────────────────── */
.sticky-booking-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid rgba(223,183,108,0.4);
  box-shadow: 0 -8px 30px rgba(4,9,20,0.12);
  z-index: 900;
  padding: 12px 20px;
  display: none;
}

.sticky-booking-bar.visible { display: flex; }
.sticky-bar-inner { display: flex; align-items: center; gap: 12px; width: 100%; max-width: 900px; margin: 0 auto; }
.sticky-bar-price { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--navy); white-space: nowrap; }
.sticky-bar-price small { font-size: 0.7rem; font-weight: 500; color: var(--ink-soft); display: block; }
.sticky-bar-ctas { display: flex; gap: 10px; flex: 1; justify-content: flex-end; }

@media (max-width: 600px) {
  .sticky-bar-price { display: none; }
  .sticky-bar-ctas { width: 100%; }
  .sticky-bar-ctas .btn { flex: 1; font-size: 0.8rem; padding: 12px 8px; }
}

/* ── Keyboard focus-visible accessibility styles ─────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

.btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

/* ── Explore Omkareshwar Section ────────────────────────────────────────── */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 960px) { .explore-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .explore-grid { grid-template-columns: 1fr; } }

.explore-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(4, 9, 20, 0.08);
  transition: all 0.4s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.explore-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-border);
}

.explore-card-img {
  height: 180px;
  overflow: hidden;
  background: var(--navy-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

.explore-card:hover .explore-card-img img { transform: scale(1.08); }

.explore-card-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.explore-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.explore-card-body h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.explore-card-body p {
  font-size: 0.87rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}

/* ── Final CTA Section ─────────────────────────────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0e1e38 50%, var(--teal-deep) 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(223, 183, 108, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  margin-bottom: 16px;
}

.cta-final p {
  color: rgba(250, 247, 242, 0.88);
  max-width: 580px;
  margin: 0 auto 40px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.cta-final-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 500px) {
  .cta-final-actions { flex-direction: column; align-items: stretch; padding: 0 16px; }
  .cta-final-actions .btn { width: 100%; }
}

/* ── theme-color override (Android browser bar) ─────────────────────────── */

