/* ========================================
   Vaibhavam Catering — style.css
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark-green:  #0d2b1e;
  --mid-green:   #1a3d2b;
  --light-green: #395648;
  --accent-gold: #c9963a;
  --gold-light:  #d7ac58;
  --gold-btn:    #e0a832;
  --text-dark:   #1e3c32;
  --text-body:   #4a5568;
  --text-muted:  #7e7e7f;
  --bg-cream:    #faf8f4;
  --bg-light:    #f5f3ee;
  --white:       #ffffff;
  --border:      #e2ddd4;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.16);
  --radius:      12px;
  --radius-lg:   20px;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg-cream); color: var(--text-dark); margin: 0; overflow-x: hidden; padding-top: 66px; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
.menu-mobile-box{display:none;}
/* ══════════════════════════════════════
   TOP NAV
══════════════════════════════════════ */
.top-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 90px;
  display: flex; align-items: center; justify-content: space-between;
  position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.logo-wrap {
  display: flex; align-items: center;
  border-radius: 8px;
}
.logo-wrap img{width:200px;}
.logo-icon { font-family: var(--font-serif); font-size: 32px; font-weight: 800; color: var(--gold-light); line-height: 1; letter-spacing: -1px; }
.logo-text { display: flex; flex-direction: column; margin-left: 8px; line-height: 1.1; }
.logo-text .brand { font-size: 11px; font-weight: 700; color: var(--gold-light); letter-spacing: 2px; }
.logo-text .tagline { font-size: 8px; color: #a89060; letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin-top: 15px; }
.nav-links li a {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 1px 16px 3px; border-radius: 8px; transition: background 0.2s;
}
.nav-links li a:hover { background: var(--bg-light); }
.nav-links li a.active { background: var(--bg-light); border: 1px solid var(--border); }
.nav-links li a .nav-icon {width: 28px;
    height: 32px;
    object-fit: contain;
    padding-top: 3px;}
.nav-links li a .nav-label-small { font-size: 9px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.nav-links li a .nav-label-big { font-size: 12px; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.5px; }
.nav-cta-wrap { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 16px 4px 8px; border: 1.5px solid var(--border);
  border-radius: 50px; background: var(--white);
}
.nav-phone-img { width:35px; height: 35px; border-radius: 50%; object-fit: cover; }
.nav-phone-text { display: flex; flex-direction: column; }
.nav-phone-text span:first-child { font-size: 11px; color: var(--text-muted); }
.nav-phone-text span:last-child { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.nav-menu-btn {
  background: var(--dark-green); color: var(--white);
  width: 35px; height: 35px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.nav-menu-btn span { display: block; width: 18px; height: 2px; background: var(--white); border-radius: 2px; }

/* ══════════════════════════════════════
   CATEGORY BAR  (desktop sticky below nav)
══════════════════════════════════════ */
.cat-bar {
  background: var(--dark-green);
  padding: 0 40px;
  display: flex; align-items: stretch; height: 70px;
  position: sticky; top: 90px; z-index: 990;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.cat-bar--hidden {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  visibility: hidden;
}
.cat-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 24px; cursor: pointer; position: relative;
  transition: background 0.2s;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
}
.cat-item:first-child { border-left: 1px solid rgba(255,255,255,0.1); }
.cat-item:hover { background: rgba(255,255,255,0.05); }
.cat-item.active { background: rgba(201,150,58,0.15); }
.cat-item.active::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 3px; background: var(--accent-gold); border-radius: 2px 2px 0 0;
}
.cat-icon { width: 34px; height: 34px; object-fit: contain; }
.cat-label { font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }

/* ══════════════════════════════════════
   PAGE HERO
══════════════════════════════════════ */
.services-hero {
  background: var(--bg-cream); text-align: center;
  padding: 52px 40px 40px; position: relative; overflow: hidden;
}
.services-hero::before, .services-hero::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='400' viewBox='0 0 80 400'%3E%3Cpath d='M20 50 Q60 100 20 150 Q60 200 20 250 Q60 300 20 350' stroke='%23d7ac5830' stroke-width='3' fill='none'/%3E%3C/svg%3E") no-repeat center;
  pointer-events: none;
}
.services-hero::before { left: 0; }
.services-hero::after { right: 0; transform: scaleX(-1); }
.hero-icon-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 8px; }
.hero-icon-row img { width: 48px; height: 48px; object-fit: contain; }
.hero-stars { color: var(--accent-gold); font-size: 14px; letter-spacing: 4px; }
.hero-eyebrow { font-size: 14px; font-weight: 600; color: var(--text-muted); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 6px; }
.hero-title { font-family: var(--font-serif); font-size: clamp(36px,5vw,62px); font-weight: 800; color: var(--text-dark); line-height: 1.05; margin-bottom: 14px; }
.hero-sub { font-size: 16px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ══════════════════════════════════════
   SERVICE CARDS — unified image+content
══════════════════════════════════════ */
.services-section { padding: 0 0 60px; background: var(--bg-cream); }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  margin: 0 40px 48px; box-shadow: var(--shadow-md); overflow: hidden;
  scroll-margin-top: 170px; transition: box-shadow 0.3s;
}
.service-card:hover { box-shadow: var(--shadow-lg); }

/* Image pane: taller, with gallery overlay feel */
.service-card-img-wrap {
  position: relative; overflow: hidden;
  height: 340px;
}
.service-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
  display: block;
}
.service-card:hover .service-card-img-wrap img { transform: scale(1.06); }

/* Service badge overlay on image */
.service-img-badge {
  position: absolute; bottom: 16px; left: 16px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(13,43,30,0.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(201,150,58,0.4);
  border-radius: 10px; padding: 8px 14px;
}
.service-img-badge img { width: 32px; height: 32px; object-fit: contain; }
.service-img-badge span { font-size: 13px; font-weight: 700; color: var(--gold-light); letter-spacing: 0.5px; }

/* Gallery thumbnails strip */
.service-gallery-strip {
  display: flex; gap: 6px; padding: 10px 16px;
  background: var(--dark-green); border-top: 2px solid rgba(201,150,58,0.3);
}
.service-gallery-thumb {
  width: 54px; height: 42px; border-radius: 6px; object-fit: cover;
  border: 1.5px solid rgba(255,255,255,0.15); cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.service-gallery-thumb:hover { border-color: var(--accent-gold); transform: scale(1.08); }
.service-gallery-thumb.active { border-color: var(--accent-gold); box-shadow: 0 0 0 2px var(--accent-gold); }

/* Layout: image on left/right, body on opposite side */
.service-card-layout {
  display: grid;
  grid-template-columns: 363px 1fr;
}
.service-card-layout.flip { direction: rtl; }
.service-card-layout.flip > * { direction: ltr; }

/* Image column */
.service-card-img-col { display: flex; flex-direction: column; }

/* Body column */
.service-card-body {
  padding: 28px 32px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.service-card-header { display: flex; align-items: center; gap: 12px; }
.service-card-header img { width: 40px; height: 40px; flex-shrink: 0; object-fit: contain; }
.service-card-title {
  font-family: var(--font-serif); font-size: 32px; margin-bottom: -4px; font-weight: 700; color: var(--text-dark);
}
.service-card-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; }

/* ── Why Choose Us — accordion with read more ── */
.why-box { background: var(--bg-light); border-radius: var(--radius); overflow: hidden; }
.why-box-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; cursor: pointer; user-select: none;
}
.why-box-title { font-size: 10px; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 1.5px; }
.why-box-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform 0.3s; color: var(--accent-gold);
}
.why-box.open .why-box-chevron { transform: rotate(180deg); }
.why-box-body { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.why-box.open .why-box-body { max-height: 600px; }

/* First 8 always visible inside the open box; extras hidden until read-more */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 7px 12px;
  padding: 6px 16px 8px;
}
.why-item { display: flex; align-items: flex-start; gap: 7px; font-size: 12px; color: var(--text-body); line-height: 1.4; }
.why-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: #22c55e; }

/* extra items hidden by default, shown after "read more" click */
.why-extra { display: none; }
.why-box.expanded .why-extra { display: flex; }

.why-read-more-btn {
  display: flex; align-items: center; gap: 5px;
  margin: 0 16px 12px; padding: 7px 12px;
  background: transparent; border: 1px solid var(--border);
  border-radius: 8px; font-size: 11px; font-weight: 600;
  color: var(--accent-gold); cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  width: fit-content;
}
.why-read-more-btn:hover { background: rgba(201,150,58,0.08); border-color: var(--accent-gold); }
.why-read-more-btn svg { width: 14px; height: 14px; transition: transform 0.2s; }
.why-box.expanded .why-read-more-btn svg { transform: rotate(180deg); }

/* ── Amenities — horizontal scroll carousel ── */
.amenities-strip { border-top: 1px solid var(--border); padding: 14px 0 6px; }
.amenities-title {
  font-size: 10px; font-weight: 700; color: var(--text-dark);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px; padding: 0 2px;
}
.amenities-title::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, var(--accent-gold), transparent); }
.amenities-icons {
  display: flex; gap: 8px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 6px; scrollbar-width: none;
}
.amenities-icons::-webkit-scrollbar { display: none; }
.amenity-item {
  flex: 0 0 auto; width: 76px; scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 10px 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.amenity-item:hover { border-color: var(--accent-gold); box-shadow: var(--shadow-sm); }
.amenity-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.amenity-icon svg { width: 36px; height: 36px; }
.amenity-item span { font-size: 9.5px; color: var(--text-muted); text-align: center; line-height: 1.3; font-weight: 500; }

/* ── Service CTA row — 3 options ── */
.service-cta-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: auto;
}
.svc-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: 10px; padding: 11px 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  white-space: nowrap;
}
.svc-btn:hover { transform: translateY(-2px); }
.svc-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.svc-btn-enquiry {
  background: var(--dark-green); color: var(--white);
  box-shadow: 0 3px 12px rgba(13,43,30,0.25);
}
.svc-btn-enquiry:hover { background: var(--mid-green); box-shadow: 0 6px 20px rgba(13,43,30,0.35); }
.svc-btn-whatsapp {
  background: #25d366; color: #fff;
  box-shadow: 0 3px 12px rgba(37,211,102,0.3);
}
.svc-btn-whatsapp:hover { background: #22bc5b; box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
.svc-btn-call {
  background: var(--accent-gold); color: var(--dark-green);
  box-shadow: 0 3px 12px rgba(201,150,58,0.35);
}
.svc-btn-call:hover { background: var(--gold-btn); box-shadow: 0 6px 20px rgba(201,150,58,0.5); }

/* ══════════════════════════════════════
   STATS STRIP
══════════════════════════════════════ */
.stats-strip {
  background: linear-gradient(135deg, var(--dark-green) 0%, #1a4030 50%, var(--mid-green) 100%);
  padding: 48px 40px; display: flex; justify-content: center; gap: 0;
}
.stat-item { flex: 1; max-width: 220px; text-align: center; padding: 0 24px; position: relative; }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 1px; background: rgba(255,255,255,0.15);
}
.stat-num { font-family: var(--font-serif); font-size: 43px; font-weight: 800; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 6px; }

/* ══════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════ */
.process-section { background: var(--white); padding: 80px 40px; }
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 32px; max-width: 1100px; margin: 48px auto 0; position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 40px;
  left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px; background: repeating-linear-gradient(90deg, var(--accent-gold) 0, var(--accent-gold) 10px, transparent 10px, transparent 20px);
}
.process-step { text-align: center; position: relative; }
.step-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-green), var(--mid-green));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 28px; box-shadow: var(--shadow-md);
  border: 3px solid var(--gold-light); position: relative; z-index: 1;
}
.step-num {
  position: absolute; top: -6px; right: -6px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent-gold); color: var(--white);
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════
   PACKAGES SECTION
