/* ============================================================
   OLYMPIAS HOUSE BOATS — style.css
   Dal Lake, Srinagar, Kashmir — Luxury Houseboat Website
   ============================================================ */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --walnut:        #3b1f0a;
  --walnut-mid:    #5a3218;
  --walnut-light:  #7d4e2d;
  --cream:         #f8f1e4;
  --cream-soft:    #fdf8f0;
  --cream-dark:    #ede5d4;
  --gold:          #c8963e;
  --gold-light:    #e4b86a;
  --gold-pale:     #f5dfa5;
  --gold-dim:      rgba(200,150,62,0.15);
  --white:         #ffffff;
  --text-dark:     #1a0e05;
  --text-mid:      #4a3020;
  --text-muted:    #8a6a4a;
  --border:        rgba(200,150,62,0.22);
  --border-dark:   rgba(200,150,62,0.4);
  --glass-bg:      rgba(248,241,228,0.10);
  --glass-border:  rgba(200,150,62,0.28);
  --shadow-sm:     0 4px 16px rgba(59,31,10,0.10);
  --shadow-md:     0 12px 40px rgba(59,31,10,0.16);
  --shadow-lg:     0 24px 60px rgba(59,31,10,0.22);
  --shadow-glow:   0 0 40px rgba(200,150,62,0.18);
  --nav-height:    80px;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Jost', sans-serif;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:      cubic-bezier(0.0, 0.0, 0.2, 1);
  --radius:        2px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream-soft);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

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

/* ===== SELECTION ===== */
::selection { background: var(--gold); color: var(--walnut); }


/* =========================================================
   NAVBAR
   ========================================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.4s var(--ease);
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
}
#navbar.transparent { background: transparent; }
#navbar.scrolled {
  background: rgba(20, 10, 3, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem; color: var(--walnut); font-weight: 700;
  box-shadow: 0 4px 15px rgba(200,150,62,0.4);
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.18rem; font-weight: 600;
  color: var(--gold-light); letter-spacing: 0.5px;
}
.nav-logo-sub {
  font-size: 0.58rem; font-weight: 400;
  color: rgba(228,184,106,0.65);
  letter-spacing: 2.5px; text-transform: uppercase;
}

/* Links */
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  font-size: 0.76rem; font-weight: 500;
  color: rgba(248,241,228,0.82);
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.3s;
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* CTA */
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--walnut) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  box-shadow: 0 4px 15px rgba(200,150,62,0.32);
  transition: all 0.3s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(200,150,62,0.5) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--gold-light); transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(18,8,2,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 0.5rem 2rem 1.5rem;
  flex-direction: column;
  border-top: 1px solid var(--border);
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.88rem; font-weight: 500;
  color: rgba(248,241,228,0.82);
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(200,150,62,0.1);
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile .mobile-wa {
  margin-top: 0.5rem;
  background: #25D366;
  color: #fff !important;
  text-align: center; border-radius: var(--radius);
  padding: 0.9rem !important; border: none !important;
}


/* =========================================================
   PAGE HERO BANNER (inner pages)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,10,3,0.65) 0%, rgba(20,10,3,0.82) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 1rem;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
  font-size: 0.72rem; color: rgba(248,241,228,0.5);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1rem;
}
.breadcrumb a { transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 300; color: var(--white); line-height: 1.1;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  font-size: 0.78rem; color: rgba(248,241,228,0.6);
  letter-spacing: 3px; text-transform: uppercase;
  margin-top: 0.8rem;
}


/* =========================================================
   SECTION UTILITIES
   ========================================================= */
section { padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 5vw, 3rem); }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px; background: var(--gold);
}
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }

h2.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400; color: var(--walnut); line-height: 1.15;
}
h2.section-heading em { font-style: italic; color: var(--gold); }
h2.section-heading.light { color: var(--cream); }

.section-body {
  font-size: 0.98rem; font-weight: 300;
  color: var(--text-mid); line-height: 1.85;
}
.section-body.light { color: rgba(248,241,228,0.72); }

.gold-line {
  width: 72px; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
  margin: 1.4rem 0;
}
.gold-line.center { margin: 1.4rem auto; }

.text-center { text-align: center; }
.max-600 { max-width: 600px; margin-left: auto; margin-right: auto; }
.max-700 { max-width: 700px; margin-left: auto; margin-right: auto; }


