/* ============================================================
   Maya's Nest — Design Enhancement Layer
   Layers over style.css for richer visuals
   ============================================================ */

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

/* ── Enhanced CSS variables ── */
:root {
  --color-primary:       #1a6b5a;
  --color-primary-light: #2d9973;
  --color-primary-dark:  #0f3d30;
  --color-gold:          #b8952a;
  --color-gold-light:    #d4b04a;
  --color-gold-bright:   #f0c040;
  --color-cream:         #faf6ef;
  --color-warm-white:    #fffef9;
  --color-dark:          #141414;
  --color-text:          #2a2a2a;
  --color-text-muted:    #6e7d76;
  --color-bg:            #faf6ef;
  --color-border:        #e8e0d4;
  --font-display:        'Cormorant Garamond', Georgia, serif;
  --font-heading:        'Playfair Display', Georgia, serif;
  --font-body:           'Inter', system-ui, sans-serif;
  --radius-sm:           8px;
  --radius-md:           14px;
  --radius-lg:           22px;
  --radius-xl:           32px;
  --shadow-sm:           0 2px 12px rgba(26,60,40,.07);
  --shadow-md:           0 8px 28px rgba(26,60,40,.12);
  --shadow-lg:           0 20px 56px rgba(26,60,40,.16);
  --shadow-gold:         0 8px 28px rgba(184,149,42,.25);
  --transition:          .3s cubic-bezier(.4,0,.2,1);
  --transition-slow:     .6s cubic-bezier(.4,0,.2,1);
}

/* ── Body & Base ── */
body { background: var(--color-cream); font-family: var(--font-body); color: var(--color-text); }
h1, h2, h3 { font-family: var(--font-heading); }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -.01em; }

/* ── Section Labels — enhanced ── */
.section-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  position: relative;
  padding: 0 1.2rem;
}
.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px; height: 1px;
  background: var(--color-gold-light);
  opacity: .6;
}
.section-label::before { right: 100%; margin-right: -1rem; }
.section-label::after  { left:  100%; margin-left:  -1rem; }

.section-title { margin-bottom: .8rem; line-height: 1.15; }
.section-title span { 
  color: var(--color-primary);
  font-style: italic;
  font-family: var(--font-display);
}

.divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--color-gold-light), var(--color-primary));
  border-radius: 2px; margin: .85rem auto 2.2rem;
  position: relative;
}
.divider::after {
  content: '◆';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: .45rem;
  color: var(--color-gold-light);
  background: var(--color-bg);
  padding: 0 .2rem;
}

/* ── Hero — dramatic upgrade ── */
.hero { min-height: 100svh; }
.hero-bg {
  background: linear-gradient(160deg, #05201a 0%, #0e3d2f 40%, #122e24 100%);
}
.hero-bg::after {
  background: url("../images/hero-bg.jpg") center 30% / cover no-repeat;
  opacity: .3;
}
.hero-overlay {
  background: 
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,.08) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(5,32,26,.35) 0%, rgba(5,32,26,.7) 100%);
}
.hero-content { max-width: 900px; padding: 7rem 2rem 5rem; }
.hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .28em;
  color: var(--color-gold-bright);
  border: 1px solid rgba(240,192,64,.3);
  border-radius: 100px;
  padding: .45rem 1.4rem;
  backdrop-filter: blur(4px);
  background: rgba(240,192,64,.06);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-shadow: 0 4px 32px rgba(0,0,0,.4);
  margin-bottom: 1.2rem;
}
.hero-title .highlight {
  font-style: italic;
  color: var(--color-gold-bright);
  text-shadow: 0 2px 24px rgba(240,192,64,.3);
}
.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  font-weight: 300;
  letter-spacing: .01em;
  max-width: 580px;
  margin: 0 auto 2.2rem;
}

/* Trust signals */
.hero-trust { gap: 2rem; margin-top: 2rem; }
.hero-trust-item {
  display: flex; align-items: center; gap: .45rem;
  font-size: .78rem; color: rgba(255,255,255,.72); font-weight: 500;
}
.hero-trust-item i { color: var(--color-gold-bright); font-size: .85rem; }

/* Hero stats bar */
.hero-stats {
  background: rgba(5,22,17,.65);
  backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid rgba(240,192,64,.12);
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--color-gold-bright);
  letter-spacing: -.02em;
}
.hero-stat-label {
  font-size: .68rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  margin-top: .15rem;
}