══════════════════════════════════════ */
.packages-section {
  background: var(--bg-cream);
  padding: 80px 40px;
  position: relative; overflow: hidden;
}
.packages-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,150,58,0.06), transparent 70%);
  pointer-events: none;
}
.packages-header { text-align: center; margin-bottom: 52px; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
  align-items: start;
}
.pkg-card {
  background: var(--white); border-radius: 20px;
  border: 1.5px solid var(--border);
  overflow: hidden; position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  box-shadow: var(--shadow-sm);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent-gold); }
.pkg-card.featured {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(201,150,58,0.18), var(--shadow-lg);
  transform: translateY(-8px);
}
.pkg-popular-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--accent-gold); color: var(--dark-green);
  font-size: 9px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 4px 10px; border-radius: 50px;
}
.pkg-header {
  padding: 28px 28px 20px;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--mid-green) 100%);
  text-align: center;
}
.pkg-card.featured .pkg-header {
  background: linear-gradient(135deg, #0a2218 0%, #1a4030 50%, var(--mid-green) 100%);
}
.pkg-icon { font-size: 36px; margin-bottom: 10px; }
.pkg-name {
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  color: var(--gold-light); margin-bottom: 4px;
}
.pkg-tagline { font-size: 12px; color: rgba(255,255,255,0.55); }
.pkg-price-wrap {
  display: flex; align-items: baseline; justify-content: center;
  gap: 4px; margin-top: 14px;
}
.pkg-currency { font-size: 20px; font-weight: 700; color: var(--accent-gold); }
.pkg-price { font-family: var(--font-serif); font-size: 44px; font-weight: 800; color: var(--white); line-height: 1; }
.pkg-per { font-size: 12px; color: rgba(255,255,255,0.45); align-self: flex-end; padding-bottom: 6px; }
.pkg-body { padding: 22px 24px 24px; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.pkg-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--text-body); line-height: 1.4;
}
.pkg-features li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.pkg-features li.included svg { color: #22c55e; }
.pkg-features li.excluded { opacity: 0.45; }
.pkg-features li.excluded svg { color: var(--text-muted); }
.pkg-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.pkg-btn {
  display: block; width: 100%; text-align: center;
  padding: 13px; border-radius: 10px;
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.pkg-btn:hover { transform: translateY(-2px); }
.pkg-btn-outline {
  background: transparent; border: 2px solid var(--dark-green); color: var(--dark-green);
}
.pkg-btn-outline:hover { background: var(--dark-green); color: var(--white); }
.pkg-btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), #e8b840);
  color: var(--dark-green);
  box-shadow: 0 4px 20px rgba(201,150,58,0.4);
}
.pkg-btn-gold:hover { box-shadow: 0 8px 28px rgba(201,150,58,0.55); }
.pkg-guests-tag {
  text-align: center; margin-top: 10px;
  font-size: 11px; color: var(--text-muted);
}
.pkg-guests-tag strong { color: var(--accent-gold); }

/* ══════════════════════════════════════
   REVIEWS — reference design style
══════════════════════════════════════ */
.testimonials {
  background: var(--bg-light); padding: 72px 40px; text-align: center;
}
.section-eyebrow { font-size: 12px; font-weight: 700; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 8px; }
.section-title { font-family: var(--font-serif); font-size: clamp(28px,4vw,44px); font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.section-sub { font-size: 15px; color: var(--text-muted); max-width: 480px; margin: 0 auto 40px; }

/* Rating summary card */
.review-summary-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: grid; grid-template-columns: 220px 1fr;
  max-width: 980px; margin: 0 auto 40px; text-align: left; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.review-summary-left {
  background: var(--bg-light); padding: 28px 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  border-right: 1px solid var(--border);
}
.rsl-stars { display: flex; gap: 4px; }
.rsl-stars svg { width: 22px; height: 22px; }
.rsl-score { font-family: var(--font-serif); font-size: 56px; font-weight: 800; color: var(--accent-gold); line-height: 1; }
.rsl-based { font-size: 12px; color: var(--text-muted); text-align: center; }
.rsl-verified { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: #2563eb; }
.rsl-verified svg { width: 14px; height: 14px; }
.review-summary-right { padding: 24px 28px; }
.review-summary-intro { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.rating-bar-platform { display: flex; align-items: center; gap: 6px; min-width: 130px; }
.rating-bar-platform svg { width: 16px; height: 16px; }
.rating-bar-platform span { font-size: 12px; color: var(--text-body); }
.rating-bar-track { flex: 1; height: 8px; background: var(--bg-light); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: linear-gradient(90deg, #22c55e, #16a34a); border-radius: 4px; transition: width 1s ease; }
.rating-bar-score { display: flex; align-items: center; gap: 4px; min-width: 40px; }
.rating-bar-score svg { width: 12px; height: 12px; }
.rating-bar-score span { font-size: 12px; font-weight: 700; color: var(--text-dark); }

/* Reviews carousel — 2 side by side */
.reviews-carousel-wrap { max-width: 980px; margin: 0 auto; position: relative; }
.reviews-carousel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  overflow: hidden;
}
.reviews-track {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: repeat(8, calc(50% - 10px));
  gap: 20px;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}
/* Nav arrows */
.reviews-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 24px;
}
.reviews-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
}
.reviews-arrow:hover { background: var(--accent-gold); border-color: var(--accent-gold); }
.reviews-arrow:hover svg { stroke: var(--dark-green); }
.reviews-arrow svg { width: 18px; height: 18px; stroke: var(--text-dark); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.reviews-dots { display: flex; gap: 6px; }
.reviews-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.reviews-dot.active { background: var(--accent-gold); transform: scale(1.3); }

/* Show-more button */
.reviews-show-more-wrap { text-align: center; margin-top: 28px; }
.reviews-show-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  background: transparent; border: 2px solid var(--accent-gold);
  color: var(--accent-gold); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.reviews-show-more-btn:hover { background: var(--accent-gold); color: var(--dark-green); }
.reviews-show-more-btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
.reviews-show-more-btn.less svg { transform: rotate(180deg); }

/* Individual review card */
.review-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 20px;
  text-align: left; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
  /* Each card occupies one column slot */
  width: 100%;
  flex-shrink: 0;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; }
.review-user { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar-placeholder {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--white);
  flex-shrink: 0; border: 2px solid var(--gold-light);
}
.review-user-info { display: flex; flex-direction: column; gap: 2px; }
.reviewer-name { font-size: 13px; font-weight: 700; color: var(--text-dark); display: flex; align-items: center; gap: 4px; }
.reviewer-name svg { width: 13px; height: 13px; }
.reviewer-meta { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.reviewer-meta svg { width: 11px; height: 11px; }
.review-right { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.review-stars-row { display: flex; gap: 2px; }
.review-stars-row svg { width: 13px; height: 13px; }
.review-rating-label { font-size: 10px; color: var(--text-muted); }
.review-booked { font-size: 11.5px; color: var(--text-body); margin-bottom: 7px; }
.review-booked a { color: var(--accent-gold); font-weight: 600; }
.review-text { font-size: 12.5px; color: var(--text-body); line-height: 1.65; margin-bottom: 12px; }
.review-photos { display: flex; gap: 6px; flex-wrap: wrap; }
.review-photo { width: 64px; height: 56px; border-radius: 7px; object-fit: cover; border: 1px solid var(--border); }
.review-read-more { color: var(--accent-gold); font-size: 12px; font-weight: 600; white-space: nowrap; }
.review-text-extra { display: none; }
.review-text-extra.expanded { display: inline; }

/* ══════════════════════════════════════
   GALLERY SECTION
══════════════════════════════════════ */
.gallery-section {
  background: #061208;
  padding: 90px 40px;
  position: relative;
}
.gallery-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.gallery-section-header {
  text-align: center;
  margin-bottom: 52px;
}
.gallery-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 12px;
}
.gallery-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.gallery-title em {
  font-style: normal;
  color: var(--gold-light);
}
.gallery-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: #0d1f12;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ── Large desktop 1280–1600px ─────── */
@media (max-width: 1600px) {
  .gallery-section { padding: 85px 36px; }
}

/* ── Laptop / small desktop ≤1280px ── */
@media (max-width: 1280px) {
  .gallery-section { padding: 80px 28px; }
  .gallery-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; }
}

/* ── Tablet landscape ≤1024px ───────── */
@media (max-width: 1024px) {
  .gallery-section { padding: 70px 24px; }
  .gallery-section-header { margin-bottom: 40px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
}

/* ── Tablet portrait ≤768px ─────────── */
@media (max-width: 768px) {
  .gallery-section { padding: 60px 20px; }
  .gallery-section-header { margin-bottom: 32px; }
  .gallery-eyebrow { letter-spacing: 3px; }
  .gallery-subtitle { font-size: 14px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .gallery-item { border-radius: 10px; }
}

/* ── Large mobile ≤640px ────────────── */
@media (max-width: 640px) {
  .gallery-section { padding: 52px 16px; }
  .gallery-section-header { margin-bottom: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ── Mobile ≤480px ──────────────────── */
@media (max-width: 480px) {
  .gallery-section { padding: 44px 14px; }
  .gallery-eyebrow { font-size: 11px; letter-spacing: 2.5px; }
  .gallery-subtitle { font-size: 13px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .gallery-item { border-radius: 8px; }
}

/* ── Small mobile ≤360px ────────────── */
@media (max-width: 360px) {
  .gallery-section { padding: 36px 12px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 8px; }
  .gallery-section-header { margin-bottom: 24px; }
}

/* ══════════════════════════════════════
   ENGAGEMENT SECTION
══════════════════════════════════════ */
.engagement-section {
  background: linear-gradient(135deg, #0d2b1e 0%, #1a3d2b 40%, #0f3527 100%);
  padding: 90px 40px; overflow: hidden; position: relative;
}
.engagement-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,150,58,0.08), transparent 70%);
  pointer-events: none;
}
.engagement-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.engagement-left { position: relative; }
.engagement-left .eyebrow { font-size: 12px; font-weight: 700; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 4px; margin-bottom: 16px; }
.engagement-left h2 { font-family: var(--font-serif); font-size: clamp(30px,4vw,50px); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.engagement-left h2 em { font-style: normal; color: var(--gold-light); }
.engagement-left p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 32px; }
.engagement-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px; color: #71857c; padding: 12px 16px;
  font-size: 14px; font-family: var(--font-sans);
  transition: border-color 0.2s, background 0.2s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent-gold); background: rgba(255,255,255,0.12);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(201,150,58,0.85)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: var(--dark-green); color: var(--white); }
.form-group textarea { resize: none; height: 90px; }
.date-input-wrap {
  position: relative; display: flex; align-items: center;
}
.date-input-wrap input[type="text"] {
  flex: 1; width: 100%; padding-right: 44px !important; cursor: pointer;
}
.date-cal-icon {
  position: absolute; right: 0; top: 0; height: 100%; width: 44px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; border-left: 1px solid rgba(255,255,255,0.15);
  color: var(--accent-gold); cursor: pointer;
  border-radius: 0 10px 10px 0; transition: background 0.2s;
}
.date-input-wrap:focus-within .date-cal-icon,
.date-cal-icon:hover { background: rgba(255,255,255,0.06); }
/* Flatpickr calendar overrides */
.flatpickr-calendar { font-family: var(--font-sans); border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.flatpickr-day.selected, .flatpickr-day.selected:hover { background: var(--accent-gold); border-color: var(--accent-gold); }
.flatpickr-day:hover { background: rgba(201,150,58,0.2); border-color: transparent; }
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg { fill: var(--accent-gold); }
.phone-input-wrap {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px; overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.phone-input-wrap:focus-within { border-color: var(--accent-gold); background: rgba(255,255,255,0.12); }
.phone-prefix {
  padding: 12px 10px 12px 16px; font-size: 14px; font-weight: 700;
  color: var(--accent-gold); border-right: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap; user-select: none;
}
.phone-input-wrap input {
  flex: 1; min-width: 0; background: transparent !important;
  border: none !important; border-radius: 0 !important;
  padding: 12px 16px 12px 10px !important; color: #fff !important;
  letter-spacing: 0.5px;
}
.form-submit {
  background: linear-gradient(135deg, var(--accent-gold), #e8b840);
  color: var(--dark-green); font-size: 14px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px; padding: 16px 32px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(201,150,58,0.4);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,150,58,0.5); }
.form-submit svg { width: 18px; height: 18px; }
.engagement-right { display: flex; flex-direction: column; gap: 20px; }
.eng-feature-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 22px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: background 0.2s, border-color 0.2s;
}
.eng-feature-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(201,150,58,0.4); }
.eng-icon-box {
  width: 50px; height: 50px; flex-shrink: 0; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.eng-icon-box.gold { background: rgba(201,150,58,0.2); }
.eng-icon-box.green { background: rgba(34,197,94,0.15); }
.eng-icon-box.blue { background: rgba(96,165,250,0.15); }
.eng-icon-box.red { background: rgba(248,113,113,0.15); }
.eng-card-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.eng-card-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.eng-card-badge {
  display: inline-block; margin-top: 8px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 50px;
  background: rgba(201,150,58,0.2); color: var(--gold-light);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: #081a11; color: rgba(255,255,255,0.7); padding: 60px 40px 0; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-wrap { margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 15px; transition: background 0.2s;
}
.social-btn:hover { background: var(--accent-gold); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.contact-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-bottom {
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════
   FLOATING CTA
══════════════════════════════════════ */
.float-cta { position: fixed; bottom: 28px; right: 28px; z-index: 999; }
.float-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--accent-gold); color: var(--dark-green);
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 14px 22px; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(201,150,58,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: floatPulse 2.5s ease-in-out infinite;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(201,150,58,0.6); animation: none; }
.float-btn svg { width: 18px; height: 18px; }
@keyframes floatPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(201,150,58,0.5); }
  50% { box-shadow: 0 6px 36px rgba(201,150,58,0.75); }
}

/* Mobile sticky bottom bar */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: var(--dark-green);
  padding: 10px 16px 12px;
  /* border-top: 2px solid var(--accent-gold); */
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  gap: 10px;
}
.mobile-cta-call {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent-gold); color: var(--dark-green);
  font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 1px;
  padding: 12px; border-radius: 10px;
}
.mobile-cta-call svg { width: 16px; height: 16px; }
.mobile-cta-quote {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255,255,255,0.1); color: var(--white);
  font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px;
  padding: 12px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.2);
}