/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 34px; border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--walnut);
  box-shadow: 0 6px 22px rgba(200,150,62,0.38);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(200,150,62,0.55); }
.btn-outline-light {
  background: transparent; color: var(--white);
  border: 1px solid rgba(248,241,228,0.45);
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover { background: rgba(248,241,228,0.1); border-color: var(--gold); color: var(--gold-light); }
.btn-outline-dark {
  background: transparent; color: var(--walnut);
  border: 1px solid var(--gold);
}
.btn-outline-dark:hover { background: var(--gold); color: var(--walnut); }
.btn-wa {
  background: #25D366; color: #fff;
  box-shadow: 0 6px 22px rgba(37,211,102,0.35);
}
.btn-wa:hover { background: #1eb555; transform: translateY(-2px); }
.btn-dark {
  background: var(--walnut); color: var(--cream);
}
.btn-dark:hover { background: var(--walnut-light); transform: translateY(-2px); }


/* =========================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }


/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */
#wa-float {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 7000;
  display: flex; align-items: center; gap: 10px;
}
.wa-label {
  background: var(--walnut);
  color: var(--cream);
  font-size: 0.73rem; font-weight: 600;
  padding: 8px 14px; border-radius: 20px;
  white-space: nowrap;
  opacity: 0; transform: translateX(10px);
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
#wa-float:hover .wa-label { opacity: 1; transform: translateX(0); }
.wa-btn {
  width: 58px; height: 58px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,0.5);
  animation: waPulse 3s ease infinite;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 22px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 35px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.08); }
}
.wa-btn svg { width: 28px; height: 28px; fill: #fff; }


/* =========================================================
   BOOKING POPUP
   ========================================================= */
#booking-popup {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 8000;
  align-items: center; justify-content: center;
  padding: 1rem;
}
#booking-popup.open { display: flex; }
.popup-card {
  background: var(--white); border-radius: var(--radius);
  max-width: 480px; width: 100%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  animation: popIn 0.35s var(--ease);
}
@keyframes popIn { from { opacity:0; transform:scale(0.88); } to { opacity:1; transform:scale(1); } }
.popup-header {
  background: var(--walnut); padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.popup-header h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); font-weight: 600; }
.popup-close { background: none; border: none; color: rgba(248,241,228,0.55); font-size: 1.5rem; line-height:1; transition: color 0.3s; }
.popup-close:hover { color: var(--gold-light); }
.popup-body { padding: 2rem; }
.popup-body p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; }
.popup-wa {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px;
  background: #25D366; color: #fff; border: none; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.5px;
  transition: background 0.3s;
}
.popup-wa:hover { background: #1eb555; }


/* =========================================================
   SERVICE CARDS
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.4rem; margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::after { transform: scaleX(1); }
.service-card .card-num {
  position: absolute; top: 1.2rem; right: 1.4rem;
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  color: rgba(200,150,62,0.07); line-height: 1;
}
.service-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.22rem; font-weight: 600;
  color: var(--walnut); margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.86rem; font-weight: 300;
  color: var(--text-mid); line-height: 1.72;
}


/* =========================================================
   ROOM CARDS
   ========================================================= */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.5rem;
}
.room-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.room-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.room-card:hover img { transform: scale(1.06); }
.room-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,10,3,0.96) 0%, rgba(20,10,3,0.2) 55%, transparent 100%);
}
.room-card-body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
}
.room-tag {
  display: inline-block;
  background: var(--gold); color: var(--walnut);
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 1px;
  margin-bottom: 0.55rem;
}
.room-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.5rem;
}
.room-feats {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
}
.room-feats span {
  font-size: 0.7rem; color: rgba(248,241,228,0.7);
  display: flex; align-items: center; gap: 4px;
}
.room-feats span::before { content: '✓'; color: var(--gold); }

.room-book-btn {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: rgba(200,150,62,0.95);
  color: var(--walnut); border: none;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 14px; border-radius: var(--radius);
  opacity: 0; transform: translateY(-8px);
  transition: all 0.3s;
}
.room-card:hover .room-book-btn { opacity: 1; transform: translateY(0); }


