/* ===================================================================
   HOTEL ASTHA INN — MAIN STYLESHEET
   Gaya, Bihar — Gateway to the Buddhist Heritage Circuit

   DESIGN TOKENS
   Palette:
     --maroon-900 #3E0B10   deepest shadow / overlays
     --maroon-800 #5C1018   primary brand maroon
     --maroon-600 #7A1B25   lighter maroon (hovers, gradients)
     --gold-600   #A9812F   deep gold (text on light, borders)
     --gold-500   #C6A15B   primary gold accent
     --gold-300   #E8CC8E   pale gold highlight
     --cream-100  #FBF6EC   page background
     --cream-200  #F3EAD8   section alt background
     --ink-900    #2B211D   body text
     --stone-500  #7A6F65   muted / secondary text
     --white      #FFFFFF

   Type:
     Display  — 'Marcellus', serif   (carved, inscription-like — echoes the
                temple stonework motifs on the hotel's own signage)
     Body/UI  — 'Poppins', sans-serif
     Eyebrow  — Poppins, uppercase, letter-spaced

   Signature element: the "Threshold Arch" — derived from the hotel's own
   carved wooden entrance doors. A repeating arch silhouette is used as a
   section divider, card crown, and image frame throughout the site.
=================================================================== */

:root {
  /* Colors */
  --maroon-900: #3E0B10;
  --maroon-800: #5C1018;
  --maroon-700: #6B1420;
  --maroon-600: #7A1B25;
  --maroon-500: #8F2A34;

  --gold-700: #8C6A2E;
  --gold-600: #A9812F;
  --gold-500: #C6A15B;
  --gold-400: #D4B679;
  --gold-300: #E8CC8E;

  --cream-100: #FBF6EC;
  --cream-200: #F3EAD8;
  --cream-300: #ECE0C6;

  --ink-900: #2B211D;
  --ink-700: #423731;
  --stone-500: #7A6F65;
  --stone-300: #B9AEA1;

  --white: #FFFFFF;

  /* Typography */
  --font-display: 'Marcellus', 'Georgia', serif;
  --font-body: 'Poppins', -apple-system, sans-serif;

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #D4B679 0%, #C6A15B 45%, #A9812F 100%);
  --grad-maroon: linear-gradient(135deg, #6B1420 0%, #4A0D14 100%);
  --grad-overlay: linear-gradient(180deg, rgba(46,10,14,0.35) 0%, rgba(30,7,10,0.78) 100%);

  /* Shadows */
  --shadow-soft: 0 10px 30px rgba(60, 30, 20, 0.08);
  --shadow-card: 0 14px 40px rgba(60, 30, 20, 0.12);
  --shadow-lift: 0 24px 50px rgba(60, 30, 20, 0.18);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background-color: var(--cream-100);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; transition: color .25s var(--ease-out); }

::selection { background: var(--gold-300); color: var(--maroon-900); }

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  color: var(--maroon-800);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

h1 { font-size: clamp(2.4rem, 4.5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.4vw, 2.85rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold-600);
  display: inline-block;
}

.section-lead {
  color: var(--stone-500);
  font-size: 1.05rem;
  max-width: 640px;
}

.text-gold { color: var(--gold-600) !important; }
.text-maroon { color: var(--maroon-800) !important; }

/* ===================== LAYOUT HELPERS ===================== */
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 64px 0; }
.bg-cream { background-color: var(--cream-100); }
.bg-cream-alt { background-color: var(--cream-200); }
.bg-maroon { background-color: var(--maroon-800); color: var(--cream-100); }
.bg-maroon h2, .bg-maroon h3, .bg-maroon .eyebrow { color: var(--gold-300); }

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

/* Threshold Arch divider — signature motif echoing the hotel's carved
   wooden entrance doors. A repeating arch silhouette used between sections. */
.arch-divider {
  width: 100%;
  height: 34px;
  background-repeat: repeat-x;
  background-size: 68px 34px;
  background-position: center;
  opacity: 0.55;
}
.arch-divider.on-cream {
  background-image: radial-gradient(circle at 50% 0%, transparent 16px, var(--gold-500) 17px, var(--gold-500) 18px, transparent 19px);
}
.arch-divider.on-maroon {
  background-image: radial-gradient(circle at 50% 0%, transparent 16px, var(--gold-300) 17px, var(--gold-300) 18px, transparent 19px);
}

