/* =========================================================
   Beyond Ocean Tourism — global stylesheet
   Theme: desert gold + deep night blue + warm sand
   ========================================================= */

:root {
  --gold: #c8962f;
  --gold-soft: #e7c473;
  --navy: #0e1b2c;
  --navy-2: #16263b;
  --ink: #1d2430;
  --muted: #5d6b7d;
  --sand: #f6f1e7;
  --sand-2: #efe6d4;
  --line: #e6ddcd;
  --white: #ffffff;
  --shadow: 0 18px 40px -22px rgba(14, 27, 44, 0.45);
  --shadow-sm: 0 8px 24px -16px rgba(14, 27, 44, 0.4);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.center { text-align: center; }
.accent { color: var(--gold); }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem;
  font-weight: 600; color: var(--gold); margin-bottom: 0.6rem;
}

h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; color: var(--navy); font-weight: 600; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 1.5px solid transparent; transition: all 0.2s ease; white-space: nowrap;
}
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; margin-top: 0.6rem; }
.btn-primary { background: var(--gold); color: #fff; box-shadow: 0 10px 24px -12px rgba(200,150,47,0.8); }
.btn-primary:hover { background: #b3831f; transform: translateY(-2px); }
.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); }

/* ---------- Header ---------- */
.topbar { background: var(--navy); color: #cdd6e2; font-size: 0.82rem; }
.topbar-inner { display: flex; gap: 1.6rem; padding: 0.5rem 22px; flex-wrap: wrap; }
.topbar-item a:hover { color: var(--gold-soft); }
.topbar-hours { margin-left: auto; color: var(--gold-soft); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 22px; }
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--serif); font-weight: 700; font-size: 1.25rem; color: var(--navy); }
.brand-mark { font-size: 1.5rem; }
.brand-logo { display: block; height: 42px; width: auto; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 1.4rem; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--ink); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { color: #fff !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-color: var(--navy);
  background-image:
    linear-gradient(120deg, rgba(9,18,30,0.92) 0%, rgba(12,26,44,0.72) 45%, rgba(28,58,87,0.5) 100%),
    -webkit-image-set(url('/images/dubai-skyline.webp') type('image/webp'), url('/images/dubai-skyline.jpg') type('image/jpeg'));
  background-image:
    linear-gradient(120deg, rgba(9,18,30,0.92) 0%, rgba(12,26,44,0.72) 45%, rgba(28,58,87,0.5) 100%),
    image-set(url('/images/dubai-skyline.webp') type('image/webp'), url('/images/dubai-skyline.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 80% 0%, rgba(200,150,47,0.28), transparent 55%);
}
.hero-inner { position: relative; padding: clamp(4rem, 9vw, 7.5rem) 22px clamp(3.5rem, 7vw, 6rem); max-width: var(--maxw); margin: 0 auto; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .eyebrow { color: var(--gold-soft); }
.hero-sub { max-width: 56ch; margin: 1.4rem 0 2rem; font-size: 1.12rem; color: #d7e0ec; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.center-actions { justify-content: center; }
.hero-stats { display: flex; gap: 2.6rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-stats strong { display: block; font-family: var(--serif); font-size: 2rem; color: var(--gold-soft); }
.hero-stats span { font-size: 0.9rem; color: #b9c4d4; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-alt { background: linear-gradient(180deg, var(--sand) 0%, var(--sand-2) 100%); }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 3rem; }
.section-lead { color: var(--muted); font-size: 1.05rem; }

/* ---------- Cards grid ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.4rem; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm); transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.service-icon { font-size: 2.2rem; }
.service-card h3 { margin: 0.9rem 0 0.5rem; font-size: 1.25rem; }
.service-card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.card-link { margin-top: 1rem; color: var(--gold); font-weight: 600; font-size: 0.9rem; }
.service-badge {
  position: absolute; top: 0.9rem; right: 0.9rem; background: rgba(255,255,255,0.92); color: var(--gold);
  font-size: 0.72rem; font-weight: 600; padding: 0.25rem 0.7rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em;
}

/* Cards with a photo header */
.service-card.has-media { padding: 0; overflow: hidden; }
.card-media {
  position: relative; display: block; height: 190px;
  background-size: cover; background-position: center; transition: transform 0.4s ease;
}
.has-media:hover .card-media { transform: scale(1.06); }
.card-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,27,44,0) 40%, rgba(14,27,44,0.55) 100%);
}
.card-media-icon {
  position: absolute; left: 1rem; bottom: 0.75rem; z-index: 1; font-size: 2rem;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}
.card-body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem 1.5rem 1.6rem; }
.card-body p { flex: 1; }
.center { margin-top: 2.5rem; }

/* Static value cards (non-link) */
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm); }
.value-card .service-icon { font-size: 2.2rem; }
.value-card h3 { margin: 0.9rem 0 0.5rem; font-size: 1.2rem; }
.value-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.check-list { list-style: none; margin: 1.5rem 0 2rem; display: grid; gap: 0.7rem; }
.check-list li { position: relative; padding-left: 2rem; color: var(--ink); }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: #fff; background: var(--gold); width: 1.3rem; height: 1.3rem; border-radius: 50%; display: grid; place-items: center; font-size: 0.75rem; }
.split-cards { display: grid; gap: 1rem; }
.mini-card { display: flex; gap: 1rem; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.1rem 1.2rem; box-shadow: var(--shadow-sm); transition: transform 0.2s; }
.mini-card:hover { transform: translateX(4px); }
.mini-card h4 { font-size: 1.05rem; }
.mini-card p { color: var(--muted); font-size: 0.88rem; }
.mini-thumb { width: 68px; height: 68px; border-radius: 12px; background-size: cover; background-position: center; flex-shrink: 0; }

/* ---------- Category chips ---------- */
.cat-block { margin-bottom: 1.8rem; }
.cat-title { font-size: 1.1rem; color: var(--gold); margin-bottom: 0.8rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { background: #fff; border: 1px solid var(--line); padding: 0.55rem 1rem; border-radius: 999px; font-size: 0.9rem; font-weight: 500; transition: all 0.2s; }
.chip:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 3.5rem 22px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c7d2e0; margin-top: 0.4rem; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero { position: relative; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; padding: clamp(3rem, 6vw, 4.5rem) 0; }
.page-hero.has-bg { background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(9,18,30,0.92) 0%, rgba(14,27,44,0.7) 60%, rgba(28,58,87,0.55) 100%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; }
.page-hero-sub { color: #dbe4ef; max-width: 60ch; margin-top: 0.8rem; font-size: 1.05rem; }

/* ---------- Filter bar ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.4rem; }
.filter-btn { background: #fff; border: 1px solid var(--line); padding: 0.5rem 1.2rem; border-radius: 999px; font-weight: 500; cursor: pointer; font-family: var(--sans); font-size: 0.9rem; transition: all 0.2s; }
.filter-btn:hover { border-color: var(--gold); }
.filter-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }
.service-card.hide { display: none; }

/* ---------- Detail page ---------- */
.detail-hero { position: relative; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); background-size: cover; background-position: center; color: #fff; padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 4.5rem); }
.detail-hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(9,18,30,0.93) 0%, rgba(14,27,44,0.78) 55%, rgba(28,58,87,0.6) 100%); }
.detail-hero .container { position: relative; z-index: 1; }
.detail-hero h1 { color: #fff; }
.breadcrumb { font-size: 0.85rem; color: #aab6c6; margin-bottom: 1.6rem; }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.5; }
.detail-hero-head { display: flex; align-items: center; gap: 1.2rem; }
.detail-icon { font-size: 3rem; }
.detail-hero .eyebrow { color: var(--gold-soft); }
.detail-intro { color: #d7e0ec; max-width: 70ch; margin: 1.4rem 0 1.8rem; font-size: 1.08rem; }

.detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.detail-block { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; margin-bottom: 1.4rem; box-shadow: var(--shadow-sm); }
.detail-block h2 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.block-intro { color: var(--muted); margin-bottom: 1rem; }
.feature-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.7rem 1.4rem; margin-top: 1rem; }
.feature-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; }
.tick { color: var(--gold); font-weight: 700; }
.note-box { background: var(--sand-2); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 1.2rem 1.4rem; color: var(--ink); }

.detail-aside { position: sticky; top: 100px; display: grid; gap: 1.2rem; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.aside-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.aside-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.4rem; }
.highlight-card { background: var(--navy); color: #fff; }
.highlight-card h3 { color: #fff; }
.aside-links { list-style: none; display: grid; gap: 0.6rem; }
.aside-links li { font-size: 0.92rem; }
.aside-links a:hover { color: var(--gold); }

.detail-nav { border-top: 1px solid var(--line); padding: 1.5rem 0; background: #fff; }
.detail-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.detail-nav-link { font-weight: 600; color: var(--navy); }
.detail-nav-link:hover { color: var(--gold); }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: start; }
.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.contact-form-wrap h2 { margin-bottom: 1.4rem; }
.enquiry-form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.enquiry-form label { display: grid; gap: 0.4rem; font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  font-family: var(--sans); font-size: 0.95rem; padding: 0.75rem 0.9rem; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--sand); font-weight: 400; transition: border-color 0.2s;
}
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.contact-list { list-style: none; display: grid; gap: 0.7rem; }
.contact-aside { display: grid; gap: 1.2rem; }
.success-box { text-align: center; padding: 2rem 1rem; }
.success-icon { font-size: 3rem; }
.success-box h2 { margin: 0.8rem 0; }
.success-box p { color: var(--muted); margin-bottom: 1.4rem; }

/* ---------- Error ---------- */
.error-page { padding: clamp(4rem, 10vw, 8rem) 0; }
.error-code { font-family: var(--serif); font-size: 6rem; font-weight: 700; color: var(--gold-soft); line-height: 1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b9c4d4; padding-top: 3.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.5rem; }
.site-footer .brand { color: #fff; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.92rem; margin-bottom: 0.8rem; }
.footer-contact { line-height: 1.9; }
.footer-col h4 { color: #fff; margin-bottom: 1rem; font-size: 1.05rem; }
.footer-col ul { list-style: none; display: grid; gap: 0.55rem; }
.footer-col a:hover { color: var(--gold-soft); }
.site-footer a { color: #b9c4d4; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.4rem 22px; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; }
.footer-disclaimer { opacity: 0.6; }

/* ---------- Hero search + trust ---------- */
.hero-search {
  display: flex; gap: 0.8rem; align-items: flex-end; flex-wrap: wrap;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 16px; padding: 1rem; margin-top: 2.2rem; max-width: 760px;
}
.hs-field { display: flex; flex-direction: column; gap: 0.35rem; flex: 1; min-width: 160px; }
.hs-field label { font-size: 0.78rem; font-weight: 600; color: #dbe4ef; text-transform: uppercase; letter-spacing: 0.05em; }
.hs-field select {
  font-family: var(--sans); font-size: 0.95rem; padding: 0.7rem 0.8rem; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.95); color: var(--ink);
}
.hs-btn { height: 46px; }
.hero-trust { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 1.6rem; color: #cdd9e7; font-size: 0.92rem; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--navy); color: #fff; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 2.2rem 22px; text-align: center; }
.stat strong { display: block; font-family: var(--serif); font-size: 2.2rem; color: var(--gold-soft); }
.stat span { font-size: 0.9rem; color: #b9c4d4; }

/* ---------- Package pricing cards ---------- */
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.6rem; }
.package-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; }
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.package-card.featured { border-color: var(--gold); box-shadow: 0 20px 44px -22px rgba(200,150,47,0.6); }
.package-media { position: relative; height: 190px; background-size: cover; background-position: center; }
.package-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,27,44,0.1), rgba(14,27,44,0.55)); }
.package-tag { position: absolute; top: 1rem; left: 1rem; z-index: 1; background: var(--gold); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em; }
.package-nights { position: absolute; bottom: 0.8rem; left: 1rem; z-index: 1; color: #fff; font-size: 0.85rem; font-weight: 600; }
.package-body { padding: 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.package-body h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.package-list { list-style: none; display: grid; gap: 0.45rem; margin-bottom: 1.2rem; flex: 1; }
.package-list li { font-size: 0.92rem; color: var(--ink); }
.package-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.package-price { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: var(--navy); }
.package-price small { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; color: var(--muted); text-transform: uppercase; display: block; }
.package-price em { font-style: normal; font-size: 0.75rem; color: var(--muted); font-family: var(--sans); }

/* ---------- Experiences gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 215px; gap: 1rem; }
.gallery-item {
  position: relative; border-radius: var(--radius); background-size: cover; background-position: center;
  overflow: hidden; display: flex; align-items: flex-end; box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,27,44,0) 30%, rgba(14,27,44,0.82) 100%); transition: background 0.3s; }
.gallery-item:hover::after { background: linear-gradient(180deg, rgba(14,27,44,0.25) 0%, rgba(11,21,36,0.9) 100%); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-tag {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2; background: var(--gold); color: #fff;
  font-size: 0.7rem; font-weight: 700; padding: 0.28rem 0.7rem; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.gallery-meta { position: absolute; top: 0.85rem; right: 0.85rem; z-index: 2; display: flex; flex-direction: column; gap: 0.35rem; align-items: flex-end; }
.gallery-chip {
  background: rgba(11,21,36,0.55); backdrop-filter: blur(4px); color: #fff; font-size: 0.74rem; font-weight: 600;
  padding: 0.25rem 0.6rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.18);
}
.gallery-chip.price { background: rgba(255,255,255,0.92); color: var(--navy); border-color: transparent; }

.gallery-cap { position: relative; z-index: 1; color: #fff; padding: 1.2rem 1.4rem; width: 100%; }
.gallery-title { display: flex; align-items: center; gap: 0.5rem; font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.gallery-icon { font-size: 1.2rem; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6)); }
.gallery-blurb {
  display: block; font-family: var(--sans); font-size: 0.85rem; font-weight: 400; color: #e7eef6;
  margin-top: 0.35rem; line-height: 1.45; max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
.gallery-link {
  display: block; font-family: var(--sans); font-size: 0.82rem; font-weight: 600; color: var(--gold-soft);
  margin-top: 0.5rem; opacity: 0; transform: translateY(6px); transition: all 0.25s;
}
.gallery-item:hover .gallery-blurb { max-height: 80px; opacity: 1; margin-top: 0.4rem; }
.gallery-item:hover .gallery-link { opacity: 1; transform: translateY(0); }

/* ---------- How it works steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.5rem 1.6rem; text-align: center; box-shadow: var(--shadow-sm); }
.step-num { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: #fff; font-weight: 700; display: grid; place-items: center; box-shadow: 0 6px 14px -6px rgba(200,150,47,0.9); }
.step-icon { font-size: 2.2rem; }
.step h4 { margin: 0.7rem 0 0.4rem; font-size: 1.12rem; }
.step p { color: var(--muted); font-size: 0.9rem; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.8rem; }
.testimonial blockquote { font-size: 1.02rem; color: var(--ink); line-height: 1.65; margin-bottom: 1.2rem; }
.testimonial figcaption { display: flex; flex-direction: column; }
.testimonial figcaption strong { color: var(--navy); }
.testimonial figcaption span { color: var(--muted); font-size: 0.85rem; }

/* ---------- FAQ accordion ---------- */
.narrow { max-width: 820px; }
.faq { display: grid; gap: 0.8rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 1.3rem; box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.1rem 0; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-mark { color: var(--gold); font-size: 1.4rem; transition: transform 0.2s; }
.faq-item[open] .faq-mark { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding: 0 0 1.2rem; margin: 0; }

/* ---------- Responsive ---------- */

/* Tablets / small laptops */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Tablets & mobile nav */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column;
    align-items: stretch; gap: 0; padding: 0.5rem 22px 1.2rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm); display: none; max-height: calc(100vh - 110px); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.55rem 0; border-bottom: 1px solid #f0eadd; }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; }
  .nav-cta { margin-top: 0.6rem; text-align: center; }
  .split, .detail-layout, .contact-layout { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
  .topbar-hours { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: auto; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 2.4rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
}

/* Large phones */
@media (max-width: 680px) {
  .container { padding: 0 18px; }
  .topbar-inner { gap: 1rem; justify-content: center; font-size: 0.78rem; }
  .detail-hero-head { gap: 0.85rem; }
  .detail-icon { font-size: 2.4rem; }
  .detail-nav-inner { flex-wrap: wrap; justify-content: center; text-align: center; }
  .package-foot { flex-direction: column; align-items: flex-start; }
  .package-foot .btn { width: 100%; }
  .breadcrumb { font-size: 0.8rem; }
}

/* Small phones */
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.6rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
  .stat strong { font-size: 1.8rem; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .gallery-item.wide { grid-column: span 1; }
  .hero-search { flex-direction: column; align-items: stretch; gap: 0.7rem; padding: 0.9rem; }
  .hs-btn { width: 100%; }
  .hero-actions .btn { flex: 1; text-align: center; justify-content: center; }
  .hero-trust { gap: 0.9rem 1.2rem; font-size: 0.85rem; }
  .card-grid { grid-template-columns: 1fr; }
  .card-media { height: 200px; }
  .section-head { margin-bottom: 2.2rem; }
}

/* Very small phones */
@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .brand-text { font-size: 1.05rem; }
  .topbar-item:nth-child(2) { display: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; gap: 1.1rem; }
}