/* ── Navbar — frosted glass always on ── */
.navbar {
  height: 72px;
  background: rgba(8,28,20,.52);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.navbar.scrolled {
  background: rgba(8,28,20,.92);
  backdrop-filter: blur(32px) saturate(220%);
  -webkit-backdrop-filter: blur(32px) saturate(220%);
  border-bottom: 1px solid rgba(240,192,64,.1);
  box-shadow: 0 4px 36px rgba(0,0,0,.3);
}
.navbar-brand .brand-icon {
  background: linear-gradient(135deg, var(--color-gold-bright), var(--color-gold-light));
  box-shadow: 0 3px 14px rgba(240,192,64,.35);
  border-radius: 12px;
}
.navbar-brand .brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem; font-style: italic; letter-spacing: .02em;
}
.navbar-brand .brand-tagline { font-size: .6rem; letter-spacing: .2em; color: rgba(240,192,64,.72); }
.nav-links a { font-size: .85rem; font-weight: 500; letter-spacing: .02em; }
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,.1);
  color: #fff;
}

/* ── Booking Bar — glass card ── */
.booking-bar {
  background: rgba(255,253,248,.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(184,149,42,.12);
  border-radius: var(--radius-xl);
  padding: 2.2rem 2.8rem;
  box-shadow: 0 24px 64px rgba(26,60,40,.14), 0 1px 0 rgba(255,255,255,.8) inset;
}
.booking-bar-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-dark);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.booking-bar-title span { color: var(--color-primary); font-style: italic; }
.form-group label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}
.form-group input,
.form-group select {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-warm-white);
  font-size: .88rem;
  padding: .72rem 1rem;
  color: var(--color-text);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26,107,90,.1);
  background: #fff;
}

/* ── Room Cards — premium ── */
.rooms-grid { gap: 2rem; }
.room-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease, border-color .3s;
  overflow: hidden;
}
.room-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,107,90,.08);
}
.room-card-img { height: 230px; }
.room-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,22,.45) 0%, transparent 55%);
  pointer-events: none;
}
.room-type-badge {
  background: rgba(15,61,48,.85);
  backdrop-filter: blur(8px);
  font-size: .65rem;
  letter-spacing: .1em;
  padding: .32rem .85rem;
  border: 1px solid rgba(255,255,255,.15);
}
.room-status-badge {
  font-size: .65rem;
  letter-spacing: .06em;
  padding: .28rem .75rem;
  backdrop-filter: blur(8px);
}
.room-card-body { padding: 1.5rem; }
.room-card-title { 
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: .35rem;
  color: var(--color-dark);
}
.room-card-desc { 
  font-size: .83rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}
.amenity-tag {
  font-size: .68rem;
  padding: .22rem .75rem;
  background: #f0faf6;
  color: var(--color-primary);
  border: 1px solid rgba(26,107,90,.18);
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: .03em;
}
.room-card-footer {
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #faf8f3, #f5f2ea);
  border-top: 1px solid rgba(0,0,0,.05);
}
.room-price .amount {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -.02em;
}
.room-price .per {
  font-size: .75rem;
  color: var(--color-text-muted);
  letter-spacing: .03em;
}

/* ── Feature Cards — refined ── */
.features-grid { gap: 1.75rem; }
.feature-card {
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.75rem;
  background: var(--color-warm-white);
  border: 1px solid rgba(184,149,42,.08);
  box-shadow: none;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s, border-color .3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26,107,90,.12);
}
.feature-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(26,107,90,.1), rgba(184,149,42,.1));
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.feature-card h4 { font-size: 1.02rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: .5rem; }
.feature-card p { font-size: .83rem; line-height: 1.68; color: var(--color-text-muted); }

/* ── About Section ── */
.about-img-wrap { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.about-img-wrap img { height: 500px; border-radius: var(--radius-xl); }
.about-img-badge {
  right: -2rem;
  padding: 1.4rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.about-img-badge .big {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -.02em;
}
.about-content p { font-size: .93rem; line-height: 1.82; color: var(--color-text-muted); }
.about-feature-item { font-size: .88rem; }

/* ── Review Cards ── */
.reviews-grid { gap: 1.75rem; }
.review-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--color-warm-white);
  border: 1px solid rgba(184,149,42,.1);
  border-left: 3px solid var(--color-gold-light);
  box-shadow: none;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card::before {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-gold-light);
  opacity: .12;
  top: .5rem;
}
.review-comment { font-size: .88rem; line-height: 1.78; color: var(--color-text); }
.review-author { font-family: var(--font-heading); font-size: .88rem; }

/* ── Buttons — premium feel ── */
.btn {
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: .04em;
  font-size: .88rem;
  padding: .78rem 1.85rem;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s, background .2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  box-shadow: 0 4px 16px rgba(26,107,90,.28);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,107,90,.38);
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}
.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), #8a6018);
  box-shadow: var(--shadow-gold);
  letter-spacing: .06em;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(184,149,42,.4);
}
.btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26,107,90,.25);
}
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.85);
  transform: translateY(-2px);
}
.btn-sm { padding: .5rem 1.15rem; font-size: .8rem; }
.btn-lg { padding: 1.05rem 2.5rem; font-size: .95rem; letter-spacing: .06em; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, #071f18 0%, var(--color-primary-dark) 35%, #0e3d30 70%, #071f18 100%);
  padding: 5.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(184,149,42,.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(26,107,90,.08) 0%, transparent 70%);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -.01em;
  font-style: italic;
  color: #fff;
}
.cta-banner p { font-size: .98rem; color: rgba(255,255,255,.72); line-height: 1.75; }

/* ── Footer — elegant dark ── */
.footer { background: #0c1c16; }
.footer-brand .brand-name { font-family: var(--font-display); font-size: 1.8rem; font-style: italic; }
.footer-heading { font-family: var(--font-heading); font-size: .92rem; letter-spacing: .06em; color: rgba(255,255,255,.9); }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-links a:hover { color: var(--color-gold-bright); padding-left: .5rem; }
.social-link {
  border: 1px solid rgba(255,255,255,.15);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* ── Page Hero — inner pages ── */
.page-hero {
  background: linear-gradient(160deg, #071f18 0%, #0f4237 50%, #0e3d30 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(184,149,42,.1) 0%, transparent 70%);
}
.page-hero h1 { font-family: var(--font-display); font-style: italic; font-weight: 400; letter-spacing: -.01em; }
.page-hero p  { font-size: .95rem; font-weight: 300; color: rgba(255,255,255,.72); }

/* ── Section padding ── */
.section-pad    { padding: 6rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

/* ── Scroll animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Alerts ── */
.alert { border-radius: var(--radius-md); padding: 1.1rem 1.4rem; font-size: .88rem; }

/* ── Property highlights ── */
.prop-highlight {
  border-radius: var(--radius-md);
  background: var(--color-warm-white);
  border: 1px solid rgba(184,149,42,.1);
  box-shadow: none;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.prop-highlight:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prop-icon { border-radius: 14px; }
.prop-title { font-weight: 700; font-size: .88rem; }

/* ── Booking form card ── */
.booking-form-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(184,149,42,.08);
  min-width: 0;
  overflow: hidden;
}
.booking-summary-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--color-primary-dark), #0e3d30);
  border: 1px solid rgba(184,149,42,.15);
  min-width: 0;
}

/* ── Breadcrumb ── */
.breadcrumb a { color: rgba(255,255,255,.55); font-size: .82rem; }
.breadcrumb a:hover { color: var(--color-gold-bright); }

/* ── Modal ── */
.modal-box { border-radius: var(--radius-xl); }
.modal-header { border-bottom: 1px solid rgba(0,0,0,.06); }

/* ── Carousel dots ── */
.carousel-dot { width: 6px; height: 6px; background: rgba(255,255,255,.4); border: none; }
.carousel-dot.active { background: var(--color-gold-bright); width: 18px; border-radius: 3px; }

/* ── Amenities horizontal scroll (mobile) ── */
@media (max-width: 768px) {
  .room-amenities { gap: .35rem; padding-bottom: .35rem; }
  .amenity-tag { flex-shrink: 0; }
}

/* ── Booking bar responsive ── */
@media (max-width: 700px) {
  .booking-bar { padding: 1.5rem; border-radius: var(--radius-lg); }
}

/* ── Page transition ── */
main, .page-content-wrap {
  animation: pageFadeIn .45s cubic-bezier(.4,0,.2,1);
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Section backgrounds — warm alternating ── */
.section-cream  { background: var(--color-cream); }
.section-white  { background: var(--color-warm-white); }
.section-tinted { background: #f3ede3; }

/* ── Admin pages — font match ── */
.admin-layout { font-family: var(--font-body); }

/* ── Smooth image loading ── */
img { transition: opacity .3s; }

/* ── Selection color ── */
::selection { background: rgba(184,149,42,.25); color: var(--color-dark); }

/* ── Focus visible ring ── */
:focus-visible { outline: 2.5px solid var(--color-gold-light); outline-offset: 3px; border-radius: 4px; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f4f1eb; }
::-webkit-scrollbar-thumb { background: rgba(26,107,90,.25); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(26,107,90,.45); }

/* ============================================================
   FINAL COMPLETION — Mobile & Desktop Perfect View
   ============================================================ */

/* ── Lazy image fade-in fix ── */
img { opacity: 1; }
/* Note: JS in main.js handles lazy-load fade-in without CSS opacity conflict */
.nav-book-btn {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold)) !important;
  color: #fff !important;
  border: none !important;
  letter-spacing: .06em;
  box-shadow: 0 4px 14px rgba(184,149,42,.35) !important;
  border-radius: 8px !important;
}
.nav-book-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(184,149,42,.45) !important;
}

/* ── Hero CTA gap ── */
.hero-cta { gap: 1.1rem; margin-bottom: .5rem; }
@media (max-width: 480px) {
  .hero-cta { gap: .75rem; max-width: 300px; }
  .hero-cta .btn-lg { padding: .9rem 1.5rem; font-size: .9rem; }
}

/* ── Quick booking bar — desktop wide ── */
.booking-bar {
  margin-top: -3.5rem !important;
  position: relative;
  z-index: 20 !important;
}
@media (max-width: 768px) {
  .booking-bar {
    margin: -1.5rem .75rem 0 !important;
    padding: 1.2rem 1rem !important;
    border-radius: 16px !important;
  }
  .booking-form { grid-template-columns: 1fr 1fr !important; gap: .65rem !important; }
}
@media (max-width: 420px) {
  .booking-form { grid-template-columns: 1fr !important; }
}

/* ── Rooms grid — responsive ── */
@media (min-width: 900px) {
  .rooms-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 600px) and (max-width: 899px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 599px) {
  .rooms-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ── Room card image height ── */
.room-card-img { height: 220px !important; }
@media (max-width: 480px) {
  .room-card-img { height: 200px !important; }
}

/* ── Section subtitle ── */
.section-subtitle {
  font-size: .92rem;
  line-height: 1.72;
  color: var(--color-text-muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

/* ── Features grid — desktop 3col, mobile 2col, xs 1col ── */
@media (min-width: 900px) {
  .features-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (min-width: 560px) and (max-width: 899px) {
  .features-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 559px) {
  .features-grid { grid-template-columns: 1fr !important; }
  .feature-card { text-align: left; display: flex; align-items: flex-start; gap: 1.1rem; padding: 1.2rem; }
  .feature-icon { margin: 0; flex-shrink: 0; width: 52px; height: 52px; font-size: 1.3rem; }
}

/* ── About section — desktop ── */
@media (min-width: 900px) {
  .about-grid { gap: 5rem; }
  .about-img-wrap { overflow: visible; }
}
@media (max-width: 768px) {
  .about-img-badge { right: .5rem !important; bottom: .5rem !important; }
  .about-content > div[style*="position:absolute"] { display: none; }
}

/* ── Reviews — desktop 3col, tablet 2col, mobile 1col ── */
@media (min-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (min-width: 560px) and (max-width: 899px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 559px) {
  .reviews-grid { grid-template-columns: 1fr !important; }
}

/* ── Rating widget ── */
@media (max-width: 480px) {
  .reviews-rating-widget { flex-direction: column !important; align-items: center !important; gap: .75rem !important; }
  .reviews-rating-widget > div:nth-child(2) { display: none !important; }
}

/* ── CTA Offer chips ── */
@media (max-width: 560px) {
  .cta-offer-chips { gap: .4rem !important; }
  .cta-offer-chips span { font-size: .7rem !important; padding: .28rem .65rem !important; }
}

/* ── Footer grid ── */
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1.2fr !important; gap: 3rem !important; }
}
@media (min-width: 600px) and (max-width: 899px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 2rem !important; }
}
@media (max-width: 599px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
}

/* ── Bottom nav enhancement ── */
.bn-item.active::before {
  background: var(--color-gold-bright);
}
.bn-item.active {
  color: var(--color-primary) !important;
}
.bn-book .bn-icon-wrap {
  background: linear-gradient(135deg, #d4a017, #8a6018) !important;
  box-shadow: 0 8px 24px rgba(184,149,42,.5) !important;
}

/* ── Drawer enhancement ── */
.drawer-title { font-family: var(--font-display); font-style: italic; }
.drawer-cta {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold)) !important;
  letter-spacing: .04em;
  box-shadow: 0 6px 20px rgba(184,149,42,.35) !important;
}

/* ── Property highlights ── */
@media (min-width: 900px) {
  .property-highlights { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (min-width: 560px) and (max-width: 899px) {
  .property-highlights { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Page hero inner pages ── */
.page-hero {
  padding-top: calc(var(--nav-height) + 4rem) !important;
  padding-bottom: 3.5rem !important;
}
.page-hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem) !important;
  font-weight: 400;
  margin-bottom: .6rem;
}
@media (max-width: 768px) {
  .page-hero { padding-top: calc(56px + 2.5rem) !important; padding-bottom: 2.5rem !important; }
  .page-hero h1 { font-size: 1.9rem !important; }
}

/* ── Booking page responsive ── */
@media (min-width: 900px) {
  .booking-page-wrapper { grid-template-columns: minmax(0,1fr) 360px !important; }
  .booking-form-card    { min-width: 0; }
}
@media (max-width: 899px) {
  .booking-page-wrapper { grid-template-columns: minmax(0,1fr) !important; }
  .booking-summary-card { position: static !important; order: -1; }
  .booking-form-card    { padding: 1.5rem !important; }
}

/* ── Filter bar on rooms.php ── */
.rooms-filter-bar select {
  border-radius: 8px;
  border: 1.5px solid var(--color-border);
  padding: .5rem .9rem;
  font-size: .86rem;
  background: var(--color-warm-white);
  color: var(--color-text);
  cursor: pointer;
}
.rooms-filter-bar select:focus {
  border-color: var(--color-primary);
  outline: none;
}
@media (max-width: 560px) {
  .rooms-filter-bar form { flex-direction: column !important; gap: .5rem !important; }
  .rooms-filter-bar select { width: 100%; }
  .rooms-filter-bar span { display: none !important; }
}

/* ── User dashboard mobile ── */
@media (max-width: 768px) {
  .user-stats { grid-template-columns: repeat(2, 1fr) !important; gap: .75rem; }
  .u-stat-val { font-size: 1.4rem !important; }
  .user-welcome-bar { padding: 1rem !important; }
  .user-avatar { width: 40px !important; height: 40px !important; font-size: 1.1rem !important; }
  .booking-item-body { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 420px) {
  .user-stats { grid-template-columns: 1fr 1fr !important; }
  .booking-item-body { grid-template-columns: 1fr !important; }
}

/* ── Admin dashboard mobile ── */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr !important; gap: .75rem !important; }
  .page-content { padding: 1rem !important; }
}

/* ── Smooth scrolling and font rendering ── */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ── WhatsApp float button ── */
.wa-float {
  background: #22c55e !important;
  box-shadow: 0 6px 24px rgba(34,197,94,.4) !important;
}
.wa-float:hover {
  box-shadow: 0 10px 30px rgba(34,197,94,.55) !important;
}

/* ── User login page ── */
.user-login-card { max-width: 420px !important; }
.login-brand h2 { font-family: var(--font-display) !important; font-style: italic; font-size: 1.7rem !important; }
.login-brand .brand-icon {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-primary)) !important;
  box-shadow: 0 6px 20px rgba(184,149,42,.3) !important;
}

/* ── PIN boxes ── */
.pin-box {
  transition: border-color .2s, box-shadow .2s, transform .15s cubic-bezier(.34,1.56,.64,1) !important;
}
.pin-box.filled { transform: scale(1.05) !important; }

/* ── section-pad tighter on mobile ── */
@media (max-width: 768px) {
  .section-pad { padding: 3.5rem 0 !important; }
  .section-pad-sm { padding: 2.2rem 0 !important; }
  h2.section-title { font-size: 1.7rem !important; }
}

/* ── Divider background matches section ── */
section[style*="#f4f1eb"] .divider::after,
section.section-tinted .divider::after { background: #f4f1eb !important; }
section[style*="background:var(--color-white)"] .divider::after { background: #fff !important; }