/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  background: rgba(200,150,62,0.08);
  border: 1px solid rgba(200,150,62,0.18);
  border-radius: var(--radius);
  display: flex; flex-wrap: wrap;
  gap: 0; margin-top: 3rem;
  overflow: hidden;
}
.stat-item {
  flex: 1; min-width: 160px;
  padding: 1.8rem 2rem;
  display: flex; align-items: center; gap: 1rem;
  border-right: 1px solid rgba(200,150,62,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 600;
  color: var(--gold-light); line-height: 1;
}
.stat-info label {
  display: block;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
}
.stat-info span {
  font-size: 0.8rem; color: rgba(248,241,228,0.55);
}


/* =========================================================
   GALLERY GRID
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem; margin-top: 3rem;
}
.gal-item {
  overflow: hidden; border-radius: var(--radius);
  cursor: zoom-in; position: relative;
}
.gal-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s var(--ease); }
.gal-item:hover img { transform: scale(1.07); }
.gal-overlay {
  position: absolute; inset: 0;
  background: rgba(59,31,10,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.gal-item:hover .gal-overlay { background: rgba(59,31,10,0.3); }
.gal-zoom { color:#fff; font-size:1.6rem; opacity:0; transform:scale(0.7); transition: all 0.3s; }
.gal-item:hover .gal-zoom { opacity:1; transform:scale(1); }

.g1 { grid-column: span 5; grid-row: span 2; min-height: 300px; }
.g2 { grid-column: span 4; min-height: 145px; }
.g3 { grid-column: span 3; min-height: 145px; }
.g4 { grid-column: span 4; min-height: 150px; }
.g5 { grid-column: span 3; min-height: 150px; }
.g6 { grid-column: span 4; min-height: 200px; }
.g7 { grid-column: span 4; min-height: 200px; }
.g8 { grid-column: span 4; min-height: 200px; }

/* Lightbox */
#lightbox {
  display: none; position: fixed; inset:0;
  background: rgba(0,0,0,0.96); z-index: 9999;
  align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img { max-width:92vw; max-height:92vh; object-fit:contain; border-radius:var(--radius); }
#lb-close {
  position:absolute; top:1.2rem; right:1.5rem;
  background:none; border:none; color:#fff; font-size:2rem; line-height:1;
}
#lb-close:hover { color: var(--gold-light); }


/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-slider { overflow: hidden; margin-top: 2.5rem; }
.testi-track { display: flex; transition: transform 0.5s var(--ease); }
.testi-card {
  flex: 0 0 calc(33.333% - 1rem); margin-right: 1.5rem;
  background: rgba(248,241,228,0.06);
  border: 1px solid rgba(200,150,62,0.18);
  border-radius: var(--radius); padding: 2rem;
}
.testi-stars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; margin-bottom: 1rem; }
.testi-text {
  font-family: var(--font-display);
  font-size: 1.03rem; font-style: italic;
  color: rgba(248,241,228,0.82); line-height: 1.72;
  margin-bottom: 1.4rem;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--walnut-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--cream); flex-shrink: 0;
}
.testi-name { font-size: 0.88rem; font-weight: 500; color: var(--gold-light); }
.testi-loc { font-size: 0.72rem; color: rgba(248,241,228,0.42); }
.testi-controls { display: flex; gap: 0.8rem; margin-top: 1.8rem; }
.testi-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(200,150,62,0.12);
  border: 1px solid rgba(200,150,62,0.28);
  color: var(--gold-light); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.testi-btn:hover { background: var(--gold); color: var(--walnut); }


/* =========================================================
   FAQ
   ========================================================= */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 3rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  width: 100%; padding: 1.15rem 1.5rem;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-dark); text-align: left;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--walnut-light); }
.faq-icon { font-size: 1.2rem; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 0.86rem; font-weight: 300;
  color: var(--text-mid); line-height: 1.72;
  padding: 0 1.5rem;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.5rem 1.2rem; }


/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem); margin-top: 3rem;
  align-items: start;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-detail label {
  display: block;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 3px;
}
.contact-detail span, .contact-detail a {
  font-size: 0.93rem; color: var(--text-dark); line-height: 1.5;
}
.contact-detail a:hover { color: var(--walnut-light); }
.contact-action-btns { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 2rem; }
.contact-action-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 22px; border-radius: var(--radius);
  font-size: 0.83rem; font-weight: 600;
  letter-spacing: 0.5px; border: none; transition: all 0.3s;
}
.contact-action-btn.wa { background: #25D366; color: #fff; }
.contact-action-btn.wa:hover { background: #1eb555; transform: translateX(4px); }
.contact-action-btn.call { background: var(--walnut); color: var(--cream); }
.contact-action-btn.call:hover { background: var(--walnut-light); transform: translateX(4px); }
.contact-action-btn.mail { background: var(--cream-dark); color: var(--walnut); }
.contact-action-btn.mail:hover { background: var(--gold-pale); transform: translateX(4px); }

/* Form */
.form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600;
  color: var(--walnut); margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 15px;
  background: var(--cream-soft);
  border: 1px solid rgba(200,150,62,0.18);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text-dark); outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 105px; }