/* ══════════════════════════════════════
   SLIDE PANEL (Why Us / Our Menu popup)
══════════════════════════════════════ */
.slide-panel-overlay {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0);
  transition: background 0.35s ease;
}
.slide-panel-overlay.open {
  display: flex; justify-content: flex-end;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
}
.slide-panel {
  width: min(520px, 92vw); height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 48px rgba(0,0,0,0.2);
}
.slide-panel-overlay.open .slide-panel {
  transform: translateX(0);
}
.slide-panel-head {
  background: linear-gradient(135deg, var(--dark-green), var(--mid-green));
  padding: 28px 28px 22px;
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-shrink: 0;
      position: sticky;
    top: 0;
    left: 0;
    z-index: 9;
}
.slide-panel-head-text { display: flex; flex-direction: column; gap: 4px; }
.slide-panel-eyebrow { font-size: 10px; font-weight: 700; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 2px; }
.slide-panel-title { font-family: var(--font-serif); font-size: 26px; font-weight: 800; color: var(--white); line-height: 1.1; }
.slide-panel-close {
  background: rgba(255,255,255,0.12); color: var(--white);
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; cursor: pointer;
  transition: background 0.2s;
}
.slide-panel-close:hover { background: rgba(255,255,255,0.22); }
.slide-panel-body { padding: 28px; flex: 1; overflow-y: scroll; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; touch-action: pan-y; }
.slide-panel-img {
  width: 100%; height: 180px; object-fit: cover;
  border-radius: 12px; margin-bottom: 22px;
}
#menu-panel .slide-panel-body{padding: 0px 14px 28px;}
.panel-section-title { font-size: 12px; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; margin-top: 20px; }
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.panel-grid-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-light); border-radius: 8px; padding: 10px 12px;
  font-size: 12.5px; color: var(--text-body); font-weight: 500;
}
.panel-grid-item svg { width: 15px; height: 15px; flex-shrink: 0; color: #22c55e; }
.panel-menu-category { margin-bottom: 18px; }
.panel-cat-name {
  font-size: 11px; font-weight: 700; color: var(--accent-gold);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
  padding-bottom: 6px; border-bottom: 1px solid var(--border);
}
.panel-dish-list { display: flex; flex-direction: column; gap: 6px; }
.panel-dish {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-body); padding: 6px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.05);
}
.panel-dish-name { font-weight: 500; }
.panel-dish-tag {
  font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 50px;
}
.panel-dish-tag.veg { background: rgba(34,197,94,0.12); color: #15803d; }
.panel-dish-tag.non-veg { background: rgba(239,68,68,0.1); color: #dc2626; }
.panel-dish-tag.jain { background: rgba(251,191,36,0.15); color: #b45309; }
.panel-cta-strip {
  margin-top: 24px; display: flex; flex-direction: column; gap: 10px;
}
.panel-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-radius: 10px;
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
}
.panel-cta-btn.gold {
  background: linear-gradient(135deg, var(--accent-gold), #e8b840);
  color: var(--dark-green);
}
.panel-cta-btn.green {
  background: #25d366; color: #fff;
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   MOBILE NAV DRAWER
══════════════════════════════════════ */
.mobile-nav-overlay { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); }
.mobile-nav-overlay.open { display: flex; justify-content: flex-end; }
.mobile-nav-drawer {
  background: var(--dark-green); width: min(320px,90vw); height: 100%;
  padding: 32px 28px; display: flex; flex-direction: column; gap: 20px;
  overflow-y: auto; animation: slideIn 0.3s ease;
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: none; } }
.mobile-nav-close {
  align-self: flex-end; background: rgba(255,255,255,0.1);
  color: var(--white); font-size: 20px; width: 38px; height: 38px;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.mobile-nav-drawer a {
  display: block; padding: 0px 0 5px; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px; font-weight: 600; color: var(--white); transition: color 0.2s;
}
.mobile-nav-drawer a:hover { color: var(--gold-light); }
.drawer-logo{margin-top: -60px; width: calc(100% - 60px);}
.drawer-logo img{width: 100%;border-radius: 10px; padding: 2px 5px; background: #fff;}



/* EXIT INTENT POPUP*/
.exit-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(8,15,35,0.68);
  z-index: 12000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(3px);
}
.exit-popup-overlay.active { opacity: 1; pointer-events: all; touch-action: none; overscroll-behavior: none; }

.exit-popup {
  position: fixed;
  left: 50%; bottom: 0;
  transform: translateX(-50%) translateY(100%);
  z-index: 12001;
  width: min(420px, 100vw);
  background: #fff;
  border-radius: 28px 28px 0 0;
  padding: 0 0 calc(env(safe-area-inset-bottom, 0px) + 8px);
  box-shadow: 0 -12px 48px rgba(8,15,35,0.22);
  transition: transform 0.46s cubic-bezier(0.22,1,0.36,1);
}
.exit-popup.active { transform: translateX(-50%) translateY(0); }

.exit-popup-drag { width: 44px; height: 5px; border-radius: 3px; background: #D1D5E8; margin: 14px auto 0; display:block; }

.ep-close {
  position: absolute; top: 12px; right: 14px;
  width: 32px; height: 32px;
  background: rgba(13,43,30,0.08); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-body); font-size: 1.35rem;
  transition: background 0.18s, color 0.18s;
  line-height: 1;
}
.ep-close:hover { background: rgba(13,43,30,0.15); color: var(--text-dark); }

.exit-popup-body { padding: 18px 24px 20px; }

.exit-popup-badge {
  display: inline-flex; align-items:center; gap:6px;
  background: #fdf5e6; color: var(--accent-gold);
  border: 1.5px solid rgba(201,150,58,0.3);
  border-radius: 30px; padding: 5px 14px;
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 12px;
}
.exit-popup-badge .ep-dot { width:7px;height:7px;border-radius:50%;background:var(--accent-gold);animation:blink-dot 1.1s infinite; }

.exit-popup-title {
  font-family: var(--font-serif);
  font-size: 1.35rem; font-weight: 900;
  color: var(--text-dark); line-height: 1.25;
  margin-bottom: 8px;
}
.exit-popup-title span { color: var(--accent-gold); }

.exit-popup-desc {
  font-size: 0.88rem; color: var(--text-body);
  line-height: 1.65; margin-bottom: 18px;
}

.exit-popup-offer {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--mid-green) 100%);
  border-radius: 16px; padding: 14px 16px;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.epo-icon { font-size: 2rem; flex-shrink:0; }
.epo-text strong {
  display: block;
  font-family: var(--font-sans); font-size: 0.92rem; font-weight: 800;
  color: var(--gold-light); margin-bottom: 3px;
}
.epo-text span { font-size: 0.78rem; color: rgba(255,255,255,0.80); }

.exit-popup-actions { display: flex; flex-direction: column; gap: 9px; }
.ep-call-btn {
  display: flex; align-items:center; justify-content:center; gap:9px;
  padding: 14px; background: var(--dark-green); color: #fff;
  border-radius: 14px; text-decoration:none;
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 800;
  box-shadow: 0 6px 22px rgba(13,43,30,0.30);
  transition: background 0.2s, transform 0.2s;
}
.ep-call-btn:hover { background: var(--mid-green); transform: translateY(-1px); }
.ep-wa-btn {
  display: flex; align-items:center; justify-content:center; gap:9px;
  padding: 12px; background: #25D366; color: #fff;
  border-radius: 14px; text-decoration:none;
  font-family: var(--font-sans); font-size: 0.88rem; font-weight: 800;
  box-shadow: 0 4px 16px rgba(37,211,102,0.22);
  transition: background 0.2s;
}
.ep-wa-btn:hover { background: #1ebe5d; }
.ep-dismiss {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.8rem;
  color: var(--text-muted); text-align: center; padding: 6px;
  transition: color 0.2s;
}
.ep-dismiss:hover { color: var(--text-dark); }



/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .service-card-layout { grid-template-columns: 1fr 1fr; }
  .service-card-img-wrap { height: 280px; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .pkg-card.featured { transform: none; }
}
@media (max-width: 1024px) {
  .top-nav { padding: 0 20px; }
  .nav-links li a { padding: 8px 10px; }
  .cat-bar { padding: 0 16px; overflow-x: auto; }
  .service-card { margin: 0 20px 32px; }
  .service-card-layout { grid-template-columns: 1fr; }
  .service-card-img-wrap { height: 260px; }
  .service-card-layout.flip { direction: ltr; }
  .stats-strip { flex-wrap: wrap; gap: 20px; padding: 40px 20px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .engagement-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .review-summary-card { grid-template-columns: 180px 1fr; }
  .reviews-track { grid-template-columns: repeat(8, calc(50% - 10px)); }
  .nav-phone{display:none}
  .cat-item{padding: 0 45px;}
}

@media (max-width: 767px) {
.logo-wrap{padding: 5px 6px;}
.service-card-layout {grid-template-columns: auto;display: block;}
.royal-cta-row{        grid-template-columns: 1fr 1fr 1fr;}
.why-grid {grid-template-columns: 1fr 1fr;}
.stat-item{max-width: 40%;width: 40%; flex: 0 0 50%;}
.stats-strip {flex-direction: row;}

}

/* ── Mobile-specific cat-bar: thin pill strip below nav ── */
@media (max-width: 640px) {
  body { padding-top: 60px; }
  .top-nav { height: 60px; padding: 0 14px; top: 0; }
  .nav-links { display: none; }
  .logo-wrap { min-width: 0; padding: 12px 12px; }
  .logo-wrap img{    width: 140px;}
  .logo-icon { font-size: 24px; }
  .logo-text .brand { font-size: 9px; }
  .nav-phone .nav-phone-text { display: none; }
  .main-hero{margin-top: -30px;}

  .menu-mobile-box{display: flex; position: fixed; top: 59px; left: 0; width: 100%; z-index: 999;padding: 5px 5px;  background: #ffffff;}
  .menu-mobile-box ul{display: inline-block;margin: 0;white-space: nowrap;overflow-x: scroll;padding-bottom: 0px;padding-left: 0;scrollbar-width: none;}
  .menu-mobile-box .nav-links li a .nav-icon{width: 18px;height: 18px;}
  .menu-mobile-box .nav-links li a {padding: 3px 6px; flex-direction: row;}
  .menu-mobile-box .nav-links li a .nav-label-small{display: none;}
  .menu-mobile-box li{display: inline-block;}
  .menu-mobile-box .nav-links li a .nav-label-big{font-size: 11px;}
  .menu-mobile-box .nav-links li a.active{color: #c9963a;background: rgba(201, 150, 58, .08); border-radius: 0; border: 0; border-bottom: 1px solid #08130b;}
  .menu-mobile-box .nav-links li a.active .nav-icon{filter:sepia(1) saturate(4) hue-rotate(0deg) brightness(0.85);}

  /* Thin category strip fixed below 60px header */
  .cat-bar {
    top: 94px; height: auto; padding: 6px 12px;
    flex-wrap: nowrap; overflow-x: auto; gap: 6px;
    scrollbar-width: none;
  }
  .cat-bar::-webkit-scrollbar { display: none; }
  .cat-item {
    padding: 2px 8px; border-radius: 0px;
    border-bottom: 1px solid rgba(255,255,255,0.15) !important;
    border-right: none !important;
    white-space: nowrap; flex-shrink: 0; height: auto;
  }
  .cat-item:first-child { border-left: 1px solid rgba(255,255,255,0.15) !important; }
  .cat-item.active { background: rgba(201,150,58,0.22); border-color: var(--accent-gold) !important;        border-left: 0 !important; }
  .cat-item.active::after { display: none; }
  .cat-icon { width: 18px; height: 18px; }
  .cat-label { font-size: 10px; letter-spacing: 0.3px; }

  .services-hero { padding: 28px 14px 20px; }
  .service-card { margin: 0 10px 20px; border-radius: 14px; scroll-margin-top: 120px; }
  .service-card-body { padding: 18px 14px 14px; gap: 12px; }
  .service-card-title { font-size: 18px; }
  .service-card-img-wrap { height: 200px; }
  .service-gallery-strip { padding: 8px 12px; gap: 5px; }
  .service-gallery-thumb { width: 44px; height: 34px; }

  .service-cta-row { grid-template-columns: 1fr; gap: 7px; }
  .svc-btn { padding: 12px 14px; font-size: 12px; justify-content: center; }

  .why-grid { grid-template-columns: 1fr; gap: 6px; }
  .amenity-item { width: 68px; }

  .packages-section { padding: 52px 14px; }
  .packages-grid { grid-template-columns: 1fr; gap: 16px; }
  .pkg-card.featured { transform: none; }

  .reviews-carousel { grid-template-columns: 100%; }
  .reviews-track { grid-template-columns: repeat(16, calc(100% - 0px)); }

  .process-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stats-strip { flex-direction: column; align-items: center; padding: 36px 16px; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { max-width: 100%; width: 100%; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.1); }
  .stat-item:first-child { border-top: none; }
  .engagement-section { padding: 48px 14px; }
  .float-cta { display: none; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 66px; }
  .testimonials { padding: 44px 14px; }
  .review-summary-card { grid-template-columns: 1fr; }
  .review-summary-left { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 20px; flex-direction: row; justify-content: flex-start; gap: 18px; flex-wrap: wrap; }
  .rating-bar-platform { min-width: 100px; }
  .process-section { padding: 48px 14px; }
  .site-footer { padding: 36px 16px 0; }

  /* Slide panels: bottom-up on mobile */
  .slide-panel-overlay.open { justify-content: center; align-items: flex-end; }
  .slide-panel {
    width: 100%; height: 85vh; border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }
  .slide-panel-overlay.open .slide-panel { transform: translateY(0); }
  .mh-headline{ font-size: 37px !important;}
  .mh-scroll-hint{display:none}
  .mh-ctas{margin-top: 20px;}
  .mobile-cta-quote{font-size: 12px;}
  .about-img-badge{bottom: 0;}

}
@media (max-width:480px){
    .menu-mobile-box li {flex: 1;}
    .menu-mobile-box .nav-links li a {padding: 3px 4px;    gap: 6px;}
    .logo-wrap img {width: 90px;}
    .top-nav{height: 42px;}
    body {padding-top: 40px;}
    .menu-mobile-box{top: 41px;}
    .cat-bar{top:76px;}
    .about-hero-wave svg{height: 60px;}
    .mh-wave svg{height: 50px;}
    .main-hero{min-height: 95svh;}

}
/* ══════════════════════════════════════
   ROYAL CTA BUTTONS (Bootstrap-enhanced)
══════════════════════════════════════ */
.royal-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}
.royal-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.royal-cta-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: 14px;
}
.royal-cta-btn:hover::before { opacity: 1; }
.royal-cta-btn:hover { transform: translateY(-3px); }

.royal-cta-icon-wrap {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.royal-cta-icon-wrap svg { width: 18px; height: 18px; }

.royal-cta-text {
  display: flex; flex-direction: column; gap: 1px;
}
.royal-cta-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.1;
}
.royal-cta-sub {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.7;
  line-height: 1.1;
}

/* Enquiry — deep forest green with gold shimmer */
.royal-cta-enquiry {
  background: linear-gradient(135deg, #0d2b1e 0%, #1a4030 100%);
  border: 1.5px solid rgba(201,150,58,0.35);
  box-shadow: 0 4px 18px rgba(13,43,30,0.35), inset 0 1px 0 rgba(201,150,58,0.2);
  color: var(--white);
}
.royal-cta-enquiry .royal-cta-icon-wrap {
  background: rgba(201,150,58,0.18);
  border: 1px solid rgba(201,150,58,0.3);
  color: var(--accent-gold);
}
.royal-cta-enquiry:hover {
  box-shadow: 0 8px 28px rgba(13,43,30,0.5), 0 0 0 2px rgba(201,150,58,0.3);
  color: var(--white);
}

/* WhatsApp — vibrant green with depth */
.royal-cta-whatsapp {
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  border: 1.5px solid rgba(37,211,102,0.25);
  box-shadow: 0 4px 18px rgba(37,211,102,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
  color: #fff;
}
.royal-cta-whatsapp .royal-cta-icon-wrap {
  background: rgba(37,211,102,0.2);
  border: 1px solid rgba(37,211,102,0.3);
}
.royal-cta-whatsapp .royal-cta-icon-wrap svg { width: 18px; height: 18px; }
.royal-cta-whatsapp:hover {
  box-shadow: 0 8px 28px rgba(37,211,102,0.4), 0 0 0 2px rgba(37,211,102,0.3);
  color: #fff;
}

/* Call — rich gold with dark text */
.royal-cta-call {
  background: linear-gradient(135deg, #b8820a 0%, #d4a017 50%, #c9963a 100%);
  border: 1.5px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 18px rgba(201,150,58,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  color: #0d2b1e;
}
.royal-cta-call .royal-cta-icon-wrap {
  background: rgba(13,43,30,0.15);
  border: 1px solid rgba(13,43,30,0.2);
  color: #0d2b1e;
}
.royal-cta-call:hover {
  box-shadow: 0 8px 28px rgba(201,150,58,0.65), 0 0 0 2px rgba(201,150,58,0.4);
  color: #0d2b1e;
}

@media (max-width: 640px) {
  .royal-cta-row { grid-template-columns: 1fr; gap: 8px; }
  .royal-cta-btn { padding: 11px 12px; }
  .royal-cta-label { font-size: 11px; }
}

/* ══════════════════════════════════════
   ROYAL PACKAGES SECTION
══════════════════════════════════════ */
.royal-pkg-section {
  background: linear-gradient(160deg, #060f08 0%, #0d1f14 40%, #081510 100%);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.royal-pkg-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 20% 20%, rgba(201,150,58,0.07), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(13,43,30,0.8), transparent 60%);
  pointer-events: none;
}
/* Ornament divider */
.royal-pkg-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 52px;
}
.royal-pkg-orn-line {
  flex: 1; max-width: 180px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,150,58,0.5), transparent);
}
.royal-pkg-orn-diamond {
  color: var(--accent-gold); font-size: 12px;
}

/* Package card */
.rpkg-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,150,58,0.18);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.rpkg-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,150,58,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,150,58,0.2);
}

/* Featured card */
.rpkg-featured {
  background: linear-gradient(160deg, #1a3522 0%, #0f2718 60%, #0d1f14 100%);
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px rgba(201,150,58,0.25), 0 20px 50px rgba(0,0,0,0.5);
}
.rpkg-featured:hover {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 2px rgba(201,150,58,0.5), 0 28px 70px rgba(201,150,58,0.15);
}

/* Crown banner */
.rpkg-crown-banner {
  background: linear-gradient(90deg, var(--accent-gold), #e8b840, var(--accent-gold));
  color: #0d2b1e;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 7px 20px;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* Top section */
.rpkg-top {
  padding: 28px 26px 20px;
  text-align: center;
}
.rpkg-tier-badge {
  display: inline-block;
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px; padding: 3px 12px;
  margin-bottom: 14px;
}
.rpkg-tier-gold {
  color: var(--accent-gold);
  border-color: rgba(201,150,58,0.35);
}
.rpkg-emblem {
  font-size: 40px;
  display: block; margin-bottom: 10px;
  filter: drop-shadow(0 4px 12px rgba(201,150,58,0.3));
}
.rpkg-name {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.rpkg-featured .rpkg-name { color: var(--gold-light); }
.rpkg-tagline {
  font-size: 12px; color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.rpkg-guest-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; padding: 5px 14px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6);
}
.rpkg-guest-gold {
  background: rgba(201,150,58,0.1);
  border-color: rgba(201,150,58,0.3);
  color: var(--gold-light);
}
.rpkg-guest-pill svg { stroke: currentColor; }
.rpkg-divider-gold {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,150,58,0.4), transparent);
  margin: 0 20px;
}

/* Body */
.rpkg-body { padding: 20px 26px; flex: 1; }
.rpkg-includes-label {
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}
.rpkg-feat-list {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.rpkg-feat-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: rgba(255,255,255,0.75);
}
.rpkg-feat-list li svg { width: 16px; height: 16px; flex-shrink: 0; }
.rpkg-highlight-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.rpkg-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 50px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}
.rpkg-tag-gold {
  background: rgba(201,150,58,0.12);
  border-color: rgba(201,150,58,0.3);
  color: var(--gold-light);
}

/* Footer */
.rpkg-footer {
  padding: 16px 26px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.rpkg-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px;
  border-radius: 10px;
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  transition: transform 0.18s, box-shadow 0.18s;
  text-decoration: none;
}
.rpkg-cta-btn:hover { transform: translateY(-2px); }
.rpkg-cta-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
}
.rpkg-cta-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.rpkg-cta-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e8b840 50%, #c9963a 100%);
  color: #0d2b1e;
  box-shadow: 0 4px 20px rgba(201,150,58,0.45);
}
.rpkg-cta-gold:hover {
  box-shadow: 0 8px 30px rgba(201,150,58,0.65);
  color: #0d2b1e;
}
.rpkg-footer-note {
  font-size: 10px; color: rgba(255,255,255,0.3);
  margin-top: 8px; margin-bottom: 0;
}

/* Trust strip */
.rpkg-trust-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  margin-top: 52px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,150,58,0.15);
  border-radius: 16px; padding: 20px 32px;
}
.rpkg-trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 24px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55);
}
.rpkg-trust-icon { font-size: 16px; }
.rpkg-trust-sep {
  color: rgba(201,150,58,0.4); font-size: 8px;
}
@media (max-width: 768px) {
  .rpkg-trust-item { padding: 6px 12px; font-size: 11px; }
  .rpkg-trust-sep { display: none; }
}