/* ===================== BUTTONS ===================== */
.btn-gold {
  background: var(--grad-gold);
  color: var(--maroon-900) !important;
  border: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
  padding: 14px 32px;
  border-radius: 40px;
  box-shadow: 0 10px 24px rgba(169, 129, 47, 0.35);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  display: inline-block;
}
.btn-gold:hover, .btn-gold:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(169, 129, 47, 0.45);
  color: var(--maroon-900) !important;
}

.btn-outline-maroon {
  background: transparent;
  color: var(--cream-100) !important;
  border: 1.5px solid rgba(251, 246, 236, 0.6);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
  padding: 13px 30px;
  border-radius: 40px;
  transition: all .3s var(--ease-out);
  display: inline-block;
}
.btn-outline-maroon:hover, .btn-outline-maroon:focus-visible {
  background: rgba(251, 246, 236, 0.12);
  border-color: var(--cream-100);
  color: var(--cream-100) !important;
  transform: translateY(-3px);
}

.btn-line {
  color: var(--maroon-800);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  border-bottom: 1.5px solid var(--gold-500);
  padding-bottom: 3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .25s var(--ease-out), color .25s var(--ease-out);
}
.btn-line:hover { gap: 14px; color: var(--gold-700); }

.btn-call {
  background: var(--maroon-800);
  color: var(--cream-100) !important;
  border-radius: 40px;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .25s var(--ease-out);
}
.btn-call:hover { background: var(--maroon-700); color: var(--cream-100) !important; }

/* ===================== NAVBAR ===================== */
.navbar-astha {
  padding: 22px 0;
  background: rgba(251, 246, 236, 0.0);
  transition: all .4s var(--ease-out);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
.navbar-astha.scrolled {
  padding: 12px 0;
  background: rgba(251, 246, 236, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(60,30,20,0.08);
}

.brand-mark { display: flex; align-items: center; gap: 12px; }
.brand-mark .mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-maroon);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  border: 1.5px solid var(--gold-500);
  flex-shrink: 0;
}
.brand-mark .brand-text {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.1;
  color: var(--maroon-800);
}
.navbar-astha:not(.scrolled) .brand-mark .brand-text { color: var(--white); }
.brand-mark .brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--gold-500);
  font-weight: 600;
  margin-top: 2px;
}

.navbar-astha .nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--white);
  padding: 8px 16px !important;
  position: relative;
}
.navbar-astha.scrolled .nav-link { color: var(--ink-700); }
.navbar-astha .nav-link::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.navbar-astha .nav-link:hover::after,
.navbar-astha .nav-link.active::after { transform: scaleX(1); }
.navbar-astha .nav-link.active { font-weight: 600; }

.navbar-toggler { border: none; padding: 4px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler .bar {
  display: block;
  width: 26px; height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: all .3s var(--ease-out);
}
.navbar-astha.scrolled .navbar-toggler .bar { background: var(--maroon-800); }

/* ===================== HERO SLIDER ===================== */
.hero-slider { position: relative; height: 100vh; min-height: 560px; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
  z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad-overlay);
}
.hero-slide-content {
  position: relative; z-index: 3;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}
.hero-slide-content .eyebrow { color: var(--gold-300); justify-content: center; }
.hero-slide-content .eyebrow::before, .hero-slide-content .eyebrow::after {
  content: ""; width: 30px; height: 1px; background: var(--gold-300); display: inline-block;
}
.hero-slide-content h1 { color: var(--white); max-width: 900px; }
.hero-slide-content p.lead {
  font-size: 1.15rem;
  color: var(--cream-200);
  letter-spacing: 1px;
  margin-top: 6px;
}
.hero-cta { margin-top: 34px; display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }

.hero-slider .arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease-out);
}
.hero-slider .arrow:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--maroon-900); }
.hero-slider .arrow.prev { left: 24px; }
.hero-slider .arrow.next { right: 24px; }