.form-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--walnut); border: none; border-radius: var(--radius);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  transition: all 0.3s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,150,62,0.42); }
.map-wrap { margin-top: 3rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }


/* =========================================================
   BLOG CARDS
   ========================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.4s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card img { width:100%; aspect-ratio:16/9; object-fit:cover; transition: transform 0.5s; }
.blog-card:hover img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-meta {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 0.8rem;
}
.blog-cat {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); background: var(--gold);
  padding: 4px 10px; border-radius: 1px;
}
.blog-date { font-size: 0.72rem; color: var(--text-muted); }
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem; font-weight: 600;
  color: var(--walnut); margin-bottom: 0.6rem;
  line-height: 1.3;
}
.blog-card h3 a:hover { color: var(--walnut-light); }
.blog-card p {
  font-size: 0.84rem; font-weight: 300;
  color: var(--text-mid); line-height: 1.68;
  margin-bottom: 1.2rem;
}
.blog-read {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); transition: color 0.3s;
}
.blog-read:hover { color: var(--walnut); }

/* Blog Article */
.blog-article { max-width: 820px; margin: 0 auto; }
.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.article-cat {
  background: var(--gold); color: var(--walnut);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 1px;
}
.article-date, .article-read-time {
  font-size: 0.78rem; color: var(--text-muted);
}
.article-body h2, .article-body h3, .article-body h4 {
  font-family: var(--font-display);
  color: var(--walnut); margin: 2rem 0 0.8rem;
}
.article-body h2 { font-size: 1.8rem; }
.article-body h3 { font-size: 1.4rem; }
.article-body h4 { font-size: 1.1rem; }
.article-body p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.2rem; }
.article-body ul { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.article-body ul li { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; list-style: disc; }
.article-body img { width:100%; border-radius:var(--radius); margin:1.5rem 0; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem; margin: 1.5rem 0;
  background: var(--cream-dark); border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; color: var(--text-mid);
}


/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #0d0703;
  padding: clamp(3rem,6vw,5rem) clamp(1rem,5vw,3rem) 0;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem,4vw,3rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200,150,62,0.1);
}
.footer-desc {
  font-size: 0.83rem; font-weight: 300;
  color: rgba(248,241,228,0.42);
  line-height: 1.72; margin: 1rem 0;
}
.footer-social { display: flex; gap: 10px; margin-top: 1.2rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200,150,62,0.1);
  border: 1px solid rgba(200,150,62,0.18);
  color: rgba(248,241,228,0.5); font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.social-btn:hover { background: var(--gold); color: var(--walnut); border-color: var(--gold); }
.footer-col h4 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--gold-light); margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.8rem; font-weight: 300;
  color: rgba(248,241,228,0.4); transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 0.8rem; }
.footer-contact-row .ico { color: var(--gold); font-size: 0.88rem; margin-top: 1px; flex-shrink: 0; }
.footer-contact-row span, .footer-contact-row a {
  font-size: 0.78rem; font-weight: 300;
  color: rgba(248,241,228,0.4); line-height: 1.5; transition: color 0.3s;
}
.footer-contact-row a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.72rem; color: rgba(248,241,228,0.22); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.7rem; color: rgba(248,241,228,0.22); transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold); }


/* =========================================================
   ABOUT PAGE COMPONENTS
   ========================================================= */
.owner-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; text-align: center;
  margin-top: 2rem;
}
.owner-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--walnut-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  color: var(--cream); margin: 0 auto 1rem;
}
.owner-name {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  color: var(--walnut);
}
.owner-role {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.owner-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: 0.98rem; color: var(--text-mid);
  line-height: 1.65; padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.values-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem;
}
.value-card {
  background: var(--white); border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.2rem;
}
.value-card h4 {
  font-family: var(--font-display); font-size: 1rem;
  color: var(--walnut); margin-bottom: 0.4rem;
}
.value-card p { font-size: 0.82rem; font-weight: 300; color: var(--text-mid); line-height: 1.6; }


