/* ========================================
   EPICURA — Curated Outdoor 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; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

/* ══════════════════════════════════════
   TOP NAV
══════════════════════════════════════ */
.top-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.logo-wrap {
  display: flex; align-items: center;
  background: var(--dark-green);
  padding: 12px 18px; border-radius: 8px; min-width: 180px;
}
.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: 6px; list-style: none; margin: 0; }
.nav-links li a {
  position: relative;
  display: block; padding: 10px 16px;
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-dark);
  transition: color 0.2s;
}
.nav-links li a::after {
  content: ''; position: absolute;
  left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--accent-gold); border-radius: 2px;
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-links li a:hover { color: var(--accent-gold); }
.nav-links li a:hover::after { transform: scaleX(1); }
.nav-links li a.active { color: var(--accent-gold); }
.nav-links li a.active::after { transform: scaleX(1); }
.nav-cta-wrap { display: flex; align-items: center; gap: 22px; }
.nav-phone-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; color: var(--text-dark);
  letter-spacing: 0.3px; transition: color 0.2s;
}
.nav-phone-link svg { color: var(--accent-gold); }
.nav-phone-link:hover { color: var(--accent-gold); }
.nav-book-btn {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, #e8c25a 0%, var(--accent-gold) 55%, #b57e28 100%);
  color: var(--dark-green);
  padding: 13px 26px; border-radius: 8px;
  font-size: 12.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  box-shadow: 0 6px 18px rgba(201,150,58,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-book-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201,150,58,0.5); }
.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)
══════════════════════════════════════ */
/* Lightweight in-page filter bar — secondary to the header, attached to Services */
.cat-bar {
  background: var(--dark-green);
  padding: 0 40px;
  display: flex; align-items: stretch; height: 46px;
  position: sticky; top: 90px; z-index: 990;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.cat-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 17px; cursor: pointer; position: relative;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
/* subtle hairline separators between items — no boxed borders */
.cat-item + .cat-item::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 16px; background: rgba(201,150,58,0.20);
}
.cat-item:hover { background: rgba(255,255,255,0.05); }
/* active = refined gold underline only, same height as the rest */
.cat-item.active::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 32px; height: 2px; background: var(--accent-gold); border-radius: 2px 2px 0 0;
}
.cat-item.active .cat-label { color: var(--accent-gold); }
.cat-icon { width: 28px; height: 28px; object-fit: contain; }
.cat-label { font-size: 10px; font-weight: 700; color: var(--white); letter-spacing: 0.9px; text-transform: uppercase; white-space: nowrap; }

/* ══════════════════════════════════════
   PAGE HERO
══════════════════════════════════════ */
.services-hero {
  background: var(--bg-cream); text-align: center;
  padding: 26px 40px 40px; position: relative; overflow: hidden;
}
.services-hero::before, .services-hero::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 110px;
  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='%23d7ac5822' stroke-width='3' fill='none'/%3E%3C/svg%3E") no-repeat center;
  pointer-events: none; opacity: 0.7;
}
.services-hero::before { left: 0; }
.services-hero::after { right: 0; transform: scaleX(-1); }
/* decorative row — quieter so it no longer dominates the heading */
.hero-icon-row { display: flex; align-items: center; justify-content: center; gap: 9px; margin-bottom: 3px; opacity: 0.85; }
.hero-icon-row img { width: 34px; height: 34px; object-fit: contain; }
.hero-icon-emoji { font-size: 2.5rem; }
.hero-icon-img { width: 56px; height: 56px; object-fit: contain; }
.hero-stars { color: var(--accent-gold); font-size: 11px; letter-spacing: 3px; }
.hero-eyebrow { font-size: 12.5px; font-weight: 600; color: var(--text-muted); letter-spacing: 2.6px; text-transform: uppercase; margin-bottom: 3px; }
.hero-title { font-family: var(--font-serif); font-size: clamp(34px,4.6vw,56px); font-weight: 800; color: var(--text-dark); line-height: 1.05; margin-bottom: 8px; }
.hero-sub { font-size: 15px; line-height: 1.55; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ══════════════════════════════════════
   SERVICE CARDS — unified image+content
══════════════════════════════════════ */
.services-section { padding: 60px 40px 80px; background: var(--bg-cream); }

/* Two-card premium layout */
.svc-two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
}

/* Card shell */
.svc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201,150,58,0.18);
  box-shadow: 0 2px 8px rgba(30,60,50,0.06), 0 12px 40px rgba(30,60,50,0.08);
  transition: transform 0.32s cubic-bezier(.22,.68,0,1.2), box-shadow 0.32s;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(30,60,50,0.08), 0 28px 64px rgba(201,150,58,0.14);
  border-color: rgba(201,150,58,0.4);
}

/* Image */
.svc-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.svc-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.55s ease;
}
.svc-card:hover .svc-card-img-wrap img { transform: scale(1.06); }
.svc-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(6,20,12,0.08) 0%, rgba(6,20,12,0.55) 100%);
}
.svc-card-badge {
  position: absolute; top: 18px; left: 18px;
  background: rgba(201,150,58,0.92);
  color: #0d2b1e;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 5px 13px; border-radius: 50px;
  backdrop-filter: blur(6px);
}

/* Body */
.svc-card-body {
  padding: 28px 30px 30px;
  display: flex; flex-direction: column; flex: 1;
}
.svc-card-accent-bar {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), #e8c96e);
  border-radius: 2px;
  margin-bottom: 16px;
}
.svc-card-title {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 700;
  color: var(--dark-green);
  margin: 0 0 12px; line-height: 1.15;
}
.svc-card-desc {
  font-size: 13.5px; line-height: 1.7;
  color: var(--royal-ink-soft, #4a5c4e);
  margin: 0 0 20px; flex: 1;
}
.svc-card-tags {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin-bottom: 24px;
}
.svc-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 11px; border-radius: 50px;
  background: rgba(201,150,58,0.10);
  border: 1px solid rgba(201,150,58,0.28);
  color: #8a6d2e;
}
.svc-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding: 11px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e8b840 60%, #c9963a 100%);
  color: #0d2b1e;
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.2px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(201,150,58,0.35);
  transition: transform 0.18s, box-shadow 0.18s;
}
.svc-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,150,58,0.5);
  color: #0d2b1e;
}

@media (max-width: 768px) {
  .svc-two-grid { grid-template-columns: 1fr; gap: 24px; }
  .services-section { padding: 40px 20px 60px; }
  .svc-card-title { font-size: 22px; }
  .svc-card-body { padding: 22px 22px 24px; }
}

.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); }

/* ══════════════════════════════════════
   SERVICES — 3-COLUMN ROYAL GRID
   Handcrafted premium cards on cream.
   Visual flow: image → identity → intent
   (title + desc) → proof (why + amenities)
   → action (CTA row). Gold accents anchor
   the eye down to the CTA.
══════════════════════════════════════ */
.services-section {
  background:
    radial-gradient(1200px 520px at 8% 0%,   rgba(201,150,58,0.07), transparent 62%),
    radial-gradient(900px  420px at 100% 40%, rgba(57,86,72,0.06),  transparent 60%),
    radial-gradient(700px  360px at 50% 100%, rgba(215,172,88,0.05), transparent 65%),
    var(--bg-cream);
  padding: 22px 40px clamp(48px, 5.5vw, 80px);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1360px;
  margin: 0 auto;
}

/* ── Unified page grid — every section from Our Services to the footer shares
   the same content boundary (max 1360px content, 40px side gutters). The
   Bootstrap sections use .container-xl (+ .px-4 which is !important), so we
   override with equal responsive gutters to align them to the Services grid. ── */
.about-section .container-xl,
.royal-service-alt-section .container-xl {
  max-width: 1440px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}
@media (max-width: 1024px) {
  .about-section .container-xl,
  .royal-service-alt-section .container-xl { padding-left: 24px !important; padding-right: 24px !important; }
}
@media (max-width: 640px) {
  .about-section .container-xl,
  .royal-service-alt-section .container-xl { padding-left: 14px !important; padding-right: 14px !important; }
}

/* Card shell — ivory-to-cream, gold hairline */
.services-grid .service-card {
  margin: 0;
  border: 1px solid rgba(201,150,58,0.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fdfaf3 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 10px 30px rgba(30,60,50,0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .4s ease, box-shadow .4s ease;
}
/* Soft gold gradient border highlight (top) */
.services-grid .service-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(215,172,88,0.65), rgba(215,172,88,0) 55%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.services-grid .service-card:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 22px 48px rgba(30,60,50,0.14);
  transform: translateY(-4px);
}

/* Layout — vertical flow */
.services-grid .service-card-layout {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.services-grid .service-card-layout.flip { direction: ltr; }
.services-grid .service-card-img-col { display: flex; flex-direction: column; }

/* Image — softer, with a subtle warm veil at the bottom for badge legibility */
.services-grid .service-card-img-wrap {
  height: 170px;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  position: relative;
}
.services-grid .service-card-img-wrap::after {
  content: '';
  position: absolute; inset: auto 0 0 0; height: 55%;
  background: linear-gradient(180deg, rgba(30,60,50,0) 0%, rgba(30,60,50,0.35) 100%);
  pointer-events: none;
}

/* Badge — light glass, gold outline */
.services-grid .service-img-badge {
  bottom: 14px; left: 14px;
  background: rgba(255,253,247,0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,150,58,0.4);
  border-radius: 999px;
  padding: 6px 12px 6px 8px;
  box-shadow: 0 6px 18px rgba(30,60,50,0.14);
}
.services-grid .service-img-badge img { width: 22px; height: 22px; }
.services-grid .service-img-badge span {
  color: var(--dark-green); font-size: 11.5px;
  letter-spacing: 0.8px; text-transform: uppercase;
}

/* Gallery strip — ivory, gold thumbs (interactive) */
.services-grid .service-gallery-strip {
  background: linear-gradient(180deg, #faf5ea 0%, #f3ecda 100%);
  border-top: 1px solid rgba(201,150,58,0.22);
  padding: 6px 14px;
  gap: 7px;
}
.services-grid .service-gallery-thumb {
  width: 46px; height: 34px;
  border: 1.5px solid rgba(201,150,58,0.32);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(30,60,50,0.06);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.services-grid .service-gallery-thumb:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(201,150,58,0.22);
}
.services-grid .service-gallery-thumb.active {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px rgba(201,150,58,0.28), 0 2px 6px rgba(201,150,58,0.2);
}

/* Body */
.services-grid .service-card-body {
  padding: 22px 22px 22px;
  gap: 14px;
  flex: 1;
}

/* Header — icon + title with a hair-thin gold underline */
.services-grid .service-card-header {
  gap: 11px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(201,150,58,0.16);
  position: relative;
}
.services-grid .service-card-header::after {
  content: '';
  position: absolute; left: 0; bottom: -1px;
  width: 46px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--gold-light));
}
.services-grid .service-card-header img { width: 34px; height: 34px; }
.services-grid .service-card-title {
  font-size: 23px;
  line-height: 1.12;
  font-weight: 700;
  color: var(--dark-green);
  letter-spacing: -0.4px;
  margin: 0;
}

.services-grid .service-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-body);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 1px;
}