.hero-indicators {
  position: absolute; bottom: 32px; left: 0; right: 0;
  z-index: 5;
  display: flex; justify-content: center; gap: 10px;
}
.hero-indicators button {
  width: 34px; height: 4px;
  background: rgba(255,255,255,0.35);
  border: none; border-radius: 4px;
  transition: background .3s var(--ease-out);
}
.hero-indicators button.active { background: var(--gold-500); }

.scroll-cue {
  position: absolute; bottom: 90px; left: 50%; transform: translateX(-50%);
  z-index: 5;
  color: var(--cream-200);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.85;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--gold-300), transparent); animation: cueMove 2s infinite; }
@keyframes cueMove { 0%{opacity:0.2;} 50%{opacity:1;} 100%{opacity:0.2;} }

/* Scroll progress bar */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--grad-gold);
  z-index: 1100;
  width: 0%;
  transition: width .1s linear;
}

/* ===================== WELCOME / ABOUT PREVIEW ===================== */
.welcome-media { position: relative; }
.welcome-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}
.welcome-media .badge-years {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--grad-maroon);
  color: var(--gold-300);
  border-radius: 50%;
  width: 128px; height: 128px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lift);
  border: 3px solid var(--cream-100);
}
.welcome-media .badge-years strong { font-family: var(--font-display); font-size: 1.9rem; line-height: 1; color: var(--gold-300); }
.welcome-media .badge-years span { font-size: 0.62rem; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

.ideal-for-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream-200);
  border: 1px solid var(--cream-300);
  color: var(--ink-700);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.84rem;
  font-weight: 500;
  margin: 4px 6px 4px 0;
}
.ideal-for-pill i { color: var(--gold-600); }

/* ===================== FACILITY / FEATURE CARDS ===================== */
.facility-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(198,161,91,0.14);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s;
  position: relative;
  overflow: hidden;
}
.facility-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(198,161,91,0.4);
}
.facility-card:hover::before { transform: scaleX(1); }
.facility-card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream-200);
  color: var(--maroon-800);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
  transition: background .35s, color .35s;
}
.facility-card:hover .icon-wrap { background: var(--grad-gold); color: var(--maroon-900); }
.facility-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.facility-card p { color: var(--stone-500); font-size: 0.92rem; margin-bottom: 0; }

/* Why choose us — alt style */
.why-card {
  text-align: center;
  padding: 30px 18px;
}
.why-card .icon-wrap {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1.5px dashed var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-700);
  font-size: 1.6rem;
  transition: transform .4s var(--ease-out);
}
.why-card:hover .icon-wrap { transform: rotate(10deg) scale(1.06); }
.why-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.why-card p { color: var(--stone-500); font-size: 0.88rem; }

/* ===================== ROOM SECTIONS ===================== */
.room-showcase {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.room-showcase img { height: 100%; object-fit: cover; min-height: 340px; }
.room-amenity-list { list-style: none; padding: 0; margin: 20px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.room-amenity-list li { font-size: 0.9rem; display: flex; align-items: center; gap: 10px; color: var(--ink-700); }
.room-amenity-list i { color: var(--gold-600); font-size: 0.95rem; }

.room-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .35s var(--ease-out), transform .35s var(--ease-out);
  height: 100%;
}
.room-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-6px); }
.room-card .room-img-wrap { position: relative; overflow: hidden; height: 260px; }
.room-card .room-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.room-card:hover .room-img-wrap img { transform: scale(1.08); }
.room-card .room-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--grad-gold); color: var(--maroon-900);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
}
.room-card .room-body { padding: 26px; }
.room-card .room-meta { display: flex; gap: 16px; color: var(--stone-500); font-size: 0.82rem; margin: 10px 0 16px; flex-wrap: wrap; }
.room-card .room-meta span { display: flex; align-items: center; gap: 6px; }
.room-card .room-meta i { color: var(--gold-600); }

/* ===================== ARCH FRAME (signature motif on media) ===================== */
.arch-frame {
  position: relative;
  border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.arch-frame::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(198,161,91,0.5);
  border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
  pointer-events: none;
}

/* ===================== PLACEHOLDER VISUAL TILES
   Used where no on-site photograph exists yet (restaurant interior,
   banquet hall, conference hall, lawn). Rendered as an icon medallion on a
   maroon/gold field rather than a stand-in stock photo, so nothing on the
   site misrepresents what has actually been photographed. ===================== */