/* =========================================================
   SCHEMA / STRUCTURED DATA HELPER CLASSES
   ========================================================= */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}


/* =========================================================
   RESPONSIVE — comprehensive mobile-first overrides
   ========================================================= */

/* ── 1100px: tablet landscape ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-card { flex: 0 0 calc(50% - 0.75rem); }
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}

/* ── 900px: tablet portrait ── */
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  /* Gallery: collapse to 2-col layout */
  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .g1 { grid-column: span 6; grid-row: span 1; min-height: 240px; }
  .g2, .g3 { grid-column: span 3; min-height: 160px; }
  .g4, .g5 { grid-column: span 3; min-height: 160px; }
  .g6, .g7, .g8 { grid-column: span 6; min-height: 200px; }

  /* Room cards: 2-col */
  .rooms-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

  /* Services: 2-col */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Stats bar: wrap nicely */
  .stat-item { flex: 1 1 calc(50% - 1px); }

  /* Blog grid: 2-col */
  .blog-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

/* ── 768px: mobile ── */
@media (max-width: 768px) {
  /* --- Navbar --- */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-name { font-size: 1rem; }
  .nav-logo-sub { letter-spacing: 2px; }
  .nav-logo-icon { width: 38px; height: 38px; font-size: 1.1rem; }

  /* --- Footer --- */
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.6rem; }
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 1rem; }

  /* --- Testimonials --- */
  .testi-card { flex: 0 0 calc(100% - 1.5rem); }
  .testi-controls { justify-content: center; }

  /* --- Forms --- */
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 1.5rem; }

  /* --- Stats bar --- */
  .stats-bar { flex-direction: column; }
  .stat-item {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid rgba(200,150,62,0.15);
    padding: 1.4rem 1.5rem;
  }
  .stat-item:last-child { border-bottom: none; }

  /* --- Gallery: single column ── */
  .gallery-grid { grid-template-columns: 1fr; gap: 0.6rem; }
  .g1, .g2, .g3, .g4, .g5, .g6, .g7, .g8 {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 200px;
  }

  /* --- Services: single column --- */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.4rem; }

  /* --- Room cards: single column --- */
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card img { aspect-ratio: 16/9; }

  /* --- Room book button: always visible on mobile --- */
  .room-book-btn {
    opacity: 1;
    transform: translateY(0);
  }

  /* --- Blog grid: single column --- */
  .blog-grid { grid-template-columns: 1fr; }

  /* --- Section heading size clamp tightened --- */
  h2.section-heading { font-size: clamp(1.7rem, 6vw, 2.4rem); }

  /* --- Page hero shorter on mobile --- */
  .page-hero { min-height: 38vh; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }

  /* --- Contact grid: stack --- */
  .contact-grid { gap: 2rem; }
  .contact-icon { width: 42px; height: 42px; font-size: 1rem; }

  /* --- Values grid: full width --- */
  .value-card { padding: 1rem; }

  /* --- Booking popup: full width on mobile --- */
  .popup-card { max-width: 100%; border-radius: var(--radius); }
  .popup-header { padding: 1.2rem 1.5rem; }
  .popup-body { padding: 1.5rem; }

  /* --- WA float: smaller & tucked in --- */
  #wa-float { bottom: 1.2rem; right: 1.2rem; }
  .wa-btn { width: 50px; height: 50px; }
  .wa-btn svg { width: 24px; height: 24px; }

  /* --- Owner card --- */
  .owner-card { padding: 1.5rem; }

  /* --- FAQ --- */
  .faq-q { font-size: 0.85rem; padding: 1rem 1.2rem; }
  .faq-a { padding: 0 1.2rem; }
  .faq-item.open .faq-a { padding: 0 1.2rem 1rem; }

  /* --- Article body --- */
  .article-body h2 { font-size: 1.5rem; }
  .article-body h3 { font-size: 1.2rem; }
  .article-body blockquote { padding: 0.8rem 1rem; }

  /* --- Buttons: full width on mobile where stacked --- */
  .contact-action-btns .contact-action-btn { width: 100%; justify-content: center; }
}

/* ── 480px: small phones ── */
@media (max-width: 480px) {
  /* --- Nav --- */
  #navbar { padding: 0 1rem; }
  .nav-logo { gap: 8px; }
  .nav-logo-sub { display: none; } /* hide tagline on tiny screens */

  /* --- Sections: tighter padding --- */
  section { padding: clamp(2.5rem, 6vw, 4rem) 1rem; }

  /* --- Buttons: wider tap targets --- */
  .btn { padding: 14px 24px; font-size: 0.74rem; width: 100%; justify-content: center; }
  .btn + .btn { margin-top: 0.6rem; }

  /* --- Hero --- */
  .page-hero { min-height: 32vh; }
  .page-hero p { letter-spacing: 2px; font-size: 0.72rem; }
  .breadcrumb { font-size: 0.66rem; }

  /* --- Stats: compact numbers --- */
  .stat-num { font-size: 2rem; }
  .stat-item { padding: 1.2rem 1rem; gap: 0.8rem; }

  /* --- Blog card body --- */
  .blog-card-body { padding: 1.2rem; }
  .blog-card h3 { font-size: 1.05rem; }

  /* --- Form --- */
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 1rem; } /* prevent iOS zoom-in on focus */

  /* --- Footer --- */
  .footer-copy, .footer-legal a { font-size: 0.68rem; }

  /* --- Testimonial --- */
  .testi-card { padding: 1.4rem; }
  .testi-text { font-size: 0.95rem; }

  /* --- Article meta wraps cleanly --- */
  .article-meta { gap: 0.6rem; }

  /* --- Lightbox --- */
  #lightbox img { max-width: 98vw; max-height: 88vh; }
  #lb-close { top: 0.6rem; right: 0.8rem; font-size: 1.6rem; }

  /* --- Room card body tighter --- */
  .room-card-body { padding: 1rem; }
  .room-card-body h3 { font-size: 1.1rem; }
  .room-feats { gap: 0.5rem; }

  /* --- Mobile nav drawer: full height scroll --- */
  .nav-mobile { padding: 0.5rem 1.2rem 1.5rem; }
  .nav-mobile a { font-size: 0.82rem; padding: 0.8rem 0; }

  /* --- Map container: shorter on small phones --- */
  .map-wrap iframe { height: 220px !important; }

  /* --- Owner card: compact --- */
  .owner-avatar { width: 60px; height: 60px; font-size: 1.5rem; }
  .owner-name { font-size: 1.2rem; }
}

/* ── 360px: very small devices (Galaxy A, older phones) ── */
@media (max-width: 360px) {
  .nav-logo-icon { width: 32px; height: 32px; font-size: 1rem; }
  .nav-logo-name { font-size: 0.88rem; }
  .stat-num { font-size: 1.7rem; }
  .btn { padding: 13px 18px; letter-spacing: 1.2px; }
  .popup-header h3 { font-size: 1.1rem; }
}

/* ── Touch / hover-none: show hidden hover-only elements ── */
@media (hover: none) {
  /* Room book button always visible */
  .room-book-btn { opacity: 1; transform: translateY(0); }
  /* Gallery zoom icon always visible */
  .gal-zoom { opacity: 1; transform: scale(1); font-size: 1.2rem; }
  .gal-overlay { background: rgba(59,31,10,0.18); }
  /* WA label always visible */
  .wa-label { opacity: 1; transform: translateX(0); }
}
/* =========================================================
   ABOUT SECTION MOBILE FIX
   ========================================================= */

.about-images{
  position: relative;
  max-width: 100%;
}

.main-about-img{
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.small-about-img{
  position: absolute;
  bottom: -1.8rem;
  right: -1rem;
  width: 42%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--walnut);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

/* Tablet */
@media(max-width:900px){

  #about-grid{
    gap: 3rem !important;
    align-items: center;
  }

  .small-about-img{
    width: 38%;
    right: 0;
  }

}

/* Mobile */
@media(max-width:768px){

  #about-grid{
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .about-images{
    order: -1;
    margin-bottom: 1rem;
  }

  .small-about-img{
    position: relative;
    width: 72%;
    right: auto;
    bottom: auto;
    margin: -40px auto 0;
    display: block;
  }

}

/* Small phones */
@media(max-width:480px){

  .small-about-img{
    width: 82%;
    margin-top: -28px;
  }

  .main-about-img{
    aspect-ratio: 1.1 / 1;
  }

}