/* ══════════════════════════════════════
   ROYAL REVIEWS SECTION
══════════════════════════════════════ */
.royal-reviews-section {
  background: linear-gradient(160deg, #060f08 0%, #0b1c10 40%, #0f2718 100%);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.royal-reviews-bg-deco {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 10% 60%, rgba(201,150,58,0.05), transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 20%, rgba(30,100,60,0.1), transparent 60%);
}

/* Score badge */
.rr-score-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,150,58,0.1);
  border: 1px solid rgba(201,150,58,0.3);
  border-radius: 50px; padding: 8px 20px;
  margin-top: 16px;
}
.rr-score-stars { display: flex; gap: 2px; }
.rr-score-num {
  font-family: var(--font-serif); font-size: 22px; font-weight: 800;
  color: var(--accent-gold); line-height: 1;
}
.rr-score-slash, .rr-score-max { font-size: 14px; color: rgba(255,255,255,0.4); }
.rr-score-label { font-size: 12px; color: rgba(255,255,255,0.5); }

/* Review card base */
.rr-card {
  border-radius: 18px;
  padding: 24px;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.rr-card:hover { transform: translateY(-4px); }

.rr-card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.rr-card-dark:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,150,58,0.2); }

.rr-card-gold {
  background: linear-gradient(135deg, rgba(201,150,58,0.1) 0%, rgba(13,43,30,0.6) 100%);
  border: 1px solid rgba(201,150,58,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.rr-card-gold:hover { box-shadow: 0 16px 48px rgba(201,150,58,0.15), 0 0 0 1px rgba(201,150,58,0.35); }

.rr-card-light {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.rr-card-light:hover { border-color: rgba(201,150,58,0.25); }

.rr-card-wide {
  background: linear-gradient(135deg, #0f2718 0%, #0d1f14 100%);
  border: 1px solid rgba(201,150,58,0.2);
}

/* Quote mark */
.rr-card-quote-mark {
  font-family: var(--font-serif); font-size: 80px; font-weight: 800;
  color: rgba(201,150,58,0.2); line-height: 0.5;
  position: absolute; top: 20px; right: 24px;
}

/* Event tag */
.rr-card-event-tag {
  display: inline-block; margin-bottom: 10px;
  font-size: 9px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 4px 12px; border-radius: 50px;
  background: rgba(201,150,58,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201,150,58,0.25);
}
.rr-tag-green { background: rgba(34,197,94,0.1); color: #4ade80; border-color: rgba(34,197,94,0.2); }
.rr-tag-blue { background: rgba(59,130,246,0.1); color: #60a5fa; border-color: rgba(59,130,246,0.2); }
.rr-tag-purple { background: rgba(139,92,246,0.1); color: #a78bfa; border-color: rgba(139,92,246,0.2); }
.rr-tag-red { background: rgba(239,68,68,0.1); color: #f87171; border-color: rgba(239,68,68,0.2); }

.rr-card-text {
  font-size: 13.5px; color: rgba(255,255,255,0.7); line-height: 1.7;
  flex: 1; margin-bottom: 18px;
}
.rr-card-footer {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.rr-card-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--white);
  flex-shrink: 0; border: 2px solid rgba(201,150,58,0.3);
}
.rr-card-info { flex: 1; }
.rr-card-name { font-size: 13px; font-weight: 700; color: var(--white); }
.rr-card-event { font-size: 11px; color: rgba(255,255,255,0.4); }
.rr-card-stars { display: flex; gap: 2px; margin-left: auto; }
.rr-card-platform {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; color: rgba(255,255,255,0.3);
  margin-top: 12px;
}

/* Wide card layout */
.rr-wide-content {
  display: flex; gap: 20px; align-items: center;
}
.rr-wide-text { flex: 1; }
.rr-wide-img {
  width: 120px; height: 120px; border-radius: 12px;
  overflow: hidden; flex-shrink: 0;
}
.rr-wide-img img { width: 100%; height: 100%; object-fit: cover; }

/* Main CTA */
.rr-main-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent-gold), #e8b840);
  color: #0d2b1e; font-size: 14px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 16px 36px; border-radius: 50px;
  box-shadow: 0 6px 28px rgba(201,150,58,0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rr-main-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,150,58,0.6);
  color: #0d2b1e;
}

@media (max-width: 640px) {
  .rr-wide-content { flex-direction: column; }
  .rr-wide-img { width: 100%; height: 140px; }
}

/* ══════════════════════════════════════
   ROYAL ALTERNATIVE SERVICE CARD (Corporate Royal)
══════════════════════════════════════ */
.royal-service-alt-section {
  background: var(--bg-cream);
  padding: 80px 0 80px;
  border-top: 1px solid var(--border);
}
.rsa-card {
  display: grid;
  grid-template-columns: 440px 1fr;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px var(--border);
  position: relative;
}

/* Image pane */
.rsa-img-pane {
  display: flex; flex-direction: column;
  background: var(--dark-green);
}
.rsa-img-main {
  flex: 1; position: relative; overflow: hidden;
  min-height: 280px;
}
.rsa-img-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.rsa-card:hover .rsa-img-main img { transform: scale(1.06); }
.rsa-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,43,30,0.95) 0%, transparent 100%);
  padding: 20px 20px 16px;
  display: flex; gap: 20px;
}
.rsa-img-stat { text-align: center; }
.rsa-stat-num {
  font-family: var(--font-serif); font-size: 28px; font-weight: 800;
  color: var(--gold-light); display: block; line-height: 1;
}
.rsa-stat-lbl {
  font-size: 10px; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 1px;
}
.rsa-img-row {
  display: flex; gap: 3px; padding: 3px;
}
.rsa-img-row img {
  flex: 1; height: 64px; object-fit: cover;
  transition: opacity 0.2s;
}
.rsa-img-row img:hover { opacity: 0.8; }
.rsa-img-row img.active { opacity: 1; outline: 2px solid var(--accent-gold); outline-offset: -2px; }

/* Content pane */
.rsa-content-pane {
  padding: 36px 36px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.rsa-category-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(13,43,30,0.08), rgba(201,150,58,0.06));
  border: 1px solid rgba(13,43,30,0.15);
  border-radius: 50px; padding: 6px 14px;
  width: fit-content;
}
.rsa-category-tag img { width: 20px; height: 20px; object-fit: contain; }
.rsa-category-tag span { font-size: 11px; font-weight: 700; color: var(--dark-green); text-transform: uppercase; letter-spacing: 1px; }
.rsa-title {
  font-family: var(--font-serif); font-size: 26px; font-weight: 800;
  color: var(--text-dark); line-height: 1.15; margin: 0;
}
.rsa-title span { color: var(--accent-gold); }
.rsa-desc { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* Chips */
.rsa-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.rsa-chip {
  font-size: 11px; font-weight: 600;
  padding: 5px 12px; border-radius: 50px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--text-body);
  transition: background 0.2s, border-color 0.2s;
}
.rsa-chip:hover { background: rgba(201,150,58,0.08); border-color: var(--accent-gold); }

/* Feature strip */
.rsa-features {
  display: flex; gap: 0;
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
}
.rsa-feat-item {
  flex: 1; display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border-right: 1px solid var(--border);
}
.rsa-feat-item:last-child { border-right: none; }
.rsa-feat-icon { font-size: 20px; flex-shrink: 0; }
.rsa-feat-title { font-size: 12px; font-weight: 700; color: var(--text-dark); }
.rsa-feat-sub { font-size: 10px; color: var(--text-muted); }

@media (max-width: 1024px) {
  .rsa-card { grid-template-columns: 1fr; }
  .rsa-img-main { min-height: 240px; }
  .rsa-img-row img { height: 50px; }
}
@media (max-width: 640px) {
  .royal-service-alt-section { padding: 48px 0; }
  .rsa-content-pane { padding: 20px 18px; gap: 12px; }
  .rsa-title { font-size: 20px; }
  .rsa-features { flex-direction: column; }
  .rsa-feat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .rsa-feat-item:last-child { border-bottom: none; }
}

/* ══════════════════════════════════════
   MAIN HERO SECTION
══════════════════════════════════════ */
.main-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #060f08;
}
.mh-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mh-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
  transform: scale(1.04);
  animation: mhZoom 18s ease-in-out infinite alternate;
}
@keyframes mhZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}
.mh-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(6,15,8,0.7) 0%, rgba(13,43,30,0.75) 40%, rgba(6,15,8,0.85) 100%);
}
.mh-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,150,58,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,150,58,0.05) 0%, transparent 50%);
}

/* Floating decorative food images */
.mh-float-img {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(201,150,58,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 8px rgba(201,150,58,0.08);
  animation: mhFloat 6s ease-in-out infinite;
}
.mh-float-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.mh-float-1 {
  width: 180px; height: 180px;
  right: 8%; top: 15%;
  animation-delay: 0s;
}
.mh-float-2 {
  width: 130px; height: 130px;
  right: 16%; bottom: 22%;
  animation-delay: 1.5s;
}
@keyframes mhFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(2deg); }
}

/* Content */
.mh-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  padding-top: 20px;
}
.mh-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 20px;
}
.mh-orn-line {
  flex: 1; max-width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,150,58,0.7), transparent);
}
.mh-orn-crown {
  font-size: 22px; color: var(--accent-gold);
  filter: drop-shadow(0 0 8px rgba(201,150,58,0.6));
}
.mh-eyebrow {
  font-size: 12px; font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 16px;
}
.mh-headline {
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.mh-headline em {
  font-style: italic;
  color: var(--accent-gold);
  display: block;
}
.mh-subline {
  font-size: 15px; color: rgba(255,255,255,0.72);
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}

/* CTA buttons */
.mh-ctas {
  display: flex; flex-wrap: wrap;
  gap: 14px; justify-content: center;
  margin-bottom: 36px;
      margin-top: 30px;
}
.mh-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: all 0.25s ease;
  border: none; cursor: pointer;
  text-decoration: none;
}
.mh-btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), #e8b840);
  color: #0d2b1e;
  box-shadow: 0 8px 28px rgba(201,150,58,0.4);
}
.mh-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,150,58,0.55);
}
.mh-btn-menu {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.mh-btn-menu:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.mh-btn-call {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid rgba(201,150,58,0.5);
}
.mh-btn-call:hover {
  background: rgba(201,150,58,0.12);
  transform: translateY(-2px);
}

/* Trust row */
.mh-trust-row {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap;
  gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.6);
}
.mh-trust-badge {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,0.75);
}
.mh-trust-badge svg { color: var(--accent-gold); }
.mh-trust-icon { font-size: 14px; }
.mh-trust-sep { opacity: 0.4; }

/* Scroll hint */
.mh-scroll-hint {
  position: static;
  bottom: 127px;
  left: 50%;
  /* transform: translateX(-50%); */
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  font-size: 11px; color: rgba(255,255,255,0.5);
  letter-spacing: 2px; text-transform: uppercase;
}
.mh-scroll-dot {
  width: 20px; height: 32px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 10px;
  position: relative;
}
.mh-scroll-dot::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 6px;
  background: rgba(201,150,58,0.8);
  border-radius: 2px;
  animation: mhScrollDot 1.8s ease-in-out infinite;
}
@keyframes mhScrollDot {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80%       { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* Wave bottom */
.mh-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2; line-height: 0;
  overflow: hidden;
}
.mh-wave svg { display: block; width: 100%; height: auto; }

/* Mobile hero */
@media (max-width: 768px) {
  .main-hero { min-height: 100svh; align-items: flex-end; padding-bottom: 60px; }
  .mh-content { padding-top: 100px; padding-bottom: 20px; }
  .mh-float-1 { width: 110px; height: 110px; right: 4%; top: 8%; }
  .mh-float-2 { display: none; }
  .mh-ctas { gap: 10px; }
  .mh-btn { padding: 12px 20px; font-size: 13px; }
  .mh-scroll-hint { bottom: 70px; }
}
@media (max-width: 480px) {
  .mh-ctas { flex-direction: column; align-items: center; scrollbar-width: none;}
  .mh-btn { width: 166px; justify-content: center; padding: 10px 10px;font-size: 12px; box-shadow: none;}
  .mh-content{max-width: 100%;}
  .mh-ctas{white-space: nowrap;
    overflow-x: scroll;
    width: 100%;
    display: inline-block;
    padding-bottom: 10px;
    padding: 10px;}
    .mh-subline{margin-bottom: 10px;}
    .about-img-badge{bottom: 0px;}
}

/* ══════════════════════════════════════
   WHY ROYAL SECTION
══════════════════════════════════════ */
.why-royal-section {
  background: linear-gradient(160deg, #060f08 0%, #0d2b1e 40%, #081a11 100%);
  position: relative;
  overflow: hidden;
}
.why-royal-section::before {
  content: '';
  position: absolute;
  top: 60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,150,58,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.wr-wave-top, .wr-wave-bottom {
  line-height: 0;
}
.wr-wave-top svg, .wr-wave-bottom svg {
  display: block; width: 100%; height: auto;
}

.wr-ornament {
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
  margin-bottom: 16px;
}
.wr-orn-line {
  width: 50px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,150,58,0.6), transparent);
}
.wr-orn-text {
  font-size: 11px; font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 3px; text-transform: uppercase;
}
.wr-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.wr-title em { font-style: italic; color: var(--accent-gold); }
.wr-sub {
  font-size: 15px; color: rgba(255,255,255,0.6);
  max-width: 560px; margin: 0 auto;
  line-height: 1.7;
}

/* Pillar cards */
.wr-pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,150,58,0.15);
  border-radius: 20px;
  padding: 32px 24px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  height: 100%;
}
.wr-pillar:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,150,58,0.25);
}
.wr-pillar-featured {
  background: linear-gradient(160deg, rgba(201,150,58,0.12), rgba(13,43,30,0.6));
  border-color: rgba(201,150,58,0.4);
  box-shadow: 0 8px 32px rgba(201,150,58,0.15);
}
.wr-pillar-num {
  font-family: var(--font-serif);
  font-size: 56px; font-weight: 800;
  color: rgba(201,150,58,0.1);
  line-height: 1;
  position: absolute;
  top: 12px; right: 16px;
  pointer-events: none;
}
.wr-pillar-icon-wrap {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(201,150,58,0.15), rgba(201,150,58,0.05));
  border: 1px solid rgba(201,150,58,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}
.wr-pillar-title {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.wr-pillar-desc {
  font-size: 13.5px; color: rgba(255,255,255,0.6);
  line-height: 1.7; margin-bottom: 16px;
}
.wr-pillar-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(201,150,58,0.1);
  border: 1px solid rgba(201,150,58,0.25);
  border-radius: 50px;
  padding: 4px 12px;
}

/* Quote strip */
.wr-quote-strip {
  margin-top: 56px;
  background: linear-gradient(135deg, rgba(201,150,58,0.08), rgba(13,43,30,0.5));
  border: 1px solid rgba(201,150,58,0.2);
  border-radius: 16px;
  padding: 32px 40px;
  text-align: center;
}
.wr-quote-icon {
  font-family: var(--font-serif);
  font-size: 48px; color: var(--accent-gold);
  opacity: 0.5; line-height: 1;
  margin-bottom: 8px;
}
.wr-quote-text {
  font-family: var(--font-serif);
  font-size: 20px; font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  max-width: 640px; margin: 0 auto 12px;
}
.wr-quote-attr {
  font-size: 12px; color: var(--gold-light);
  letter-spacing: 1px;
}

/* Reveal delay helpers */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (max-width: 768px) {
  .wr-quote-strip { padding: 24px 20px; }
  .wr-quote-text { font-size: 16px; }
  .wr-pillar { padding: 24px 18px 20px; }
}

/* ══════════════════════════════════════
   ABOUT US SECTION
══════════════════════════════════════ */
.about-section {
  background: linear-gradient(160deg, #060f08 0%, #0f2718 50%, #081a11 100%);
  padding: 0 0 96px;
  position: relative;
  overflow: hidden;
}
.about-wave-top {
  line-height: 0;
}
.about-wave-top svg { display: block; width: 100%; height: auto; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Visuals */
.about-visuals {
  position: relative;
}
.about-img-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.about-img-main img {
  width: 100%; height: 360px;
  object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: linear-gradient(135deg, var(--accent-gold), #e8b840);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex; flex-direction: column;
  gap: 2px;
}
.about-badge-num {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 800;
  color: #0d2b1e; line-height: 1;
}
.about-badge-lbl {
  font-size: 11px; font-weight: 700;
  color: #0d2b1e; letter-spacing: 0.5px;
}
.about-img-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.about-img-sm {
  border-radius: 12px;
  overflow: hidden;
  height: 120px;
}
.about-img-sm img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.about-img-sm:hover img { transform: scale(1.06); }
.about-award-card {
  position: absolute;
  top: 24px; right: -16px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  min-width: 190px;
}
.about-award-icon { font-size: 28px; flex-shrink: 0; }
.about-award-title {
  font-size: 13px; font-weight: 700;
  color: var(--text-dark);
}
.about-award-sub {
  font-size: 11px; color: var(--text-muted);
}

/* Content */
.about-orn {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
  padding-top: 50px;
}
.about-orn-line {
  flex: 1; max-width: 50px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,150,58,0.6), transparent);
}
.about-orn-text {
  font-size: 10px; font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 3px; text-transform: uppercase;
}
.about-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.about-title em { font-style: italic; color: var(--accent-gold); }
.about-para {
  font-size: 14.5px; color: rgba(255,255,255,0.65);
  line-height: 1.8; margin-bottom: 14px;
}

/* Founder card */
.about-founder-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,150,58,0.2);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 20px 0;
}
.about-founder-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--accent-gold), #e8b840);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 800;
  color: #0d2b1e;
  flex-shrink: 0;
}
.about-founder-name {
  font-size: 14px; font-weight: 700; color: #fff;
}
.about-founder-role {
  font-size: 11px; color: var(--gold-light);
  margin-bottom: 6px;
}
.about-founder-quote {
  font-size: 13px; font-style: italic;
  color: rgba(255,255,255,0.6);
  line-height: 1.6; margin: 0;
}

/* Milestones */
.about-milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(201,150,58,0.2);
  border-radius: 14px;
  overflow: hidden;
  margin: 20px 0;
}
.about-milestone {
  display: flex; flex-direction: column;
  align-items: center;
  padding: 18px 10px;
  border-right: 1px solid rgba(201,150,58,0.15);
  text-align: center;
}
.about-milestone:last-child { border-right: none; }
.about-ms-num {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}
.about-ms-lbl {
  font-size: 10px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px; margin-top: 4px;
  text-align: center;
}

/* CTA */
.about-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent-gold), #e8b840);
  color: #0d2b1e;
  font-size: 14px; font-weight: 700;
  padding: 14px 28px; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(201,150,58,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.about-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,150,58,0.5);
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-award-card { right: 0; top: 16px; }
}
@media (max-width: 640px) {
  .about-section { padding-bottom: 60px; }
  .about-img-main img { height: 240px; }
  .about-img-secondary { display: none; }
  .about-award-card { position: static; margin-top: 12px; }
  .about-milestones { grid-template-columns: repeat(2, 1fr); }
  .about-milestone:nth-child(2) { border-right: none; }
  .about-milestone:nth-child(3) { border-right: 1px solid rgba(201,150,58,0.15); }
  .about-title { font-size: 26px; }
}

/* ══════════════════════════════════════
   SERVICE AREA SECTION
══════════════════════════════════════ */
.area-section {
  background: linear-gradient(160deg, #081a11 0%, #0d2b1e 50%, #060f08 100%);
  padding:60px 0 0;
  position: relative;
  overflow: hidden;
}
.area-wave-top, .area-wave-bottom {
  line-height: 0;
}
.area-wave-top svg, .area-wave-bottom svg {
  display: block; width: 100%; height: auto;
}

/* City slider */
.area-cities-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
  padding: 0 48px;
}
.area-cities-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  padding: 10px 0px;
}
.area-city-card {
  flex: 0 0 calc(33.333% - 14px);
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(201,150,58,0.15);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  cursor: default;
}
.area-city-card:hover,
.area-city-card.area-city-active {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,150,58,0.4);
  transform: translateY(-4px);
}
.area-city-icon { font-size: 36px; margin-bottom: 12px; }
.area-city-name {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 8px;
}
.area-city-desc {
  font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.7; margin-bottom: 14px;
}
.area-city-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(201,150,58,0.1);
  border: 1px solid rgba(201,150,58,0.25);
  border-radius: 50px;
  padding: 4px 12px;
}

/* Arrows */
.area-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,150,58,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  transition: background 0.2s;
  z-index: 2;
}
.area-arrow:hover { background: rgba(201,150,58,0.2); }
.area-arrow:disabled { opacity: 0.3; pointer-events: none; }
.area-arrow-prev { left: 0; }
.area-arrow-next { right: 0; }
.area-arrow svg { width: 18px; height: 18px; }

/* Dots */
.area-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 48px;
}
.area-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  transition: background 0.2s, width 0.2s;
  cursor: pointer;
  padding: 0;
}
.area-dot.active {
  background: var(--accent-gold);
  width: 24px; border-radius: 4px;
}

/* Bottom: map + locality grid */
.area-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Map mock */
.area-map-mock {
  position: relative;
  height: 300px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,150,58,0.15);
  border-radius: 18px;
  overflow: hidden;
}
.area-map-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.area-map-pin {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.area-map-pin span:first-child { font-size: 20px; }
.area-pin-lbl {
  font-size: 9px; font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  white-space: nowrap;
  background: rgba(6,15,8,0.7);
  padding: 2px 5px; border-radius: 4px;
}

/* Pin positions */
.area-pin-Hyderabad    { top: 40%;  left: 50%; }
.area-pin-gurugram { top: 62%;  left: 25%; }
.area-pin-noida    { top: 34%;  left: 70%; }
.area-pin-gnoida   { top: 52%;  left: 77%; }
.area-pin-ghaziabad { top: 22%; left: 72%; }
.area-pin-faridabad { top: 72%; left: 55%; }

/* Locality grid */
.area-loc-title {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 700;
  color: #fff; margin-bottom: 16px;
}
.area-loc-list {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.area-loc-chip {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 5px 12px;
  transition: background 0.2s, color 0.2s;
}
.area-loc-chip:hover {
  background: rgba(201,150,58,0.12);
  color: var(--gold-light);
  border-color: rgba(201,150,58,0.3);
}
.area-loc-more {
  background: rgba(201,150,58,0.1);
  border-color: rgba(201,150,58,0.3);
  color: var(--accent-gold);
  cursor: pointer;
  font-weight: 600;
}
.area-book-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent-gold), #e8b840);
  color: #0d2b1e;
  font-size: 13px; font-weight: 700;
  padding: 12px 24px; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(201,150,58,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.area-book-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,150,58,0.45);
}

@media (max-width: 1024px) {
  .area-bottom { grid-template-columns: 1fr; }
  .area-map-mock { height: 220px; }
  .area-city-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 640px) {
  .area-cities-wrap { padding: 0 36px; }
  .area-city-card { flex: 0 0 calc(100% - 0px); }
  .area-bottom { padding: 24px 0; gap: 24px; }
  .area-section { padding-bottom: 0; }
}

/* ══════════════════════════════════════
   SLIDE PANEL ENHANCEMENTS
══════════════════════════════════════ */

/* Tall panel (bottom-to-top on mobile, right-slide on desktop) */
.slide-panel-tall {
  max-height: 100vh;
  overflow: hidden;
}

/* Score strip inside Why Us panel */
.sp-score-strip {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
}
.sp-score-item {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; padding: 16px 10px;
  text-align: center;
}
.sp-score-sep {
  color: var(--border);
  font-size: 20px;
  flex-shrink: 0;
  opacity: 0.6;
}
.sp-score-num {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}
.sp-score-lbl {
  font-size: 10px; color: var(--text-muted);
  letter-spacing: 0.5px; margin-top: 4px;
}