.motif-tile {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--grad-maroon);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.motif-tile::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(198,161,91,0.18) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}
.motif-tile .motif-icon {
  position: relative; z-index: 2;
  width: 108px; height: 108px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-300);
  font-size: 2.4rem;
}
.motif-tile .motif-label {
  position: absolute; z-index: 2; bottom: 26px; left: 0; right: 0;
  text-align: center; color: var(--gold-300);
  font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 1px;
}
.motif-tile.sm { min-height: 220px; }
.motif-tile.sm .motif-icon { width: 78px; height: 78px; font-size: 1.7rem; }

/* ===================== RESTAURANT / BANQUET / LAWN SECTIONS ===================== */
.cuisine-tag {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--cream-300);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.84rem;
  color: var(--ink-700);
  margin: 4px 6px 4px 0;
}

.event-list { list-style: none; padding: 0; margin: 18px 0; }
.event-list li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--cream-300);
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem;
}
.event-list li:last-child { border-bottom: none; }
.event-list i { color: var(--gold-600); }

/* ===================== TESTIMONIALS ===================== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}
.testimonial-card .quote-mark { font-family: var(--font-display); font-size: 3rem; color: var(--gold-400); line-height: 1; }
.testimonial-card p.quote { font-size: 1.08rem; color: var(--ink-700); margin: 12px 0 22px; }
.testimonial-card .stars { color: var(--gold-500); font-size: 0.9rem; margin-bottom: 10px; }
.testimonial-card .who strong { display: block; font-family: var(--font-display); color: var(--maroon-800); }
.testimonial-card .who span { font-size: 0.8rem; color: var(--stone-500); }

.carousel-indicators-astha { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.carousel-indicators-astha button { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--cream-300); }
.carousel-indicators-astha button.active { background: var(--gold-600); }

/* ===================== GALLERY ===================== */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.gallery-filters button {
  background: transparent;
  border: 1px solid var(--cream-300);
  color: var(--ink-700);
  padding: 9px 22px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all .3s var(--ease-out);
}
.gallery-filters button:hover { border-color: var(--gold-500); color: var(--gold-700); }
.gallery-filters button.active { background: var(--grad-maroon); color: var(--gold-300); border-color: transparent; }

.gallery-item { border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: pointer; margin-bottom: 24px; }
.gallery-item .g-media { position: relative; overflow: hidden; height: 280px; }
.gallery-item .g-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.gallery-item:hover .g-media img { transform: scale(1.1); }
.gallery-item .g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(46,10,14,0.85) 100%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity .35s var(--ease-out);
}
.gallery-item:hover .g-overlay { opacity: 1; }
.gallery-item .g-overlay span { color: var(--gold-300); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px; }
.gallery-item .g-zoom {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .35s var(--ease-out);
}
.gallery-item:hover .g-zoom { opacity: 1; }

/* Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(20, 6, 8, 0.94);
  display: none; align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img { max-width: min(900px, 90vw); max-height: 82vh; border-radius: 6px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox-overlay .lb-caption { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: var(--gold-300); font-size: 0.9rem; letter-spacing: 1px; }
.lightbox-overlay .lb-close, .lightbox-overlay .lb-arrow {
  position: absolute; color: var(--white);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease-out);
}
.lightbox-overlay .lb-close:hover, .lightbox-overlay .lb-arrow:hover { background: var(--gold-500); color: var(--maroon-900); }
.lightbox-overlay .lb-close { top: 24px; right: 24px; }
.lightbox-overlay .lb-arrow.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-overlay .lb-arrow.next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ===================== CONTACT ===================== */
.contact-info-card {
  background: var(--grad-maroon);
  color: var(--cream-100);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-card .eyebrow { color: var(--gold-300); }
.contact-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(251,246,236,0.14); }
.contact-row:last-of-type { border-bottom: none; }
.contact-row .ci-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(198,161,91,0.16); color: var(--gold-300);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-row h4 { font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-300); margin-bottom: 4px; font-family: var(--font-body); font-weight: 600;}
.contact-row p, .contact-row a { color: var(--cream-200); font-size: 0.95rem; margin: 0; }
.contact-row a:hover { color: var(--gold-300); }