/* Why box — ivory panel, gold accents */
.services-grid .why-box {
  background: linear-gradient(180deg, #fdfaf1 0%, #f6efdf 100%);
  border: 1px solid rgba(201,150,58,0.25);
  border-radius: 12px;
}
.services-grid .why-box-header { padding: 11px 14px; }
.services-grid .why-box-title {
  font-size: 11px; color: var(--dark-green);
  letter-spacing: 1.6px;
}
.services-grid .why-grid {
  grid-template-columns: 1fr;
  gap: 6px 12px;
  padding: 4px 14px 10px;
}
.services-grid .why-item { font-size: 12.5px; line-height: 1.4; color: var(--text-body); }
.services-grid .why-item svg { width: 14px; height: 14px; }
.services-grid .why-read-more-btn {
  margin: 0 14px 12px; padding: 6px 10px; font-size: 10.5px;
}

/* Amenities — ivory chips, quiet by design so eye moves to CTA */
.services-grid .amenities-strip {
  padding: 14px 0 4px;
  border-top: 1px dashed rgba(201,150,58,0.28);
}
.services-grid .amenities-title {
  font-size: 10px; padding: 0 4px;
  color: var(--dark-green); letter-spacing: 1.6px;
}
.services-grid .amenity-item {
  width: 70px; padding: 8px 4px;
  border: 1px solid rgba(201,150,58,0.22);
  background: #fffdf7;
  border-radius: 10px;
}
.services-grid .amenity-item:hover {
  border-color: var(--accent-gold);
  background: #fffaea;
}
.services-grid .amenity-icon { width: 32px; height: 32px; }
.services-grid .amenity-icon svg { width: 28px; height: 28px; }
.services-grid .amenity-item span { font-size:11px; color: var(--text-muted); }

/* CTA row — the visual terminus. Slight pedestal + top accent line */
.services-grid .royal-cta-row {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding: 14px 0 2px;
  position: relative;
}
.services-grid .royal-cta-row::before {
  content: '';
  position: absolute; left: 50%; top: 0;
  transform: translateX(-50%);
  width: 40%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,150,58,0.5), transparent);
}
.services-grid .royal-cta-btn {
  padding: 11px 8px;
  gap: 6px;
  border-radius: 12px;
}
.services-grid .royal-cta-icon-wrap { width: 30px; height: 30px; }
.services-grid .royal-cta-icon-wrap svg { width: 14px; height: 14px; }
.services-grid .royal-cta-label { font-size: 10.5px; letter-spacing: 0.4px; }
.services-grid .royal-cta-sub { font-size: 8.5px; opacity: 0.75; }

/* ── Light royal CTA repaint (scoped to grid cards) ─────
   Enquiry  → ivory + gold, deep-green ink
   WhatsApp → mint-cream + emerald ink
   Call     → warm gold gradient, deep-green ink
   All three sit on a light card, no dark fills.       */
/* Enquiry — solid gold (matches Explore button) */
.services-grid .royal-cta-enquiry {
  background: linear-gradient(135deg, #c9963a 0%, #e0b84a 50%, #c9963a 100%);
  border: 1.5px solid rgba(201,150,58,0.5);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 4px 14px rgba(201,150,58,0.35);
  color: var(--dark-green);
}
.services-grid .royal-cta-enquiry .royal-cta-icon-wrap {
  background: rgba(13,43,30,0.12);
  border: 1px solid rgba(13,43,30,0.18);
  color: var(--dark-green);
}
.services-grid .royal-cta-enquiry:hover {
  background: linear-gradient(135deg, #b8820a 0%, #d4a017 50%, #c9963a 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 8px 22px rgba(201,150,58,0.5),
    0 0 0 2px rgba(201,150,58,0.4);
  color: var(--dark-green);
}
.services-grid .royal-cta-enquiry .royal-cta-sub { color: var(--dark-green); opacity: 0.7; }

/* WhatsApp — light cream/gold (matches Call Now) */
.services-grid .royal-cta-whatsapp {
  background: linear-gradient(180deg, #fffdf6 0%, #f7efd9 100%);
  border: 1.5px solid rgba(201,150,58,0.4);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 4px 14px rgba(201,150,58,0.18);
  color: var(--dark-green);
}
.services-grid .royal-cta-whatsapp .royal-cta-icon-wrap {
  background: linear-gradient(135deg, #f4e4b8, #e6c876);
  border: 1px solid rgba(201,150,58,0.5);
  color: var(--dark-green);
}
.services-grid .royal-cta-whatsapp .royal-cta-icon-wrap svg { width: 18px; height: 18px; }
.services-grid .royal-cta-whatsapp:hover {
  background: linear-gradient(180deg, #fffbe8 0%, #f2e6c4 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 8px 22px rgba(201,150,58,0.3),
    0 0 0 2px rgba(201,150,58,0.28);
  color: var(--dark-green);
}
.services-grid .royal-cta-whatsapp .royal-cta-sub { color: var(--dark-green); opacity: 0.7; }

/* Call — light cream/gold */
.services-grid .royal-cta-call {
  background: linear-gradient(180deg, #fffdf6 0%, #f7efd9 100%);
  border: 1.5px solid rgba(201,150,58,0.4);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 4px 14px rgba(201,150,58,0.18);
  color: var(--dark-green);
}
.services-grid .royal-cta-call .royal-cta-icon-wrap {
  background: linear-gradient(135deg, #f4e4b8, #e6c876);
  border: 1px solid rgba(201,150,58,0.5);
  color: var(--dark-green);
}
.services-grid .royal-cta-call:hover {
  background: linear-gradient(180deg, #fffbe8 0%, #f2e6c4 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 10px 26px rgba(201,150,58,0.3),
    0 0 0 2px rgba(201,150,58,0.28);
  color: var(--dark-green);
}
.services-grid .royal-cta-call .royal-cta-sub { color: rgba(13,43,30,0.72); opacity: 1; }


/* ══════════════════════════════════════
   SERVICES — PREMIUM CARD INTERNALS (v2)
   Flow: image → identity → trust → story
   → feature slider → expandable depth
   (why / highlights / FAQs) → chips → CTA
══════════════════════════════════════ */
.services-grid .service-card-body { gap: 7px; padding: 14px 18px 13px; }

/* Identity — eyebrow above the title */
.services-grid .service-card-header { align-items: center; }
.svc-head-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.svc-eyebrow {
  font-size: 9.5px; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--accent-gold);
}

/* Premium trust line — light, dot-marked, minimal height */
.svc-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 14px; margin-top: -3px; }
.svc-trust-item {
  display: inline-flex; align-items: center;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.2px;
  color: var(--mid-green);
}
.svc-trust-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-gold); margin-right: 7px; }

/* ── Premium feature slider — the card's key engagement element.
   Arrows dock on the sides; pagination dots dock INTO the bottom
   border (≈50% in / 50% out) so the whole thing reads as one unit. ── */
.svc-slider-wrap { position: relative; margin: 0; padding-bottom: 8px; }
.svc-slider {
  position: relative;
  border: 1px solid rgba(201,150,58,0.22);
  border-radius: 14px;
  /* soft ivory/gold tint — distinct from the white card, never heavy */
  background: linear-gradient(180deg, #fcf6e7 0%, #f6ecd6 100%);
  padding: 2px 0 5px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75), 0 1px 2px rgba(30,60,50,0.04);
}
.svc-slider-viewport {
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  margin: 0 6px;
}
.svc-slider-viewport::-webkit-scrollbar { display: none; }
.svc-slider-track { display: flex; gap: 10px; padding: 2px 6px; }
.svc-feature {
  flex: 0 0 auto; width: 78px; scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center;
  background: transparent; border: none; border-radius: 11px;
  padding: 2px 4px;
  transition: background .2s;
}
.svc-feature:hover { background: rgba(201,150,58,0.06); }
/* Icons carry the scan — larger & richer than labels */
.svc-feature-ico {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 34% 28%, #ffffff, #f0e3c2);
  border: 1px solid rgba(201,150,58,0.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.svc-feature:hover .svc-feature-ico { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(201,150,58,0.22); }
.svc-feature-ico svg { width: 26px; height: 26px; }
.svc-feature-lbl { font-size: 10px; line-height: 1.25; font-weight: 600; color: var(--text-muted); letter-spacing: 0.1px; }
/* Subtle active state on the focused item */
.svc-feature.active .svc-feature-ico {
  border-color: var(--accent-gold);
  background: radial-gradient(circle at 34% 28%, #fff7e0, #f0dfb0);
  box-shadow: 0 4px 12px rgba(201,150,58,0.28), inset 0 1px 0 rgba(255,255,255,0.8);
}
.svc-feature.active .svc-feature-lbl { color: var(--dark-green); font-weight: 700; }

/* Dots — docked into the bottom border as a floating pill (≈50% in / 50% out).
   The pill's ivory fill covers the border line so it appears to wrap around. */
.svc-slider-dots {
  position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 50%);
  z-index: 5;
  display: flex; align-items: center; gap: 5px;
  padding: 5px 11px;
  background: linear-gradient(180deg, #fffdf8, #f7efdb);
  border: 1px solid rgba(201,150,58,0.28);
  border-radius: 999px;
  box-shadow: 0 3px 7px rgba(30,60,50,0.12), inset 0 1px 0 rgba(255,255,255,0.85);
}
.svc-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(201,150,58,0.32); border: none; padding: 0; cursor: pointer; transition: width .25s, background .25s; }
.svc-dot.active { width: 16px; border-radius: 3px; background: var(--accent-gold); }

/* ── Why Choose Us — centered heading + per-row expandable list ── */
.svc-why-heading {
  text-align: center; margin: 0 0 1px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.7px;
  text-transform: uppercase; color: var(--accent-gold);
}
.svc-why-box {
  border: 1px solid rgba(201,150,58,0.22);
  border-radius: 12px;
  background: linear-gradient(180deg, #fdfaf2 0%, #f9f2e4 100%);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75), 0 1px 2px rgba(30,60,50,0.04);
}
.svc-why-item + .svc-why-item { border-top: 1px solid rgba(201,150,58,0.16); }
.svc-why-q {
  width: 100%; display: flex; align-items: center; gap: 10px;
  padding: 7px 13px; background: transparent; text-align: left; cursor: pointer;
  transition: background .2s;
}
.svc-why-q:hover { background: rgba(201,150,58,0.05); }
.svc-why-item.open .svc-why-q { background: rgba(201,150,58,0.06); }
.svc-why-ico { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent-gold); display: flex; align-items: center; justify-content: center; }
.svc-why-ico svg { width: 17px; height: 17px; }
.svc-why-label { flex: 1; font-size: 12px; font-weight: 600; color: var(--dark-green); line-height: 1.3; letter-spacing: 0.1px; }
.svc-why-chev { width: 14px; height: 14px; flex-shrink: 0; color: rgba(201,150,58,0.7); stroke-width: 2; transition: transform .3s ease; }
.svc-why-item.open .svc-why-chev { transform: rotate(180deg); color: var(--accent-gold); }
.svc-why-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; }
.svc-why-item.open .svc-why-a { grid-template-rows: 1fr; }
.svc-why-a > div { overflow: hidden; }
.svc-why-a p { font-size: 11.5px; line-height: 1.6; color: var(--text-muted); padding: 0 13px 10px 43px; margin: 0; }

/* ── One seamless detail panel (Why / Highlights / FAQs) ──
   A single bordered container; groups divided by hairlines,
   not separate stacked boxes. Reads as one brochure page.  */
.svc-panel {
  border: 1px solid rgba(201,150,58,0.28);
  border-radius: 12px;
  background: linear-gradient(180deg, #fdfaf1, #f8f1e2);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.svc-acc { background: transparent; }
.svc-panel .svc-acc + .svc-acc { border-top: 1px solid rgba(201,150,58,0.2); }
.svc-acc-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 15px; background: transparent; text-align: left; cursor: pointer;
  transition: background .2s;
}
.svc-acc-head:hover { background: rgba(201,150,58,0.05); }
.svc-acc.open .svc-acc-head { background: rgba(201,150,58,0.06); }
.svc-acc-title { font-size: 11px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; color: var(--dark-green); }
.svc-acc-chev { width: 16px; height: 16px; color: var(--accent-gold); flex-shrink: 0; transition: transform .3s; }
.svc-acc.open .svc-acc-chev { transform: rotate(180deg); }
.svc-acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.svc-acc.open .svc-acc-body { grid-template-rows: 1fr; }
.svc-acc-inner { overflow: hidden; }

/* Reasons — check list */
.svc-reasons { list-style: none; margin: 0; padding: 3px 15px 14px; display: grid; gap: 9px; }
.svc-reasons li { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; line-height: 1.4; color: var(--text-body); }
.svc-reasons li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; }

/* Highlights — gold star markers */
.svc-hl { list-style: none; margin: 0; padding: 3px 15px 14px; display: grid; gap: 9px; }
.svc-hl li { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; line-height: 1.4; color: var(--text-body); }
.svc-hl li::before { content: '✦'; color: var(--accent-gold); font-size: 12px; line-height: 1.3; }

/* FAQs — borderless rows with hairline dividers (no box-in-box) */
.svc-faqs { padding: 0 15px 8px; display: flex; flex-direction: column; }
.svc-faq { border-top: 1px solid rgba(201,150,58,0.18); }
.svc-faq:first-child { border-top: none; }
.svc-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 10px 0 9px; font-size: 12px; font-weight: 600; color: var(--dark-green); text-align: left; background: transparent; cursor: pointer; }
.svc-faq-q svg { width: 13px; height: 13px; color: var(--accent-gold); flex-shrink: 0; transition: transform .3s; }
.svc-faq.open .svc-faq-q svg { transform: rotate(180deg); }
.svc-faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.svc-faq.open .svc-faq-a { grid-template-rows: 1fr; }
.svc-faq-a > div { overflow: hidden; }
.svc-faq-a p { font-size: 11.5px; line-height: 1.6; color: var(--text-muted); padding: 0 0 10px; margin: 0; }

/* Best-suited-for chips */
.svc-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.svc-tags-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-right: 2px; }
.svc-chip { font-size: 11px; font-weight: 500; color: var(--mid-green); background: #f3ecdb; border: 1px solid rgba(201,150,58,0.25); border-radius: 999px; padding: 4px 11px; }

/* ── CTA — content-first, action last ── */
.svc-cta { margin-top: auto; display: flex; flex-direction: column; gap: 6px; padding-top: 8px; position: relative; }
.svc-cta::before {
  content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 46%; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,150,58,0.45), transparent);
}
.svc-explore {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 10px 18px; border-radius: 12px;
  background: linear-gradient(135deg, #e8c25a 0%, var(--accent-gold) 55%, #bd882c 100%);
  color: var(--dark-green); font-size: 12.5px; font-weight: 800; letter-spacing: 0.7px; text-transform: uppercase;
  box-shadow: 0 5px 14px rgba(201,150,58,0.28), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform .2s, box-shadow .2s;
}
.svc-explore:hover { transform: translateY(-2px); box-shadow: 0 9px 22px rgba(201,150,58,0.42), inset 0 1px 0 rgba(255,255,255,0.4); color: var(--dark-green); }
.svc-explore svg { width: 16px; height: 16px; }
/* Secondary actions — quieter than the primary CTA */
.svc-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.svc-contact-btn { display: flex; align-items: center; gap: 9px; padding: 8px 11px; border-radius: 11px; border: 1px solid transparent; transition: transform .18s, box-shadow .18s, background .18s; }
.svc-contact-btn:hover { transform: translateY(-2px); }
.svc-contact-ico { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-contact-ico svg { width: 16px; height: 16px; }
.svc-contact-txt { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.svc-contact-txt strong { font-size: 11px; font-weight: 700; letter-spacing: 0.2px; }
.svc-contact-txt span { font-size: 9.5px; opacity: 0.8; }
.svc-wa { background: linear-gradient(180deg, #f6fbf6, #eaf5ea); border-color: rgba(37,168,102,0.32); color: #14663a; }
.svc-wa .svc-contact-ico { background: linear-gradient(135deg, #c8ecd0, #9fddb0); }
.svc-wa:hover { background: linear-gradient(180deg, #f1f9f1, #e0f1e0); box-shadow: 0 6px 16px rgba(37,168,102,0.2); }
.svc-call { background: linear-gradient(180deg, #fffdf7, #f8f1de); border-color: rgba(201,150,58,0.34); color: var(--dark-green); }
.svc-call .svc-contact-ico { background: linear-gradient(135deg, #f4e4b8, #e6c876); color: var(--dark-green); }
.svc-call:hover { background: linear-gradient(180deg, #fffbef, #f4ead2); box-shadow: 0 6px 16px rgba(201,150,58,0.24); }

/* ══════════════════════════════════════
   6th CARD — CUSTOM CATERING (premium catch-all)
   Uses the exact same card template as the others;
   only a whisper of warm gold marks it as the
   "any event" card so the grid still feels unified.
══════════════════════════════════════ */
.services-grid .service-card.svc-catchall {
  border-color: rgba(201,150,58,0.42);
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(201,150,58,0.07), transparent 55%),
    linear-gradient(180deg, #fffdf6 0%, #fdf6e7 100%);
}
.svc-catchall::before { background: linear-gradient(180deg, rgba(215,172,88,0.85), rgba(215,172,88,0) 58%); }

/* Tablet: 2 columns */
@media (max-width: 1180px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-section { padding: 20px 24px 64px; }
}
/* Mobile: 1 column */
@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .services-section { padding: 14px 14px 48px; }
  .services-grid .service-card-img-wrap { height: 210px; }
  .services-grid .service-card-body { padding: 20px 18px; }
  .services-grid .service-card-title { font-size: 20px; }
  .services-grid .royal-cta-label { font-size: 11px; }
}

/* ══════════════════════════════════════
   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
══════════════════════════════════════ */
/* ══════════════════════════════════════
   CLIENT TESTIMONIALS — luxury rebuild
══════════════════════════════════════ */
.testimonials {
  position: relative;
  text-align: center;
  padding: 46px 40px 42px;
  background:
    radial-gradient(900px 460px at 50% -6%, rgba(201,150,58,0.10), transparent 60%),
    radial-gradient(760px 420px at 100% 100%, rgba(57,86,72,0.06), transparent 60%),
    var(--bg-cream);
  overflow: hidden;
}
/* soft corner flourishes */
.testimonials::before, .testimonials::after {
  content: ''; position: absolute; top: 60px; width: 150px; height: 260px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='240' viewBox='0 0 120 240'%3E%3Cg fill='none' stroke='%23c9963a' stroke-width='2' opacity='0.5'%3E%3Cpath d='M30 10 Q70 60 30 120 Q70 180 30 230'/%3E%3Cpath d='M30 40 Q55 55 78 46M30 90 Q55 105 78 96M30 140 Q55 155 78 146'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0.35; pointer-events: none;
}
.testimonials::before { left: 8px; }
.testimonials::after  { right: 8px; transform: scaleX(-1); }

/* ── Heading ── */
.tst-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent-gold); margin-bottom: 9px;
}
.tst-eyebrow svg { width: 18px; height: 18px; }
.tst-eyebrow-dash { width: 26px; height: 1px; background: linear-gradient(90deg, transparent, var(--accent-gold)); }
.tst-eyebrow-dash:last-child { background: linear-gradient(90deg, var(--accent-gold), transparent); }
.tst-title {
  display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap;
  font-family: var(--font-serif); font-size: clamp(30px, 3.8vw, 46px); font-weight: 800;
  color: var(--dark-green); line-height: 1.08; letter-spacing: -0.5px; margin: 0 auto 8px;
  max-width: 1160px;
}
.tst-title em { font-style: normal; color: var(--accent-gold); }
.tst-flourish { position: relative; width: 58px; height: 1px; flex-shrink: 0; background: linear-gradient(90deg, transparent, rgba(201,150,58,0.8)); }
.tst-flourish-r { background: linear-gradient(90deg, rgba(201,150,58,0.8), transparent); }
.tst-flourish::after {
  content: ''; position: absolute; top: -3px; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-gold); box-shadow: 0 0 8px rgba(201,150,58,0.5);
}
.tst-flourish-l::after { right: -3px; }
.tst-flourish-r::after { left: -3px; }
.tst-sub {
  font-size: 15px; line-height: 1.55; color: var(--text-muted);
  max-width: 560px; margin: 0 auto 20px;
}

/* ── Premium trust panel ── */
.trust-panel {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 280px 1px 1fr;
  align-items: center; gap: 0 36px;
  max-width: 1360px; margin: 0 auto 18px; text-align: left;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf7 100%);
  border: 1px solid rgba(201,150,58,0.28);
  border-radius: 20px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 18px 44px rgba(30,60,50,0.09);
  padding: 22px 34px;
}
.trust-rating {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 2px 8px;
}
.trust-laurel { position: absolute; top: 46%; font-size: 52px; opacity: 0.20; filter: grayscale(0.2) sepia(0.4) saturate(2) hue-rotate(5deg); z-index: 0; pointer-events: none; }
.trust-laurel-l { left: -4px; transform: translateY(-50%) rotate(-12deg); }
.trust-laurel-r { right: -4px; transform: translateY(-50%) scaleX(-1) rotate(-12deg); }
.trust-stars { display: flex; gap: 4px; position: relative; z-index: 1; }
.trust-stars svg { width: 21px; height: 21px; filter: drop-shadow(0 2px 4px rgba(201,150,58,0.25)); }
.trust-score {
  font-family: var(--font-serif); font-size: 58px; font-weight: 800; line-height: 0.95;
  color: var(--accent-gold); position: relative; z-index: 1;
  text-shadow: 0 6px 20px rgba(201,150,58,0.22);
}
.trust-outof { font-size: 11.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dark-green); }
.trust-based { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.trust-verified {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 6px;
  font-size: 11.5px; font-weight: 700; color: #2563eb;
  background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.25);
  border-radius: 999px; padding: 5px 13px;
}
.trust-verified svg { width: 14px; height: 14px; }
.trust-divider { width: 1px; height: 82%; background: linear-gradient(180deg, transparent, rgba(201,150,58,0.4), transparent); }
.trust-platforms { padding: 2px 0; }
.trust-platforms-title {
  font-family: var(--font-sans); font-size: 13px; font-weight: 800; letter-spacing: 1.3px;
  text-transform: uppercase; color: var(--dark-green); margin: 0 0 11px;
}
.rating-bar-row { display: flex; align-items: center; gap: 14px; margin-bottom: 9px; }
.rating-bar-row:last-child { margin-bottom: 0; }
.rating-bar-platform { display: flex; align-items: center; gap: 9px; min-width: 168px; }
.rating-bar-platform svg { width: 20px; height: 20px; flex-shrink: 0; }
.rating-bar-platform span { font-size: 13px; font-weight: 600; color: var(--text-body); }
.rating-bar-track { flex: 1; height: 8px; background: #eee7d6; border-radius: 5px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: linear-gradient(90deg, #34d058, #16a34a); border-radius: 5px; transition: width 1s ease; }
.rating-bar-score { display: flex; align-items: center; gap: 5px; min-width: 46px; justify-content: flex-end; }
.rating-bar-score svg { width: 14px; height: 14px; }
.rating-bar-score span { font-size: 13.5px; font-weight: 800; color: var(--dark-green); }

/* ── Reviews carousel — 3 up, edge arrows ── */
.reviews-shell { position: relative; z-index: 1; max-width: 1360px; margin: 0 auto; padding: 0 56px; }
.reviews-row { position: relative; }
.reviews-viewport { overflow: hidden; padding: 6px 2px; touch-action: pan-y; cursor: grab; }
.reviews-viewport.is-dragging { cursor: grabbing; }
/* equal-height cards, aligned tops & bottoms */
.reviews-track { display: flex; align-items: stretch; gap: 24px; transition: transform 0.36s cubic-bezier(.4,0,.2,1); will-change: transform; }
.reviews-track.no-anim { transition: none; }

/* ── Edge navigation arrows — subtle, premium, aligned with cards ── */
.reviews-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #fdf8ec);
  border: 1.5px solid rgba(201,150,58,0.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 6px 20px rgba(30,60,50,0.16);
  transition: background 0.25s, border-color 0.25s, transform 0.25s, opacity 0.25s;
}
.reviews-arrow:hover { background: var(--accent-gold); border-color: var(--accent-gold); transform: translateY(-50%) scale(1.08); }
.reviews-arrow:hover svg { stroke: #fff; }
.reviews-arrow:disabled { opacity: 0.28; cursor: default; box-shadow: none; }
.reviews-arrow svg { width: 22px; height: 22px; stroke: var(--dark-green); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.reviews-arrow-prev { left: 0; }
.reviews-arrow-next { right: 0; }

/* ── Draggable gold progress scrollbar ── */
.reviews-scrollbar {
  position: relative; width: 200px; height: 5px; margin: 18px auto 0;
  background: rgba(201,150,58,0.18); border-radius: 999px; cursor: pointer;
  touch-action: none;
}
.reviews-scrollbar-thumb {
  position: absolute; top: -2px; left: 0; height: 9px; width: 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e8c25a, var(--accent-gold) 55%, #b57e28);
  box-shadow: 0 2px 6px rgba(201,150,58,0.4);
  cursor: grab; transition: left 0.36s cubic-bezier(.4,0,.2,1), width 0.25s;
}
.reviews-scrollbar-thumb.no-anim { transition: none; }
.reviews-scrollbar-thumb:active { cursor: grabbing; }

.reviews-dots { display: flex; justify-content: center; align-items: center; gap: 7px; margin-top: 12px; }
.reviews-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(201,150,58,0.3); border: none; padding: 0; cursor: pointer;
  transition: width 0.25s, background 0.25s;
}
.reviews-dot.active { width: 24px; border-radius: 4px; background: var(--accent-gold); }

.reviews-viewall { text-align: center; margin-top: 14px; }
.reviews-viewall-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 32px; border-radius: 999px;
  background: transparent; border: 1.5px solid var(--accent-gold);
  color: var(--accent-gold); font-size: 12.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.6px; cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.reviews-viewall-btn:hover {
  background: linear-gradient(135deg, #e8c25a, var(--accent-gold) 60%, #b57e28);
  color: var(--dark-green); box-shadow: 0 10px 26px rgba(201,150,58,0.35); transform: translateY(-2px);
  border-color: transparent;
}
.reviews-viewall-btn svg { width: 15px; height: 15px; }

/* ── Individual review card ── */
.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
  border: 1px solid rgba(201,150,58,0.22);
  border-radius: 18px; padding: 14px 16px 14px; text-align: left;
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 12px 30px rgba(30,60,50,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 22px 46px rgba(30,60,50,0.13); }
.review-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 9px; }
.review-user { display: flex; align-items: center; gap: 11px; }
.reviewer-avatar-placeholder {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 800; letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(30,60,50,0.2), inset 0 0 0 2px rgba(255,255,255,0.25);
}
.review-user-info { display: flex; flex-direction: column; gap: 2px; }
/* name = strongest element */
.reviewer-name { font-size: 15px; font-weight: 800; color: var(--dark-green); display: flex; align-items: center; gap: 5px; letter-spacing: -0.1px; }
.reviewer-name svg { width: 14px; height: 14px; }
/* timestamp / platform = quiet secondary metadata */
.reviewer-meta { font-size: 10.5px; color: var(--text-muted); opacity: 0.85; display: flex; align-items: center; gap: 5px; }
.reviewer-meta svg { width: 12px; height: 12px; }
.review-right { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.review-stars-row { display: flex; gap: 2px; }
.review-stars-row svg { width: 14px; height: 14px; }
.review-rating-label { font-size: 10px; font-weight: 700; color: var(--text-muted); opacity: 0.85; }
/* booked service = second priority */
.review-booked {
  font-size: 12px; font-weight: 600; color: var(--text-body); margin-bottom: 8px;
  padding-bottom: 8px; border-bottom: 1px dashed rgba(201,150,58,0.28);
}
.review-booked a { color: var(--accent-gold); font-weight: 700; }
/* review text clamped to a uniform 3 lines so every card is identical height */
.review-text {
  font-size: 12.5px; color: var(--text-body); line-height: 1.55; margin-bottom: 12px;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden;
  min-height: calc(1.55em * 3);
}
.review-card.expanded .review-text { -webkit-line-clamp: unset; overflow: visible; min-height: 0; }
.review-read-more { display: inline-block; margin: -4px 0 12px; color: var(--accent-gold); font-size: 12px; font-weight: 700; white-space: nowrap; }
.review-text-extra { display: none; }
.review-card.expanded .review-text-extra { display: inline; }
.review-photos { display: flex; gap: 8px; margin-top: auto; }
.review-photo {
  flex: 1 1 0; min-width: 0; height: 58px; border-radius: 9px; object-fit: cover;
  border: 1px solid rgba(201,150,58,0.25);
  box-shadow: 0 2px 8px rgba(30,60,50,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-photo:hover { transform: scale(1.05); box-shadow: 0 6px 16px rgba(30,60,50,0.18); }

/* ── Bottom trust stats strip ── */
.reviews-stats {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 8px 2px; max-width: 1360px; margin: 20px auto 0;
  background: linear-gradient(180deg, #ffffff, #fffdf7);
  border: 1px solid rgba(201,150,58,0.28);
  border-radius: 18px; padding: 11px 24px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 16px 38px rgba(30,60,50,0.08);
}
.rvst-item { display: flex; align-items: center; gap: 9px; flex: 1 1 auto; justify-content: center; padding: 3px 6px; }
.rvst-ico {
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-gold);
  background: linear-gradient(135deg, rgba(201,150,58,0.14), rgba(201,150,58,0.05));
  border: 1px solid rgba(201,150,58,0.28);
}
.rvst-ico svg { width: 17px; height: 17px; }
.rvst-text { display: flex; flex-direction: column; line-height: 1.12; }
.rvst-num { font-family: var(--font-serif); font-size: 18px; font-weight: 800; color: var(--dark-green); }
.rvst-lbl { font-size: 10px; color: var(--text-muted); font-weight: 500; }
.rvst-sep { width: 1px; height: 28px; background: linear-gradient(180deg, transparent, rgba(201,150,58,0.35), transparent); }
.rvst-cta {
  display: inline-flex; align-items: center; gap: 10px; margin-left: 6px;
  padding: 11px 22px; border-radius: 12px;
  background: linear-gradient(135deg, #e8c25a 0%, var(--accent-gold) 55%, #b57e28 100%);
  color: var(--dark-green); box-shadow: 0 8px 22px rgba(201,150,58,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.rvst-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,150,58,0.5); }
.rvst-cta svg { width: 19px; height: 19px; }
.rvst-cta-text { display: flex; flex-direction: column; line-height: 1.1; }
.rvst-cta-text strong { font-size: 12.5px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; }
.rvst-cta-text span { font-size: 9.5px; font-weight: 600; opacity: 0.8; }

/* ══════════════════════════════════════
   EXPERIENCE GALLERY — premium showcase
══════════════════════════════════════ */
.exp-section {
  background:
    radial-gradient(1000px 460px at 50% 0%, rgba(201,150,58,0.06), transparent 60%),
    var(--bg-cream);
  padding: clamp(48px, 5.5vw, 80px) 40px;
}
.exp-inner { max-width: 1360px; margin: 0 auto; }

/* Heading */
.exp-head { text-align: center; margin-bottom: clamp(26px, 3.4vw, 44px); }
.exp-ornament { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 10px; }
.exp-orn-line { width: 46px; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,150,58,0.8)); }
.exp-orn-line:last-child { background: linear-gradient(90deg, rgba(201,150,58,0.8), transparent); }
.exp-orn-mark { color: var(--accent-gold); font-size: 13px; }
.exp-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2.6px; text-transform: uppercase; color: var(--accent-gold); margin-bottom: 8px; }
.exp-heading {
  font-family: var(--font-serif); font-size: clamp(28px, 3.4vw, 44px); font-weight: 800;
  color: var(--dark-green); line-height: 1.1; letter-spacing: -0.4px; margin: 0 0 10px;
}
.exp-heading em { font-style: normal; color: var(--accent-gold); }
.exp-sub { font-size: clamp(14px, 1.35vw, 16px); line-height: 1.55; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Grid — 6 across, responsive */
.exp-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }

/* Card */
.exp-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(201,150,58,0.18);
  border-radius: 22px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 12px 30px rgba(30,60,50,0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.exp-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 24px 50px rgba(30,60,50,0.16);
}

/* Image — the main focus (~75% of card height) */
.exp-img { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.exp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.2,.7,.2,1); }
.exp-card:hover .exp-img img { transform: scale(1.07); }
.exp-img::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 45%;
  background: linear-gradient(180deg, transparent, rgba(6,15,8,0.4));
  pointer-events: none;
}
.exp-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(255,253,247,0.94); backdrop-filter: blur(8px);
  border: 1px solid rgba(201,150,58,0.4); border-radius: 999px;
  padding: 5px 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--dark-green);
  box-shadow: 0 4px 12px rgba(30,60,50,0.14);
}
.exp-hover {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; justify-content: center; padding: 14px 12px 15px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.exp-card:hover .exp-hover { opacity: 1; transform: translateY(0); }
.exp-hover span { display: inline-flex; align-items: center; gap: 6px; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.4px; }
.exp-hover svg { width: 14px; height: 14px; }

/* Body */
.exp-body { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; padding: 14px 15px 16px; }
.exp-icon {
  width: 30px; height: 30px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-gold);
  background: linear-gradient(135deg, rgba(201,150,58,0.14), rgba(201,150,58,0.05));
  border: 1px solid rgba(201,150,58,0.25);
  margin-bottom: 3px;
}
.exp-icon svg { width: 18px; height: 18px; }
.exp-title { font-family: var(--font-serif); font-size: 16px; font-weight: 700; color: var(--dark-green); line-height: 1.15; margin: 0; letter-spacing: -0.2px; }
.exp-benefit { font-size: 12px; line-height: 1.45; color: var(--text-muted); margin: 0; }

/* Responsive */
@media (max-width: 1200px) { .exp-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (max-width: 1024px) { .exp-section { padding: clamp(40px, 5vw, 64px) 24px; } }
@media (max-width: 640px)  {
  .exp-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .exp-section { padding: 44px 14px; }
  .exp-title { font-size: 15px; }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: #081a11; color: rgba(255,255,255,0.7); padding: clamp(40px, 4.5vw, 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);
  max-width: 1360px; margin: 0 auto;
}
.footer-brand .logo-wrap { margin-bottom: 16px; }
.footer-brand img{width: 150px;}
.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;     padding-left: 0;}
.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);
  max-width: 1360px; margin: 0 auto;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-bottom.footer-bdr{    border-bottom: 1px solid rgba(255, 255, 255, 0.08);}

/* ══════════════════════════════════════
   FLOATING CTA
══════════════════════════════════════ */
.float-cta { display: none; 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); }
}

/* Floating mobile CTA buttons (WhatsApp + Call) */
.float-cta-mobile {
  display: flex;
  position: fixed;
  right: 16px;
  bottom: 45px;
  z-index: 998;
  flex-direction: column;
  gap: 12px;
}
.float-cta-btn {
  position: relative;
  width: 54px; height: 54px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28), 0 0 0 4px rgba(255,255,255,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.float-cta-btn:hover,
.float-cta-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.35), 0 0 0 4px rgba(255,255,255,0.12);
}
.float-cta-wa {
  background: linear-gradient(180deg, #25d366 0%, #128c7e 100%);
}
.float-cta-call {
  background: linear-gradient(180deg, #e8c25a 0%, var(--accent-gold) 50%, #b57e28 100%);
  color: var(--dark-green);
}
.float-cta-call svg { stroke: var(--dark-green); }
.float-cta-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.35;
  z-index: -1;
  animation: floatCtaPulse 2.2s ease-out infinite;
}
@keyframes floatCtaPulse {
  0%   { transform: scale(0.9); opacity: 0.5; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ══════════════════════════════════════
   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: auto; -webkit-overflow-scrolling: touch; }
.slide-panel-img {
  width: 100%; height: 180px; object-fit: cover;
  border-radius: 12px; margin-bottom: 22px;
}
.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; top: 60px; left: 0; right: 0; bottom: 0;
  z-index: 999; background: rgba(5,18,12,0.72); backdrop-filter: blur(6px);
}
.mobile-nav-overlay.open { display: flex; justify-content: flex-end; }

@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: none; opacity: 1; } }

.mobile-nav-drawer {
  width: min(300px,88vw); height: 100%; display: flex; flex-direction: column;
  background: linear-gradient(170deg, #0f2d1f 0%, #0a2016 55%, #081a12 100%);
  border-left: 1px solid rgba(201,150,58,0.3);
  box-shadow: -16px 0 48px rgba(0,0,0,0.55);
  overflow-y: auto; overflow-x: hidden;
  animation: slideIn 0.28s cubic-bezier(.22,.68,0,1.2);
  scrollbar-width: thin; scrollbar-color: rgba(201,150,58,0.25) transparent;
}
.mobile-nav-drawer::-webkit-scrollbar { width: 3px; }
.mobile-nav-drawer::-webkit-scrollbar-thumb { background: rgba(201,150,58,0.3); border-radius: 2px; }

/* Gold top accent bar */
.mnd-topbar {
  flex-shrink: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold) 30%, var(--gold-light) 60%, transparent);
}

/* Close button */
.mobile-nav-close {
  align-self: flex-end; margin: 14px 16px 0;    padding: 10px;
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(201,150,58,0.22);
  color: rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-close:hover { background: rgba(201,150,58,0.18); color: var(--gold-light); }

/* Sections */
.mnd-section { padding: 18px 22px 4px; }

.mnd-label {
  display: block; font-size: 9px; font-weight: 700; letter-spacing: 2.2px;
  text-transform: uppercase; color: var(--accent-gold); margin-bottom: 6px;
  padding-bottom: 6px; border-bottom: 1px solid rgba(201,150,58,0.2);
}

/* Nav links */
.mnd-link {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 0; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.82); letter-spacing: 0.2px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, padding-left 0.2s;
}
.mnd-link:last-child { border-bottom: none; }
.mnd-link:hover { color: var(--gold-light); padding-left: 4px; }

/* Main menu links (mirrors header) */
.mnd-main { font-size: 14.5px; font-weight: 700; color: rgba(255,255,255,0.92); letter-spacing: 0.3px; }
.mnd-main:hover { color: var(--gold-light); }
.mnd-main .mnd-sub-icon { opacity: 1; }

/* Sub-links (services) */
.mnd-sub { font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.68); }
.mnd-sub:hover { color: var(--gold-light); }
.mnd-sub-icon { width: 15px; height: 15px; flex-shrink: 0; color: var(--accent-gold); opacity: 0.8; }

/* Divider */
.mnd-divider {
  margin: 10px 22px;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(201,150,58,0.35), transparent);
}

/* CTA buttons */
.mnd-ctas { padding: 6px 22px; display: flex; flex-direction: column; gap: 10px; }

.mnd-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px; border-radius: 10px; font-size: 13.5px; font-weight: 700;
  letter-spacing: 0.2px; transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  border: none; cursor: pointer; font-family: inherit; text-decoration: none;
}
.mnd-cta:hover { transform: translateY(-1px); opacity: 0.92; }
.mnd-cta:active { transform: translateY(0); }

.mnd-cta-gold {
  background: linear-gradient(135deg, #e8c25a 0%, var(--accent-gold) 55%, #b57e28 100%);
  color: var(--dark-green);
  box-shadow: 0 4px 16px rgba(201,150,58,0.35);
}
.mnd-cta-call {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.88);
}
.mnd-cta-call svg { color: var(--accent-gold); }
.mnd-cta-wa {
  background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.3);
  color: #4cd97b;
}


/* ══════════════════════════════════════
   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; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trust-panel { grid-template-columns: 240px 1px 1fr; gap: 0 26px; padding: 28px 28px; }
  .trust-score { font-size: 64px; }
  .review-card { flex: 0 0 calc((100% - 24px) / 2); }
  .rating-bar-platform { min-width: 150px; }
  .nav-links li a { padding: 9px 11px; font-size: 12px; letter-spacing: 0.6px; }
  .nav-phone-link { display: none; }
  .nav-cta-wrap { gap: 14px; }
  .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;}

}

/* ── Mobile-specific cat-bar: thin pill strip below nav ── */
@media (max-width: 640px) {
  .top-nav { height: 60px; padding: 0 14px; top: 0; }
  .mobile-nav-overlay { top: 60px; }
  .nav-links { display: none; }
  .logo-wrap { min-width: 0; padding: 12px 12px; }
  .logo-icon { font-size: 24px; }
  .logo-text .brand { font-size: 9px; }
  .nav-book-btn { display: none; }

  /* Thin category strip fixed below 60px header */
  .cat-bar {
    top: 60px; 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: 5px 12px; border-radius: 50px;
    border: 1px solid rgba(201,150,58,0.35) !important;
    white-space: nowrap; flex-shrink: 0; height: auto;
  }
  .cat-item + .cat-item::before { display: none; }
  .cat-item.active { background: rgba(201,150,58,0.22); border-color: var(--accent-gold) !important; }
  .cat-item.active::after { display: none; }
  .cat-icon { width: 22px; height: 22px; }
  .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; }

  .review-card { flex: 0 0 100%; }
  /* on mobile, swipe + dots + drag-scrollbar replace the edge arrows */
  .reviews-arrow { display: none; }
  .reviews-shell { padding: 0; }
  .reviews-scrollbar { width: 160px; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .float-cta-mobile { display: flex; }
  body { padding-bottom: 0; }
  .testimonials { padding: 48px 14px; }
  .testimonials::before, .testimonials::after { display: none; }
  .trust-panel { grid-template-columns: 1fr; gap: 20px; padding: 24px 20px; }
  .trust-divider { display: none; }
  .trust-rating { border-bottom: 1px solid rgba(201,150,58,0.2); padding-bottom: 20px; }
  .rating-bar-platform { min-width: 120px; }
  .reviews-stats { gap: 14px; padding: 18px 16px; }
  .rvst-sep { display: none; }
  .rvst-item { flex: 1 1 40%; justify-content: flex-start; }
  .rvst-cta { width: 100%; justify-content: center; margin-left: 0; margin-top: 4px; }
  .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); }
  .mobile-cta-quote{font-size: 12px;}
}

/* ══════════════════════════════════════
   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 */
.royal-cta-enquiry {
  background: linear-gradient(135deg, #e8c25a 0%, var(--accent-gold) 55%, #bd882c 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(--dark-green);
}
.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 — same dark green as enquiry */
.royal-cta-whatsapp {
    background: linear-gradient(180deg, #f6fbf6, #eaf5ea);
    border: 1.5px solid rgba(37, 168, 102, 0.32);
    box-shadow: 0 4px 18px rgba(13, 43, 30, 0.35), inset 0 1px 0 rgba(201, 150, 58, 0.2);
    color: #14663a;
}
.royal-cta-whatsapp .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-whatsapp .royal-cta-icon-wrap svg { width: 18px; height: 18px; }
.royal-cta-whatsapp:hover {
  box-shadow: 0 8px 28px rgba(13,43,30,0.5), 0 0 0 2px rgba(201,150,58,0.3);
  color: #fff;
}

/* Call — rich gold with dark text */
.royal-cta-call {
     background: linear-gradient(180deg, #fffdf7, #f8f1de);
    border: 1.5px solid rgba(201, 150, 58, 0.34);
    box-shadow: 0 4px 18px rgba(201, 150, 58, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    color: var(--dark-green);
}
.royal-cta-call .royal-cta-icon-wrap {
  background: rgba(13,43,30,0.15);
  border: 1px solid rgba(13,43,30,0.2);
  color: #5e5e5e;
}
.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; }
}

/* ══════════════════════════════════════
   VIDEO GALLERY
══════════════════════════════════════ */
.vgal-section {
  background: var(--dark-green);
  padding: 72px 40px;
  position: relative;
  overflow: hidden;
}
.vgal-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,150,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.vgal-inner { max-width: 1000px; margin: 0 auto; position: relative; }

.vgal-section .vgal-head { text-align: center; }
.vgal-section .exp-ornament { justify-content: center; }
.vgal-section .exp-ornament .exp-orn-line { background: rgba(201,150,58,0.35); }
.vgal-section .exp-orn-mark { color: var(--gold-light); }
.vgal-section .exp-eyebrow { color: var(--gold-light); }
.vgal-section .exp-heading { color: var(--white); }
.vgal-section .exp-heading em { color: var(--gold-light); font-style: italic; }

/* 3 equal portrait reel cards */
.vgal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.vgal-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(201,150,58,0.18);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vgal-item:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.4); }

.vgal-media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

.vgal-video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.vgal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.vgal-item:hover .vgal-overlay { background: rgba(0,0,0,0.15); }

.vgal-play {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.vgal-play:hover { background: var(--accent-gold); border-color: var(--accent-gold); transform: scale(1.1); }
.vgal-play[data-playing="true"] { background: rgba(201,150,58,0.35); border-color: var(--accent-gold); }
.vgal-play svg { width: 20px; height: 20px; }

.vgal-mute-btn {
  position: absolute; bottom: 12px; right: 12px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(13,43,30,0.65); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transition: opacity 0.2s, background 0.2s;
}
.vgal-item:hover .vgal-mute-btn { opacity: 1; }
.vgal-mute-btn:hover { background: rgba(201,150,58,0.65); }
.vgal-mute-btn svg { width: 14px; height: 14px; }

@media (max-width: 768px) {
  .vgal-section { padding: 48px 0 56px; }
  .vgal-inner { max-width: 100%; }
  .vgal-head { padding: 0 20px; }
  .vgal-mute-btn { opacity: 1; }

  /* horizontal snap slider */
  .vgal-grid {
    display: flex;
    flex-direction: row;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 20px 12px;
    margin-top: 28px;
  }
  .vgal-grid::-webkit-scrollbar { display: none; }

  .vgal-item {
    flex: 0 0 72vw;
    max-width: 280px;
    scroll-snap-align: center;
  }

  /* dot indicators */
  .vgal-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
  }
  .vgal-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(201,150,58,0.3);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
  }
  .vgal-dot.active { background: var(--accent-gold); transform: scale(1.3); }
}
@media (min-width: 769px) {
  .vgal-dots { display: none; }
}

/* ══════════════════════════════════════
   ROYAL PACKAGES SECTION
══════════════════════════════════════ */
/* Trust strip */
.rpkg-trust-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  margin-top: 0px;
  margin-bottom: 30px;
  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: clamp(44px, 5vw, 72px) 0;
  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: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 70px 0;
  background:
    radial-gradient(900px 600px at 12% 20%, rgba(201,150,58,0.10), transparent 60%),
    linear-gradient(150deg, #0a2015 0%, #0d2b1e 45%, #071810 100%);
}

/* ── Dominant hero photo bleeding in from the right ── */
.mh-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 66%;
  z-index: 0;
  /* feather the left edge so the photo melts into the green — no hard split */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.5) 14%, #000 30%);
          mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.5) 14%, #000 30%);
}
.mh-photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  /* make the cuisine pop — brighter, richer, a touch more contrast */
  filter: brightness(1.07) contrast(1.05) saturate(1.1);
  animation: mhZoom 24s ease-in-out infinite alternate;
}
@keyframes mhZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.1); }
}
/* Fade the photo into the green (softer, no hard split), warm-gold highlight
   over the buffet, and a gentle darken on the far right to subdue the chef. */
.mh-photo-fade {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 56% 64%, rgba(255,196,92,0.20) 0%, rgba(255,196,92,0.06) 40%, transparent 66%),
    linear-gradient(270deg, rgba(6,15,8,0.42) 0%, rgba(6,15,8,0.12) 16%, transparent 30%),
    linear-gradient(90deg, #0b2418 0%, rgba(11,36,24,0.80) 16%, rgba(11,36,24,0.40) 40%, rgba(11,36,24,0.12) 56%, transparent 74%),
    linear-gradient(180deg, transparent 62%, rgba(7,20,14,0.40) 100%);
  pointer-events: none;
}

/* Ambient orb */
.mh-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(90px); z-index: 1;
}
.mh-orb-1 {
  width: 460px; height: 460px;
  left: -150px; top: -120px;
  background: radial-gradient(circle, rgba(201,150,58,0.30), transparent 70%);
  animation: mhOrb 16s ease-in-out infinite alternate;
}
@keyframes mhOrb {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(24px,18px) scale(1.08); }
}

/* ── Content wrapper ── */
.mh-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1340px;
  padding: 0 40px;
  margin: 0 auto;
}
.mh-copy {
  position: relative;
  max-width: 650px;
}

/* Crown ornament */
.mh-ornament {
  display: flex; align-items: center;
  gap: 14px; margin-bottom: 20px;
}
.mh-orn-line {
  flex: 0 1 100px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,150,58,0.75));
}
.mh-orn-line:first-child {
  background: linear-gradient(90deg, rgba(201,150,58,0.75), transparent);
}
.mh-orn-crown {
  font-size: 22px; color: var(--accent-gold);
  filter: drop-shadow(0 0 10px rgba(201,150,58,0.6));
}

/* Headline */
.mh-headline {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.6vw, 78px);
  font-weight: 800;
  color: #fff;
  line-height: 1.03;
  letter-spacing: -1.5px;
  margin: 0 0 18px;
  text-shadow: 0 6px 32px rgba(0,0,0,0.5);
}
.mh-headline em {
  font-style: italic;
  font-weight: 500;
  display: block;
  margin-top: 4px;
  background: linear-gradient(120deg, #f5d78a 0%, var(--accent-gold) 45%, #f5d78a 85%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: mhShine 6s ease-in-out infinite;
}
@keyframes mhShine {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

/* Subline */
.mh-subline {
  font-size: 17px; line-height: 1.58;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 0 22px;
}
.mh-hl {
  color: var(--gold-light);
  font-style: italic;
  font-family: var(--font-serif);
}

/* ── Stats + CTA side-by-side row ── */
.mh-action-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 580px;
  margin-bottom: 24px;
}

/* ── Trust stats — premium glass cards ── */
.mh-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
  margin-bottom: 0;
}
.mh-stat {
  flex: 0 1 auto; min-width: 128px;
  display: flex; align-items: center; gap: 11px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 10px 28px rgba(0,0,0,0.30);
}
.mh-stat-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(201,150,58,0.16);
  border: 1px solid rgba(201,150,58,0.3);
  color: var(--accent-gold);
  flex-shrink: 0;
}
.mh-stat-ico svg { width: 22px; height: 22px; }
.mh-stat-ico-star svg { width: 20px; height: 20px; }
.mh-stat-text { display: flex; flex-direction: column; gap: 1px; line-height: 1.12; min-width: 0; }
.mh-stat-num {
  font-family: var(--font-serif);
  font-size: 25px; font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.mh-stat-plus { color: var(--accent-gold); font-size: 18px; margin-left: 1px; }
.mh-stat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.66);
  font-weight: 500;
  line-height: 1.2;
}
.mh-stat-sep { display: none; }

/* ── CTAs — matched to the trust-bar width for shared rhythm ── */
.mh-ctas {
  display: flex; flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}
.mh-btn {
  flex: 1 1 0; min-width: 180px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 13.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  transition: transform 0.28s cubic-bezier(.2,.7,.2,1), box-shadow 0.28s, background 0.28s, color 0.28s;
  border: none; cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.mh-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.mh-btn:hover::after { transform: translateX(120%); }
.mh-btn-primary {
  background: linear-gradient(135deg, #e8c25a 0%, var(--accent-gold) 50%, #b57e28 100%);
  color: var(--dark-green);
  box-shadow: 0 10px 30px rgba(201,150,58,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
}
.mh-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201,150,58,0.55), inset 0 1px 0 rgba(255,255,255,0.5);
}
.mh-btn-arrow { display: inline-block; transition: transform 0.28s ease; }
.mh-btn-primary:hover .mh-btn-arrow { transform: translateX(4px); }
.mh-btn-menu {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid rgba(201,150,58,0.6);
}
.mh-btn-menu:hover {
  background: rgba(201,150,58,0.12);
  border-color: var(--accent-gold);
  color: #fff;
  transform: translateY(-3px);
}

/* ── Floating rating badge over the image (enlarged, pulled toward stats) ── */
.mh-rating-badge {
  position: absolute;
  right: 58px; bottom: 78px;
  z-index: 5;
  display: flex; flex-direction: column;
  gap: 5px;
  padding: 18px 26px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,0.42), 0 0 0 1px rgba(201,150,58,0.28);
}
.mh-rating-stars { display: flex; gap: 3px; margin-bottom: 3px; }
.mh-rating-stars svg { width: 18px; height: 18px; }
.mh-rating-score {
  display: flex; align-items: baseline; gap: 2px;
  font-family: var(--font-serif); color: var(--dark-green);
}
.mh-rating-score strong { font-size: 34px; font-weight: 800; line-height: 1; }
.mh-rating-score span { font-size: 19px; font-weight: 700; color: #6b7280; }
.mh-rating-sub {
  font-size: 13px; font-weight: 500; color: #6b7280;
  letter-spacing: 0.2px;
}

/* ══════════════════════════════════════
   HERO RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1200px) {
  .mh-content { max-width: 1100px; padding: 0 32px; }
  .mh-photo { width: 58%; }
  .mh-headline { font-size: clamp(40px, 5.4vw, 66px); }
}
@media (max-width: 1024px) {
  .mh-photo { width: 52%; }
  .mh-photo-fade {
    background:
      linear-gradient(90deg, #0b2418 0%, rgba(11,36,24,0.92) 26%, rgba(11,36,24,0.5) 55%, transparent 72%),
      linear-gradient(180deg, transparent 55%, rgba(7,20,14,0.55) 100%);
  }
  .mh-headline { font-size: clamp(36px, 5.2vw, 54px); }
  .mh-subline { font-size: 15px; }
  .mh-stats { gap: 16px; padding: 14px 20px; }
  .mh-stat-num { font-size: 19px; }
  .mh-rating-badge { right: 28px; bottom: 24px; padding: 13px 18px; }
  .mh-rating-score strong { font-size: 26px; }
}
@media (max-width: 860px) {
  .main-hero { min-height: 0; padding: 0; display: block; }
  /* Photo becomes a top banner, copy sits below on solid green */
  .mh-photo {
    position: relative;
    width: 100%; height: 300px;
  }
  .mh-photo-fade {
    background: linear-gradient(180deg, transparent 40%, rgba(11,36,24,0.55) 78%, #0b2418 100%);
  }
  .mh-content {
    padding: 34px 28px 56px;
  }
  .mh-copy { max-width: 640px; margin: 0 auto; }
  .mh-orb-1 { opacity: 0.6; }
  .mh-headline { font-size: clamp(40px, 6.4vw, 52px); }
  /* Badge lives in the stat bar on mobile — hide the floating one */
  .mh-rating-badge { display: none; }
}
@media (max-width: 560px) {
  .mh-photo { height: 240px; }
  .mh-content { padding: 28px 18px 46px; }
  .mh-headline { font-size: clamp(30px, 8.2vw, 42px); letter-spacing: -1px; }
  .mh-subline { font-size: 14.5px; }
  .mh-action-row {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
  }
  .mh-stats {
    display: flex;
    gap: 10px;
    width: auto;
    padding: 0;
    flex-shrink: 0;
  }
  .mh-stat { flex: 0 1 auto; min-width: 0; padding: 9px 11px; gap: 8px; }
  .mh-stat-ico { width: 30px; height: 30px; }
  .mh-stat-ico svg { width: 18px; height: 18px; }
  .mh-stat-num { font-size: 15px; }
  .mh-stat-lbl { font-size: 10px; white-space: normal; overflow-wrap: anywhere; }
  .mh-stat-sep { display: none; }
  .mh-ctas { flex: 1; min-width: 0; }
  .mh-btn {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
    font-size: 12px;
    letter-spacing: 0.6px;
    gap: 6px;
  }
}

/* ══════════════════════════════════════
   ABOUT US SECTION
══════════════════════════════════════ */
.about-section {
  background: linear-gradient(160deg, #060f08 0%, #0f2718 50%, #081a11 100%);
  padding: 0 0 clamp(52px, 5.5vw, 84px);
  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; }
}

/* ══════════════════════════════════════
   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;
}
.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;}
}

/* ═══════════════════════════════════════════════════
   LIGHT ROYAL THEME — sitewide repaint
   Turns every dark forest-green surface into a
   cream/ivory/pearl surface with green ink and gold
   accents. Green stays as text/border, gold stays
   the royal metal. Nothing is removed — only recolored.
═══════════════════════════════════════════════════ */

/* Shared light-royal tokens */
:root {
  --royal-ivory:      #fdfaf1;
  --royal-cream:      #f8f2e2;
  --royal-pearl:      #fffdf7;
  --royal-sand:       #f2ecdb;
  --royal-hairline:   rgba(201,150,58,0.28);
  --royal-hairline-2: rgba(201,150,58,0.45);
  --royal-ink:        #1e3c32;
  --royal-ink-soft:   #3d5a4c;
  --royal-shadow:     0 10px 30px rgba(30,60,50,0.10);
  --royal-shadow-sm:  0 4px 14px rgba(30,60,50,0.08);
  --royal-shadow-lg:  0 22px 48px rgba(30,60,50,0.14);
}

/* ── LOGO PILL & NAV BUTTON ───────────────────────── */
.logowrap img{width: 100px;}
.logo-wrap {
  background: linear-gradient(180deg, var(--royal-pearl) 0%, var(--royal-ivory) 100%);
  border: 1px solid var(--royal-hairline-2);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, var(--royal-shadow-sm);
}
.logo-icon { color: var(--accent-gold); text-shadow: 0 1px 0 rgba(255,255,255,0.6); }
.logo-text .brand { color: var(--dark-green); }
.logo-text .tagline { color: #8a6d2e; }

.nav-menu-btn {
  background: linear-gradient(180deg, var(--royal-pearl), var(--royal-cream));
  color: var(--dark-green);
  border: 1px solid var(--royal-hairline-2);
  box-shadow: var(--royal-shadow-sm);
}
.nav-menu-btn span { background: var(--dark-green); }

/* ── CATEGORY BAR — light, lightweight glass filter strip ─── */
.cat-bar {
  background: rgba(252, 249, 242, 0.92);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
          backdrop-filter: blur(10px) saturate(1.05);
  border-bottom: 1px solid rgba(201,150,58,0.16);
  box-shadow: 0 6px 18px rgba(30,60,50,0.06);
}
.cat-item + .cat-item::before { background: var(--royal-hairline); }
.cat-item:hover { background: rgba(201,150,58,0.06); }
/* active = refined gold underline + subtle cream highlight (no box, same height) */
.cat-item.active { background: linear-gradient(180deg, rgba(255,251,241,0.9) 0%, rgba(201,150,58,0.06) 100%); }
.cat-item.active::after { background: var(--accent-gold); }
.cat-item.active .cat-label { color: var(--accent-gold); }
.cat-label { color: var(--dark-green); }

/* ── PACKAGES (light card headers) ────────────────── */
.pkg-header {
  background: linear-gradient(135deg, var(--royal-ivory) 0%, var(--royal-cream) 100%);
  border-bottom: 1px solid var(--royal-hairline);
}
.pkg-card.featured .pkg-header {
  background: linear-gradient(135deg, #fdf3d6 0%, #f4e4b8 55%, #ecd28a 100%);
}
.pkg-name { color: var(--dark-green); }
.pkg-tagline { color: var(--royal-ink-soft); }
.pkg-price { color: var(--dark-green); }
.pkg-currency { color: var(--accent-gold); }
.pkg-per { color: var(--text-muted); }
.pkg-popular-badge {
  background: linear-gradient(135deg, var(--accent-gold), #e8b840);
  color: var(--dark-green);
  box-shadow: 0 4px 12px rgba(201,150,58,0.35);
}
.pkg-btn-outline {
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--dark-green);
}
.pkg-btn-outline:hover {
  background: linear-gradient(180deg, #fffbe8, #f2e6c4);
  color: var(--dark-green);
  border-color: var(--accent-gold);
  box-shadow: 0 6px 18px rgba(201,150,58,0.28);
}

/* ── REVIEWS SUMMARY / ARROWS ─────────────────────── */

/* ── FOOTER ───────────────────────────────────────── */
.site-footer {
  background:
    radial-gradient(900px 380px at 15% 0%, rgba(201,150,58,0.08), transparent 60%),
    linear-gradient(180deg, var(--royal-ivory) 0%, var(--royal-cream) 100%);
  color: var(--royal-ink-soft);
  border-top: 1px solid var(--royal-hairline);
}
.footer-top { border-bottom: 1px solid var(--royal-hairline); }
.footer-brand p { color: var(--royal-ink-soft); }
.footer-col h4 { color: var(--dark-green); }
.footer-col ul li a { color: var(--royal-ink-soft); }
.footer-col ul li a:hover { color: var(--accent-gold); }
.footer-contact-item span { color: var(--royal-ink-soft); }
.social-btn {
  background: linear-gradient(180deg, var(--royal-pearl), var(--royal-cream));
  border: 1px solid var(--royal-hairline-2);
  color: var(--dark-green);
  box-shadow: var(--royal-shadow-sm);
}
.social-btn:hover { background: var(--accent-gold); color: var(--dark-green); }
.footer-bottom { color: var(--text-muted); }
.footer-bottom a { color: var(--royal-ink-soft); }
.footer-bottom.footer-bdr { border-bottom: 1px solid var(--royal-hairline); }

/* Footer logo pill needs slight variant */
.footer-brand .logo-wrap {
  background: linear-gradient(180deg, #ffffff, var(--royal-ivory));
}

/* ── MOBILE NAV DRAWER (royal theme keeps dark-green palette — intentional contrast) ── */
.mobile-nav-overlay { background: rgba(10,28,18,0.68); }

/* ── SLIDE PANEL (Why-Us / Menu popup) ────────────── */
.slide-panel-overlay.open { background: rgba(30,60,50,0.35); }
.slide-panel-head {
  background: linear-gradient(135deg, var(--royal-ivory) 0%, var(--royal-cream) 100%);
  border-bottom: 1px solid var(--royal-hairline-2);
}
.slide-panel-eyebrow { color: var(--accent-gold); }
.slide-panel-title { color: var(--dark-green); }
.slide-panel-close {
  background: rgba(30,60,50,0.06);
  color: var(--dark-green);
  border: 1px solid var(--royal-hairline);
}
.slide-panel-close:hover { background: rgba(201,150,58,0.15); }
.sp-menu-tab.active, .sp-menu-tab:hover,
.sp-gal-filter.active, .sp-gal-filter:hover {
  background: linear-gradient(180deg, var(--accent-gold), #b8820a);
  color: var(--dark-green);
  border-color: var(--accent-gold);
}
.sp-gallery-item-lbl, .sp-gal-label {
  background: linear-gradient(to top, rgba(30,60,50,0.55), transparent);
}

/* ── ROYAL PACKAGES SECTION ───────────────────────── */
.rpkg-trust-strip {
  background: linear-gradient(180deg, #ffffff, var(--royal-ivory));
  border: 1px solid var(--royal-hairline-2);
  box-shadow: var(--royal-shadow-sm);
}
.rpkg-trust-item { color: var(--royal-ink-soft); }
.rpkg-trust-sep { color: rgba(201,150,58,0.5); }

/* ── ROYAL REVIEWS SECTION ────────────────────────── */
.royal-reviews-section {
  background:
    radial-gradient(900px 420px at 10% 60%, rgba(201,150,58,0.10), transparent 60%),
    radial-gradient(700px 380px at 90% 20%, rgba(57,86,72,0.06), transparent 60%),
    linear-gradient(160deg, var(--royal-pearl) 0%, var(--royal-cream) 55%, var(--royal-ivory) 100%);
  border-top: 1px solid var(--royal-hairline);
  border-bottom: 1px solid var(--royal-hairline);
}
.royal-reviews-bg-deco {
  background:
    radial-gradient(ellipse 60% 50% at 10% 60%, rgba(201,150,58,0.10), transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 20%, rgba(30,100,60,0.08), transparent 60%);
}
.rr-score-badge {
  background: rgba(201,150,58,0.14);
  border-color: var(--royal-hairline-2);
}
.rr-score-num { color: var(--accent-gold); }
.rr-score-slash, .rr-score-max { color: var(--royal-ink-soft); }
.rr-score-label { color: var(--royal-ink-soft); }
.rr-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--royal-ivory) 100%);
  border: 1px solid var(--royal-hairline);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, var(--royal-shadow-sm);
}
.rr-card:hover { box-shadow: var(--royal-shadow); }
.rr-card-dark {
  background: linear-gradient(180deg, #ffffff 0%, var(--royal-ivory) 100%);
  border: 1px solid var(--royal-hairline);
  box-shadow: var(--royal-shadow-sm);
}
.rr-card-dark:hover { box-shadow: var(--royal-shadow), 0 0 0 1px var(--royal-hairline-2); }
.rr-card-gold {
  background: linear-gradient(135deg, #fffbeb 0%, #fdf3d6 100%);
  border: 1px solid var(--royal-hairline-2);
  box-shadow: var(--royal-shadow-sm);
}
.rr-card-gold:hover { box-shadow: var(--royal-shadow), 0 0 0 1px rgba(201,150,58,0.4); }
.rr-card-light {
  background: linear-gradient(180deg, var(--royal-pearl), var(--royal-ivory));
  border: 1px solid var(--royal-hairline);
}
.rr-card-light:hover { border-color: var(--royal-hairline-2); }
.rr-card-wide {
  background: linear-gradient(135deg, #ffffff 0%, var(--royal-ivory) 100%);
  border: 1px solid var(--royal-hairline-2);
}
.rr-card-quote-mark { color: rgba(201,150,58,0.28); }
.rr-card-event-tag {
  background: rgba(201,150,58,0.14);
  color: #8a6d2e;
  border-color: var(--royal-hairline-2);
}
.rr-tag-green { background: rgba(34,150,80,0.10); color: #16a34a; border-color: rgba(34,150,80,0.28); }
.rr-tag-blue { background: rgba(59,130,246,0.10); color: #2563eb; border-color: rgba(59,130,246,0.28); }
.rr-tag-purple { background: rgba(139,92,246,0.10); color: #7c3aed; border-color: rgba(139,92,246,0.28); }
.rr-tag-red { background: rgba(220,38,38,0.10); color: #b91c1c; border-color: rgba(220,38,38,0.28); }
.rr-card-text { color: var(--royal-ink-soft); }
.rr-card-avatar { border: 2px solid var(--royal-hairline-2); }
.rr-card-name { color: var(--dark-green); }
.rr-card-event { color: var(--text-muted); }
.rr-card-platform { color: var(--text-muted); }
.rr-main-cta {
  background: linear-gradient(135deg, var(--accent-gold), #e8b840);
  color: var(--dark-green);
  box-shadow: 0 6px 26px rgba(201,150,58,0.35);
}
.rr-main-cta:hover { box-shadow: 0 12px 38px rgba(201,150,58,0.5); color: var(--dark-green); }

/* ── ROYAL ALT SERVICE CARD (rsa) ─────────────────── */
.rsa-img-pane {
  background: linear-gradient(180deg, var(--royal-ivory), var(--royal-cream));
}
.rsa-img-overlay {
  background: linear-gradient(to top, rgba(255,251,232,0.96) 0%, rgba(255,251,232,0) 100%);
}
.rsa-stat-num { color: var(--dark-green); }
.rsa-stat-lbl { color: var(--royal-ink-soft); }


/* ── ABOUT US SECTION ─────────────────────────────── */
.about-section {
  background:
    radial-gradient(1200px 520px at 15% 20%, rgba(201,150,58,0.10), transparent 60%),
    radial-gradient(900px 440px at 90% 90%, rgba(57,86,72,0.08), transparent 60%),
    linear-gradient(160deg, var(--royal-pearl) 0%, var(--royal-cream) 55%, var(--royal-ivory) 100%);
  border-top: 1px solid var(--royal-hairline);
  border-bottom: 1px solid var(--royal-hairline);
}
.about-orn-line { background: linear-gradient(90deg, transparent, rgba(201,150,58,0.6), transparent); }
.about-orn-text { color: var(--accent-gold); }
.about-title { color: var(--dark-green); }
.about-title em { color: var(--accent-gold); }
.about-para { color: var(--royal-ink-soft); }
.about-founder-card {
  background: linear-gradient(180deg, #ffffff, var(--royal-ivory));
  border: 1px solid var(--royal-hairline-2);
  box-shadow: var(--royal-shadow-sm);
}
.about-founder-name { color: var(--dark-green); }
.about-founder-role { color: #8a6d2e; }
.about-founder-quote { color: var(--royal-ink-soft); }
.about-milestones {
  border: 1px solid var(--royal-hairline-2);
  background: linear-gradient(180deg, #ffffff, var(--royal-ivory));
  box-shadow: var(--royal-shadow-sm);
}
.about-milestone { border-right: 1px solid var(--royal-hairline); }
.about-ms-num { color: var(--accent-gold); }
.about-ms-lbl { color: var(--royal-ink-soft); }
.about-img-main { box-shadow: var(--royal-shadow-lg); }
.about-award-card {
  background: linear-gradient(180deg, #ffffff, var(--royal-ivory));
  border: 1px solid var(--royal-hairline-2);
  box-shadow: var(--royal-shadow);
}

/* ── PAGE HERO (services) — bit richer, still cream ─ */
.services-hero {
  background:
    radial-gradient(900px 340px at 50% 0%, rgba(201,150,58,0.10), transparent 60%),
    var(--bg-cream);
}
.hero-eyebrow { color: #8a6d2e; }
.hero-title { color: var(--dark-green); }
.hero-sub { color: var(--royal-ink-soft); }

/* ── UTILITY: any lingering deep-green fill on links ─ */
.reviews-show-more-btn { color: #8a6d2e; }
.reviews-show-more-btn:hover { background: var(--accent-gold); color: var(--dark-green); }


/* ══════════════════════════════════════════════
   RESERVE YOUR DATE SECTION
══════════════════════════════════════════════ */
.ryd-section {
  background: var(--bg-cream);
  padding: 80px 0 90px;
}
.ryd-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ── Eyebrow / heading ── */
.ryd-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ryd-heading {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--dark-green);
  line-height: 1.18;
  margin-bottom: 16px;
}
.ryd-heading-accent {
  color: var(--accent-gold);
  display: block;
}
.ryd-subtext {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 440px;
}

/* ── Form layout ── */
.ryd-form { display: flex; flex-direction: column; gap: 18px; }
.ryd-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ryd-field { display: flex; flex-direction: column; gap: 6px; }
.ryd-field-full { grid-column: 1 / -1; }

.ryd-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.ryd-input {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  width: 100%;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}

/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */
.pp-section {
  background: var(--bg-cream);
  padding: 60px 0 80px;
}
.pp-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

/* Notice bar */
.pp-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fffbe6;
  border: 1.5px solid #e0c96a;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 14px;
  color: #7a5c00;
  margin-bottom: 28px;
}
.pp-notice-icon { font-size: 18px; }

/* Intro */
.pp-intro {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
}

/* Policy blocks */
.pp-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.pp-block-header {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--dark-green);
  padding: 16px 24px;
}
.pp-block-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.pp-block-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}
.pp-block-body {
  padding: 22px 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
}
.pp-block-body p { margin-bottom: 14px; }
.pp-block-body p:last-child { margin-bottom: 0; }

/* Sub headings inside blocks */
.pp-sub-heading {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 18px 0 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Lists */
.pp-list {
  padding-left: 20px;
  margin: 10px 0 14px;
}
.pp-list li {
  margin-bottom: 7px;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
}

/* Highlight box */
.pp-highlight-box {
  background: #fff8e6;
  border-left: 4px solid var(--accent-gold);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 14px;
  color: #6b4c00;
  margin-top: 14px;
  line-height: 1.7;
}

/* Contact card */
.pp-contact-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pp-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pp-contact-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.pp-contact-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.pp-contact-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}
.pp-contact-value a {
  color: var(--dark-green);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-gold);
}
.pp-contact-value a:hover { color: var(--accent-gold); }

/* CTA Buttons */
.pp-contact-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.pp-btn-call,
.pp-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.pp-btn-call {
  background: var(--dark-green);
  color: var(--white);
}
.pp-btn-call:hover { background: var(--mid-green); color: var(--white); }
.pp-btn-wa {
  background: #25D366;
  color: var(--white);
}
.pp-btn-wa:hover { background: #1ebe5d; color: var(--white); }

/* Image banners */
.pp-image-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  height: 220px;
  box-shadow: var(--shadow-md);
}
.pp-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pp-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,43,30,.75) 0%, rgba(13,43,30,.1) 100%);
  display: flex;
  align-items: flex-end;
  padding: 22px 28px;
}
.pp-banner-caption {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--white);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

/* Highlighted contact block at bottom */
.pp-block--contact .pp-block-header {
  background: var(--accent-gold);
}
.pp-block--contact .pp-block-num {
  background: var(--dark-green);
}

@media (max-width: 640px) {
  .pp-block-title { font-size: 16px; }
  .pp-block-body { padding: 18px 16px; }
  .pp-block-header { padding: 14px 16px; }
  .pp-image-banner { height: 160px; }
  .pp-banner-caption { font-size: 15px; }
  .pp-contact-btns { flex-direction: column; }
  .pp-btn-call, .pp-btn-wa { justify-content: center; }
}
.ryd-input:focus { border-color: var(--accent-gold); box-shadow: 0 0 0 3px rgba(201,150,58,.12); }
.ryd-input::placeholder { color: #b0a99a; }

.ryd-textarea { resize: vertical; min-height: 90px; }

/* Phone composite */
.ryd-phone-wrap { display: flex; gap: 0; }
.ryd-dial {
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: #f0ece4;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text-dark);
  white-space: nowrap;
}
.ryd-input-phone { border-radius: 0 8px 8px 0; }

/* Select */
.ryd-select-wrap { position: relative; }
.ryd-select { padding-right: 36px; cursor: pointer; }
.ryd-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

/* CTA button */
.ryd-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark-green);
  background: var(--accent-gold);
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  width: 100%;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 4px;
}
.ryd-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── Feature cards ── */
.ryd-cards-col { display: flex; flex-direction: column; gap: 16px; }

.ryd-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.ryd-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.ryd-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ryd-card-icon svg { width: 40px; height: 40px; }
.ryd-icon-gold  { background: rgba(201,150,58,.10); }
.ryd-icon-sage  { background: rgba(57,86,72,.10); }
.ryd-icon-blue  { background: rgba(59,130,246,.10); }
.ryd-icon-orange{ background: rgba(224,124,57,.10); }

.ryd-card-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 6px;
}
.ryd-card-text {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 10px;
}

.ryd-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 10px;
}
.ryd-badge-green  { background: rgba(34,197,94,.12);  color: #166534; }
.ryd-badge-sage   { background: rgba(57,86,72,.12);   color: #1e3c32; }
.ryd-badge-blue   { background: rgba(59,130,246,.12); color: #1e40af; }
.ryd-badge-orange { background: rgba(224,124,57,.12); color: #9a3412; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .ryd-inner { grid-template-columns: 1fr; gap: 40px; }
  .ryd-cards-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 560px) {
  .ryd-row { grid-template-columns: 1fr; }
  .ryd-cards-col { grid-template-columns: 1fr; }
  .ryd-section { padding: 56px 0 64px; }
}

/* ══════════════════════════════════════
   ENQUIRY MODAL
══════════════════════════════════════ */
#enquiryModal .modal-content { border: none; border-radius: 18px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.eq-modal-header { background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 100%); color: #fff; border: none; padding: 22px 28px; }
.eq-modal-header .btn-close { filter: invert(1) brightness(1.6); opacity: .9; }
.eq-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 700; margin: 0; color: #fff; }
.eq-sub { font-size: .85rem; opacity: .85; margin: 4px 0 0; letter-spacing: .5px; color: #fff; }
.eq-modal-body { padding: 28px; background: #fdfcfa; }
.eq-form-label { font-size: .8rem; font-weight: 600; letter-spacing: .4px; text-transform: uppercase; color: #5a4a3a; margin-bottom: 6px; display: block; }
.eq-form-control { border: 1.5px solid #e5dfd6; border-radius: 10px; padding: 11px 14px; font-size: .95rem; background: #fff; transition: all .2s ease; }
select.eq-form-control { -webkit-appearance: none; 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='%235a4a3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 38px; cursor: pointer; }
.eq-form-control:focus { border-color: #c9a55a; box-shadow: 0 0 0 3px rgba(201,165,90,.15); outline: none; }
.eq-submit { width: 100%; background: linear-gradient(135deg, #c9a55a 0%, #b08840 100%); color: #fff; border: none; border-radius: 10px; padding: 14px 24px; font-weight: 600; font-size: 1rem; letter-spacing: .5px; text-transform: uppercase; box-shadow: 0 8px 20px rgba(176,136,64,.3); transition: all .25s ease; cursor: pointer; }
.eq-submit:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(176,136,64,.4); }
.eq-note { font-size: .78rem; color: #8a7a68; text-align: center; margin-top: 12px; }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-stats-section { padding: 60px 0; background: #1a3d2b; }
.about-stat-num { color: #c9963a; font-family: 'Playfair Display', Georgia, serif; font-size: 2.8rem; font-weight: 700; }
.about-stat-lbl { color: #fff; font-size: .9rem; letter-spacing: .5px; margin-top: 4px; }

.about-values-section { padding: 72px 0; background: #faf8f4; }
.about-values-title { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; color: #1a3d2b; }
.value-card { background: #fff; border-radius: 16px; padding: 32px 24px; box-shadow: 0 4px 24px rgba(0,0,0,.06); height: 100%; }
.value-card--gold { border-top: 4px solid #c9963a; }
.value-card--green { border-top: 4px solid #1a3d2b; }
.value-card-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.2rem; color: #1a3d2b; margin-bottom: 10px; }
.value-card-text { color: #6b5c4e; font-size: .92rem; line-height: 1.7; }

.about-cta-section { padding: 56px 0; background: linear-gradient(135deg, #1a1a2e, #2d1b3d); text-align: center; }
.about-cta-eyebrow { color: #c9963a; font-size: .85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.about-cta-heading { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; color: #fff; margin-bottom: 20px; }
.about-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.about-cta-btn-primary { background: linear-gradient(135deg, #c9963a, #b08840); color: #fff; border: none; border-radius: 10px; padding: 14px 32px; font-size: 1rem; font-weight: 600; cursor: pointer; letter-spacing: .5px; }
.about-cta-btn-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.3); border-radius: 10px; padding: 14px 32px; font-size: 1rem; font-weight: 600; text-decoration: none; letter-spacing: .5px; }
.about-cta-btn-secondary:hover { color: #fff; border-color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════
   SERVICES PAGE — MORE EVENTS
══════════════════════════════════════ */
.more-events-section { padding: 60px 0; background: #faf8f4; }
.more-events-title { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; color: #1a3d2b; }
.more-events-sub { color: #6b5c4e; max-width: 560px; margin: 12px auto 0; }
.event-card { background: #fff; border-radius: 16px; padding: 32px 24px; text-align: center; box-shadow: 0 4px 24px rgba(0,0,0,.07); height: 100%; }
.event-card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.event-card-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; color: #1a3d2b; margin-bottom: 10px; }
.event-card-text { color: #6b5c4e; font-size: .92rem; line-height: 1.7; }
.event-card-btn { margin-top: 16px; background: linear-gradient(135deg, #c9963a, #b08840); color: #fff; border: none; border-radius: 8px; padding: 10px 22px; font-size: .88rem; font-weight: 600; cursor: pointer; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-page-section { padding: 72px 0; background: #faf8f4; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-info-card { background: #fff; border-radius: 20px; padding: 40px 32px; box-shadow: 0 8px 40px rgba(0,0,0,.08); }
.contact-info-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.6rem; color: #1a3d2b; margin-bottom: 8px; }
.contact-info-sub { color: #6b5c4e; font-size: .92rem; margin-bottom: 32px; line-height: 1.6; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-item-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-item-icon.gold { background: rgba(201,150,58,.12); }
.contact-item-icon.green { background: rgba(26,61,43,.1); }
.contact-item-icon.blue { background: rgba(59,130,246,.1); }
.contact-item-label { font-size: .75rem; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: #9c8870; margin-bottom: 4px; }
.contact-item-value { font-size: .97rem; color: #1a3d2b; font-weight: 600; }
.contact-item-value a { color: #1a3d2b; text-decoration: none; }
.contact-item-value a:hover { color: #c9963a; }
.contact-item-note { font-size: .83rem; color: #6b5c4e; margin-top: 2px; }
.contact-item-sub { font-weight: 400; font-size: .88rem; color: #6b5c4e; margin-top: 2px; }
.contact-social-row { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.contact-social-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 10px; font-size: .88rem; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: all .2s; }
.contact-social-btn.wa { background: #25d366; color: #fff; }
.contact-social-btn.wa:hover { background: #1fba59; color: #fff; }
.contact-social-btn.call { background: #1a3d2b; color: #fff; }
.contact-social-btn.call:hover { background: #245235; color: #fff; }
.contact-form-card { background: #fff; border-radius: 20px; padding: 40px 32px; box-shadow: 0 8px 40px rgba(0,0,0,.08); }
.contact-form-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.6rem; color: #1a3d2b; margin-bottom: 8px; }
.contact-form-sub { color: #6b5c4e; font-size: .92rem; margin-bottom: 28px; }
.cf-label { font-size: .78rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: #5a4a3a; margin-bottom: 6px; display: block; }
.cf-input { width: 100%; border: 1.5px solid #e5dfd6; border-radius: 10px; padding: 12px 14px; font-size: .95rem; background: #fff; transition: all .2s ease; outline: none; font-family: inherit; color: #1a3d2b; }
select.cf-input { -webkit-appearance: none; 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='%235a4a3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 38px; cursor: pointer; }
.cf-input:focus { border-color: #c9963a; box-shadow: 0 0 0 3px rgba(201,150,58,.12); }
.cf-textarea { resize: vertical; min-height: 110px; }
.cf-submit { width: 100%; background: linear-gradient(135deg, #c9a55a 0%, #b08840 100%); color: #fff; border: none; border-radius: 10px; padding: 14px 24px; font-weight: 700; font-size: 1rem; letter-spacing: .5px; text-transform: uppercase; box-shadow: 0 8px 20px rgba(176,136,64,.3); cursor: pointer; transition: all .25s ease; margin-top: 8px; }
.cf-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(176,136,64,.4); }
.cf-note { font-size: .78rem; color: #9c8870; text-align: center; margin-top: 12px; }