/* Panel category sections */
.sp-cat-section { margin-bottom: 24px; }
.sp-cat-title {
  font-size: 12px; font-weight: 700;
  color: var(--dark-green);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-gold);
  display: inline-block;
}
.sp-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.sp-cat-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px; color: var(--text-body);
  font-weight: 500;
}
.sp-cat-item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Mini gallery in panel */
.sp-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
}
.sp-mini-gallery img {
  width: 100%; height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

/* Menu panel tabs */
.sp-menu-tabs {
  display: flex; flex-wrap: nowrap; gap: 8px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: sticky; top: -30px; left: 0; z-index: 9;
  background: var(--white);
  padding: 10px 0 12px;
  margin-bottom: 8px;
}
.sp-menu-tabs::-webkit-scrollbar { display: none; }
.sp-menu-tab {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px; font-weight: 600;
  color: var(--text-body);
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.sp-menu-tab.active,
.sp-menu-tab:hover {
  background: var(--dark-green);
  color: var(--gold-light);
  border-color: var(--dark-green);
}
.sp-menu-section { padding-top: 4px; }
.panel-cat-note { font-size: 10px; color: var(--text-muted); font-weight: 400; letter-spacing: 0; text-transform: none; }
.panel-menu-category {
  margin-bottom: 20px;
}
/* Sticky bar — type toggle + sub-tabs fixed while scrolling */
.menu-sticky-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  padding-bottom: 4px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.menu-sticky-bar .sp-menu-tabs {
  position: static;
  top: auto;
  padding-top: 6px;
  padding-bottom: 4px;
  margin-bottom: 0;
  box-shadow: none;
}
/* Veg / Non-Veg type toggle */
.menu-type-toggle {
  display: flex; gap: 0; margin-bottom: 0; overflow: hidden;
  border: 1.5px solid var(--border); border-bottom: none;
}
.menu-type-btn {
  flex: 1; padding: 7px 0; font-size: 14px; font-weight: 700;
  border: none; cursor: pointer;
  background: var(--bg-light); color: var(--text-muted);
  transition: background 0.22s, color 0.22s;
  letter-spacing: 0.3px;
}
.menu-type-btn.active[data-type="veg"] { background: #15803d; color: #fff; }
.menu-type-btn.active[data-type="nonveg"] { background: #dc2626; color: #fff; }
.menu-type-btn:not(.active):hover { background: var(--border); }
/* Type toggle show/hide */
.menu-type-content { display: none; }
.menu-type-content.active { display: block; }
/* Package sections always visible — continuous scroll */
.menu-pkg-content { display: block; padding-bottom: 6px; margin-bottom: 18px; border-bottom: 2px solid var(--border); }
.menu-pkg-content:last-child { border-bottom: none; margin-bottom: 0; }
.menu-pkg-title {
  font-size: 13px; font-weight: 700;
  color: var(--dark-green); letter-spacing: 0.5px;
  padding: 6px 10px; margin-bottom: 14px;
  background: rgba(21,128,61,0.07);
  border-left: 3px solid var(--dark-green);
  border-radius: 0 6px 6px 0;
}
.panel-menu-cat-title {
  font-size: 12px; font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 10px;
}
.panel-menu-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.panel-menu-list li {
  font-size: 13px; color: var(--text-body);
  padding: 6px 10px;
  background: var(--bg-cream);
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
}
.panel-menu-list li::before {
  content: '◆';
  font-size: 6px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* Gallery panel filters */
.sp-gallery-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.sp-gal-filter {
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 12px; font-weight: 600;
  color: var(--text-body);
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.sp-gal-filter.active,
.sp-gal-filter:hover {
  background: var(--dark-green);
  color: var(--gold-light);
  border-color: var(--dark-green);
}
.sp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.sp-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.sp-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sp-gallery-item:hover img { transform: scale(1.05); }
.sp-gallery-item-lbl,
.sp-gal-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(6,15,8,0.85), transparent);
  padding: 24px 12px 10px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.sp-gallery-item.hidden { display: none; }

@media (max-width: 640px) {
  .sp-score-strip { grid-template-columns: repeat(2, 1fr); }
  .sp-score-item:nth-child(2) { border-right: none; }
  .sp-cat-grid { grid-template-columns: 1fr; }
  .sp-gallery-grid { grid-template-columns: 1fr; }
  .panel-menu-list { grid-template-columns: 1fr; }
  .sp-mini-gallery { grid-template-columns: repeat(2, 1fr); }
  .sp-menu-tabs{top: -29px;}
}

/* ══════════════════════════════════════
   CONTACT US PAGE
══════════════════════════════════════ */

/* ── Hero Banner ──────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, #0d2b1e 0%, #1a3d2b 50%, #0f3527 100%);
  padding: 80px 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 40%, rgba(201,150,58,0.10), transparent 70%);
  pointer-events: none;
}
.contact-hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 56px;
}
.eyebrow-contact {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.contact-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}
.contact-hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.contact-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.70);
  line-height: 1.8;
}
.contact-hero-wave {
  margin-top: -2px;
  line-height: 0;
}
.contact-hero-wave svg {
  display: block;
  width: 100%;
  height: 70px;
}

/* ── Info Strip ───────────────────────── */
.contact-info-strip {
  background: var(--bg-cream);
  padding: 0 40px 48px;
}
.contact-info-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  transform: translateY(-32px);
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(201,150,58,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}
.ci-icon.whatsapp { background: rgba(37,211,102,0.10); }
.ci-icon.mail     { background: rgba(59,130,246,0.10); color: #3b82f6; }
.ci-icon.clock    { background: rgba(201,150,58,0.10); }
.ci-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ci-label { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.ci-value { font-size: 13px; font-weight: 700; color: var(--text-dark); word-break: break-word; }
.ci-value[href]:hover { color: var(--accent-gold); }

/* ── Quick Contact Strip (inside right col) */
.contact-quick-strip {
  margin-top: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cqs-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  flex: 1;
  min-width: 140px;
}
.cqs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cqs-btn:hover { transform: translateY(-2px); }
.cqs-call {
  background: linear-gradient(135deg, var(--accent-gold), #e8b840);
  color: var(--dark-green);
  box-shadow: 0 4px 16px rgba(201,150,58,0.35);
}
.cqs-call:hover { box-shadow: 0 8px 24px rgba(201,150,58,0.50); color: var(--dark-green); }
.cqs-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.30);
}
.cqs-whatsapp:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.45); color: #fff; }

/* ── Alert Messages ───────────────────── */
.contact-alert {
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
}
.contact-alert-success {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.35);
  color: #86efac;
}
.contact-alert-error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.30);
  color: #fca5a5;
}
.contact-alert-error a { color: var(--gold-light); }

/* ── Contact responsive ───────────────── */
@media (max-width: 1024px) {
  .contact-info-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .contact-hero { padding: 60px 20px 0; }
  .contact-info-strip { padding: 0 16px 32px; }
  .contact-info-inner {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    transform: translateY(-20px);
  }
  .contact-info-card { padding: 16px 14px; gap: 12px; }
}
@media (max-width: 480px) {
  .contact-info-inner { grid-template-columns: 1fr; }
  .contact-quick-strip { flex-direction: column; align-items: flex-start; }
  .cqs-btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════
   ABOUT PAGE — HERO
═══════════════════════════════════════════ */
.about-hero {
  position: relative;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--mid-green) 60%, #224433 100%);
  padding: 120px 24px 80px;
  text-align: center;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/pexels-29086309.webp') center/cover no-repeat;
  opacity: .08;
}
.about-hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.eyebrow-about {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(201,150,58,.12);
  border: 1px solid rgba(201,150,58,.25);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 20px;
}
.about-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 18px;
}
.about-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.about-hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}
.about-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}
.about-hero-wave svg { display: block; width: 100%; }

/* ═══════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════ */
.stats-strip {
  background: linear-gradient(90deg, var(--dark-green) 0%, #1b3d2b 50%, var(--dark-green) 100%);
  padding: 0 24px;
}
.stats-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 36px;
  gap: 4px;
  flex: 1;
  min-width: 140px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}
.stat-plus {
  font-size: .65em;
  vertical-align: super;
  color: var(--gold-light);
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-align: center;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   ABOUT SECTION — OUR STORY
═══════════════════════════════════════════ */
.about-section {
  /* background: var(--bg-cream); */
   background:linear-gradient(160deg, #060f08 0%, #0f2718 50%, #081a11 100%);
  padding: 88px 24px;
}
.about-section-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-col { position: relative; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: 0px;
  right: -20px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.aib-icon { font-size: 26px; line-height: 1; }
.aib-text {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}
.about-text-col { display: flex; flex-direction: column; gap: 0; }
.about-section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.22;
  margin: 8px 0 20px;
}
.about-section-title em { font-style: italic; color: #fff; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-gold);
}
.about-section-lead {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: #d3d3d3;
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-section-body {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #d3d3d3;
  line-height: 1.75;
  margin-bottom: 26px;
}
.about-highlights { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: #c1c1c1;
  line-height: 1.5;
}
.ahi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 5px;
}
.about-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold), var(--gold-btn));
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  align-self: flex-start;
  letter-spacing: .02em;
  box-shadow: 0 4px 16px rgba(201,150,58,.35);
}
.about-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,150,58,.45);
  color: #fff;
}

/* ═══════════════════════════════════════════
   VISION & MISSION SECTION
═══════════════════════════════════════════ */
.vision-mission-section { background: var(--bg-light); padding: 88px 24px; }
.vm-section-inner { max-width: 1160px; margin: 0 auto; }
.vm-section-header { text-align: center; margin-bottom: 52px; }
.vm-section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 8px 0 14px;
}
.vm-section-title em { font-style: italic; color: var(--mid-green); }
.vm-section-sub {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-body);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.vm-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.vm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.vm-card-vision::before { background: linear-gradient(90deg, var(--accent-gold), var(--gold-btn)); }
.vm-card-mission::before { background: linear-gradient(90deg, var(--dark-green), var(--mid-green)); }
.vm-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.vm-card-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vm-card-vision .vm-card-icon-wrap { background: rgba(201,150,58,.08); }
.vm-card-mission .vm-card-icon-wrap { background: rgba(26,61,43,.08); }
.vm-card-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
}
.vm-card-vision .vm-card-tag { background: rgba(201,150,58,.12); color: #8a6020; }
.vm-card-mission .vm-card-tag { background: rgba(13,43,30,.1); color: var(--mid-green); }
.vm-card-title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0;
}
.vm-card-body { font-family: var(--font-sans); font-size: 14px; color: var(--text-body); line-height: 1.75; margin: 0; }
.vm-card-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vm-card-list li {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-body);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.vm-card-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  border-radius: 50%;
}
.vm-card-vision .vm-card-list li::before { background: var(--accent-gold); }
.vm-card-mission .vm-card-list li::before { background: var(--mid-green); }

/* ═══════════════════════════════════════════
   VALUES SECTION
═══════════════════════════════════════════ */
.values-section { background: #fff; padding: 88px 24px; }
.values-section-inner { max-width: 1160px; margin: 0 auto; }
.values-header { text-align: center; margin-bottom: 52px; }
.values-section-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 8px 0 0;
}
.values-section-title em { font-style: italic; color: var(--mid-green); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--bg-cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-icon { font-size: 32px; margin-bottom: 14px; line-height: 1; }
.value-title { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--text-dark); margin: 0 0 8px; }
.value-desc { font-family: var(--font-sans); font-size: 13.5px; color: var(--text-body); line-height: 1.65; margin: 0; }

/* ═══════════════════════════════════════════
   ABOUT PAGE — BOTTOM CTA
═══════════════════════════════════════════ */
.about-cta-section {
  background: linear-gradient(135deg, var(--dark-green) 0%, #1b4030 50%, var(--mid-green) 100%);
  padding: 80px 24px;
  text-align: center;
}
.about-cta-inner { max-width: 680px; margin: 0 auto; }
.about-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  margin: 8px 0 16px;
  line-height: 1.2;
}
.about-cta-title em { font-style: italic; color: var(--gold-light); }
.about-cta-sub { font-family: var(--font-sans); font-size: 15px; color: rgba(255,255,255,.68); line-height: 1.7; margin-bottom: 32px; }
.about-cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.acta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  letter-spacing: .02em;
}
.acta-gold {
  background: linear-gradient(135deg, var(--accent-gold), var(--gold-btn));
  color: #fff;
  box-shadow: 0 4px 16px rgba(201,150,58,.4);
}
.acta-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,150,58,.5); color: #fff; }
.acta-outline { background: transparent; color: rgba(255,255,255,.88); border: 1.5px solid rgba(255,255,255,.35); }
.acta-outline:hover { background: rgba(255,255,255,.08); color: #fff; transform: translateY(-2px); }

/* ═══════════════════════════════════════════
   ABOUT PAGE — RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-section-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-main { height: 360px; }
  .about-img-badge { right: 16px; bottom: -16px; }
  .vm-cards-row { grid-template-columns: 1fr; gap: 20px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .about-hero { padding: 100px 16px 72px; }
  .stats-strip-inner { flex-wrap: wrap; gap: 0; }
  .stat-item { padding: 20px 16px; min-width: 45%; }
  .stat-divider { display: none; }
  .about-section { padding: 56px 16px; }
  .about-section-inner { gap: 36px; }
  .vm-card { padding: 28px 22px; }
  .values-grid { grid-template-columns: 1fr; }
  .about-cta-section { padding: 60px 16px; }
  .vision-mission-section,
  .values-section { padding: 56px 16px; }
}