.social-row { display: flex; gap: 10px; margin-top: 26px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(251,246,236,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-100); transition: all .3s var(--ease-out);
}
.social-row a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--maroon-900); }

.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-card); }
.form-floating > .form-control, .form-floating > .form-select {
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1rem 0.5rem;
}
.form-floating > label { color: var(--stone-500); }
.form-control:focus, .form-select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(198,161,91,0.18);
}
#formAlert { display: none; }
#formAlert.show { display: block; }

.map-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }
.map-wrap iframe { width: 100%; height: 320px; border: 0; filter: saturate(0.85); }

.working-hours-card { background: var(--cream-200); border-radius: var(--radius-md); padding: 24px 28px; }
.working-hours-card .wh-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.9rem; border-bottom: 1px dashed var(--cream-300); }
.working-hours-card .wh-row:last-child { border-bottom: none; }

/* ===================== FOOTER ===================== */
.footer-astha { background: var(--maroon-900); color: var(--cream-200); padding: 80px 0 0; }
.footer-astha h5 { font-family: var(--font-display); color: var(--gold-300); font-size: 1.1rem; margin-bottom: 22px; }
.footer-astha p, .footer-astha a { color: rgba(251,246,236,0.72); font-size: 0.9rem; }
.footer-astha a:hover { color: var(--gold-300); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { display: inline-flex; align-items: center; gap: 8px; }
.footer-links a i { color: var(--gold-500); font-size: 0.7rem; }
.footer-bottom { border-top: 1px solid rgba(251,246,236,0.12); margin-top: 50px; padding: 22px 0; text-align: center; font-size: 0.82rem; color: rgba(251,246,236,0.5); }
.footer-bottom a { color: var(--gold-300); }

.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad-gold); color: var(--maroon-900);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lift);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .35s var(--ease-out);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

.whatsapp-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-lift);
  animation: pulseWA 2.4s infinite;
}
@keyframes pulseWA {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5), var(--shadow-lift); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), var(--shadow-lift); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), var(--shadow-lift); }
}

/* ===================== PAGE HEADER (inner pages) ===================== */
.page-header {
  position: relative;
  min-height: 46vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--white);
  background-size: cover; background-position: center;
  margin-top: 0;
}
.page-header::before { content: ""; position: absolute; inset: 0; background: var(--grad-overlay); }
.page-header .ph-content { position: relative; z-index: 2; padding-top: 60px; }
.page-header h1 { color: var(--white); }
.breadcrumb-astha { display: flex; justify-content: center; gap: 8px; font-size: 0.85rem; color: var(--cream-300); margin-top: 12px; }
.breadcrumb-astha a { color: var(--gold-300); }

/* ===================== STATS COUNTER ===================== */
.stat-item { text-align: center; }
.stat-item .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--gold-300); line-height: 1; }
.stat-item .lbl { font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cream-300); margin-top: 8px; }

/* ===================== TIMELINE (about page) ===================== */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 1.5px; background: var(--cream-300); }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -40px; top: 4px;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--cream-100); border: 3px solid var(--gold-500);
}
.timeline-item h4 { font-family: var(--font-display); color: var(--maroon-800); font-size: 1.1rem; margin-bottom: 6px; }
.timeline-item p { color: var(--stone-500); font-size: 0.92rem; margin: 0; }

/* ===================== SERVICE LIST (rooms & services page) ===================== */
.service-item {
  display: flex; align-items: center; gap: 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.service-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.service-item .si-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--cream-200); color: var(--maroon-800);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.service-item h4 { font-size: 1rem; margin-bottom: 4px; font-family: var(--font-display); color: var(--maroon-800); }
.service-item p { font-size: 0.85rem; color: var(--stone-500); margin: 0; }

/* ===================== OWNER MESSAGE (about page) ===================== */
.owner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.owner-card .quote-mark { font-family: var(--font-display); font-size: 4rem; color: var(--gold-300); position: absolute; top: 14px; left: 30px; line-height: 1; }

/* ===================== FADE-UP FALLBACK (no-JS / AOS unavailable) ===================== */
[data-aos] { opacity: 0; transition-property: opacity, transform; }
[data-aos].aos-animate { opacity: 1; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.92); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }
