/* ============================================================
   LARA TRAVEL — Complete stylesheet
   Colours: Navy #1a3a6b | Sky #2b7fc1 | Orange #e8830a
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,500&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ── Reset & base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: #1c2b3a; background: #fffdf9; line-height: 1.65; overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: 'DM Sans', sans-serif; border: none; background: none; }
ul   { list-style: none; }
input, select { font-family: 'DM Sans', sans-serif; }

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --navy:   #1a3a6b;
  --sky:    #2b7fc1;
  --orange: #e8830a;
  --sand:   #f7f3ed;
  --cream:  #fffdf9;
  --muted:  #5a6a7a;
  --border: #dce4ee;
  --r:      12px;
  --r-lg:   20px;
  --sh:     0 4px 24px rgba(26,58,107,.12);
  --sh-lg:  0 12px 48px rgba(26,58,107,.20);
  --t:      .25s ease;
}

/* ── Utility ─────────────────────────────────────────────── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.sec         { padding: 72px 0; }
.sec-sm      { padding: 48px 0; }

.sec-label {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: 14px;
}
.sec-sub {
  font-size: 1rem; color: var(--muted);
  max-width: 580px; margin: 0 auto 36px; line-height: 1.7;
}

/* ── Buttons (only two variants used site-wide) ──────────── */
.btn-orange {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 22px; border-radius: 50px;
  background: var(--orange); color: #fff;
  font-size: .88rem; font-weight: 700;
  transition: var(--t); white-space: nowrap;
  border: none; cursor: pointer;
}
.btn-orange:hover { background: #f5a83a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,131,10,.35); }

.btn-navy {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 22px; border-radius: 50px;
  background: var(--navy); color: #fff;
  font-size: .88rem; font-weight: 700;
  transition: var(--t); white-space: nowrap;
  border: none; cursor: pointer;
}
.btn-navy:hover { background: var(--sky); transform: translateY(-2px); }

.btn-white-outline {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 22px; border-radius: 50px;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.7);
  font-size: .88rem; font-weight: 700;
  transition: var(--t); white-space: nowrap;
  cursor: pointer;
}
.btn-white-outline:hover { background: #fff; color: var(--navy); }

.btn-navy-outline {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 22px; border-radius: 50px;
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
  font-size: .88rem; font-weight: 700;
  transition: var(--t); white-space: nowrap;
  cursor: pointer;
}
.btn-navy-outline:hover { background: var(--navy); color: #fff; }

/* ============================================================
   HEADER — single row, logo + nav tabs + 3 CTAs
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(26,58,107,.08);
}

.hdr-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  height: 72px;          /* fixed header height */
}

/* Logo */
.hdr-logo img {
  height: 56px;
  width: auto;
  display: block;
}

/* Nav tabs — centred, hidden on mobile */
.hdr-nav { display: none; }

/* CTA group — 3 buttons, hidden on mobile */
.hdr-ctas { display: none; }

/* Mobile: only show quote button + hamburger */
.hdr-mobile-quote {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hamburger */
.hdr-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hdr-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--t);
}

/* ── Mobile nav drawer ─────────────────────────────────── */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 998;
  overflow-y: auto;
  padding: 0 0 40px;
  border-top: 1px solid var(--border);
}
.mobile-drawer.open { display: block; }

.mobile-drawer ul li a {
  display: block;
  padding: 16px 24px;
  font-size: 1rem; font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.mobile-drawer ul li a:hover { color: var(--sky); background: #f5f8ff; }

.mobile-drawer-ctas {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-drawer-ctas a,
.mobile-drawer-ctas button {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
}

/* ── Desktop header (≥ 960px) ─────────────────────────── */
@media (min-width: 960px) {
  .hdr-inner { padding: 0 32px; gap: 0; }

  .hdr-logo { flex-shrink: 0; margin-right: 28px; }
  .hdr-logo img { height: 60px; }

  /* Nav fills remaining space */
  .hdr-nav {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 0;
  }
  .hdr-nav a {
    font-size: .9rem; font-weight: 600;
    color: var(--navy);
    padding: 0 12px;
    height: 72px;
    display: flex; align-items: center;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: var(--t);
  }
  .hdr-nav a:hover { color: var(--sky); border-bottom-color: var(--sky); }

  /* 3 CTA buttons */
  .hdr-ctas {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: 16px;
  }
  .hdr-ctas .btn-orange  { padding: 9px 18px; font-size: .82rem; }
  .hdr-ctas .btn-navy    { padding: 9px 18px; font-size: .82rem; }
  .hdr-ctas .btn-wa {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 18px; border-radius: 50px;
    background: #25d366; color: #fff;
    font-size: .82rem; font-weight: 700;
    white-space: nowrap; transition: var(--t);
    border: none; cursor: pointer;
  }
  .hdr-ctas .btn-wa:hover { background: #1fb757; transform: translateY(-1px); }

  /* Hide mobile-only items */
  .hdr-mobile-quote { display: none; }
  .hdr-hamburger    { display: none; }
}

/* ── Hero offset ─────────────────────────────────────────── */
/* Every section below the header needs top padding = header height */
#hero { padding-top: 72px; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(155deg, rgba(26,58,107,.82) 0%, rgba(26,58,107,.50) 55%, rgba(14,30,55,.72) 100%),
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1800&q=85') center/cover no-repeat;
}
.hero-inner {
  position: relative; z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 60px 20px 48px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .72rem; font-weight: 700;
  color: #fff; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.4)} }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 700; color: #fff;
  line-height: 1.1; margin-bottom: 18px;
}
.hero-title em { font-style: italic; color: #f5a83a; }
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.88);
  max-width: 520px; line-height: 1.7; margin-bottom: 28px;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 32px;
}
.hero-btns .btn-orange,
.hero-btns .btn-white-outline { padding: 13px 26px; font-size: .95rem; }

.hero-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.trust-pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 10px 12px;
  color: #fff; font-size: .8rem;
}

/* Quote panel — only shown on desktop */
.hero-panel {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 28px 24px;
  display: none;
}
.panel-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); color: #fff;
  border-radius: 50px; padding: 4px 14px;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 14px;
}
.panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--navy);
  margin-bottom: 18px; line-height: 1.3;
}
.fgroup { margin-bottom: 12px; }
.fgroup label {
  display: block; font-size: .72rem; font-weight: 700;
  color: var(--muted); letter-spacing: .07em;
  text-transform: uppercase; margin-bottom: 5px;
}
.fgroup input,
.fgroup select {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: .9rem; color: #1c2b3a;
  background: #f9fbff; transition: var(--t);
  appearance: none; min-height: 44px;
}
.fgroup input:focus,
.fgroup select:focus {
  border-color: var(--sky); outline: none;
  box-shadow: 0 0 0 3px rgba(43,127,193,.1);
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.panel-submit {
  width: 100%; padding: 14px;
  background: var(--orange); color: #fff;
  border-radius: 10px; font-size: .95rem; font-weight: 700;
  margin-top: 6px; transition: var(--t);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px;
}
.panel-submit:hover { background: #f5a83a; transform: translateY(-2px); }

/* ── Quick quote strip under hero (mobile only) ──────────── */
#quick-quote {
  background: #fff;
  padding: 28px 20px;
  box-shadow: 0 4px 20px rgba(26,58,107,.1);
}

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr 400px;
    align-items: center;
    padding: 80px 32px 60px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .hero-trust { grid-template-columns: repeat(4, 1fr); }
  .hero-panel { display: block; }
  #quick-quote { display: none; }
}

/* ============================================================
   BOOKING TILES
   ============================================================ */
#booking-tiles { background: var(--sand); }
.tiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 36px;
}
.tile {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--t);
}
.tile-wide { grid-column: span 2; aspect-ratio: 16/7; }
.tile:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.tile-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.tile:hover .tile-bg { transform: scale(1.06); }
.tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,58,107,.88) 0%, transparent 65%);
}
.tile-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px;
}
.tile-icon { font-size: 1.4rem; margin-bottom: 4px; }
.tile-name {
  font-family: 'Playfair Display', serif;
  font-size: .95rem; font-weight: 700;
  color: #fff; line-height: 1.2;
}
.tile-desc { font-size: .72rem; color: rgba(255,255,255,.75); margin-top: 2px; }

@media (min-width: 600px)  { .tiles-grid { grid-template-columns: repeat(3, 1fr); } .tile-wide { aspect-ratio: 21/8; } }
@media (min-width: 960px)  { .tiles-grid { grid-template-columns: repeat(5, 1fr); } .tile-wide { grid-column: span 2; } }

/* ============================================================
   SPECIALS
   ============================================================ */
#specials { background: #fff; }
.filter-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.fbtn {
  padding: 7px 16px; border-radius: 50px;
  border: 1.5px solid var(--border);
  background: #fff; color: var(--muted);
  font-size: .8rem; font-weight: 600;
  transition: var(--t); cursor: pointer; white-space: nowrap;
  min-height: 38px;
}
.fbtn.active, .fbtn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.scard {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
  transition: var(--t);
}
.scard:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.scard-img { position: relative; height: 200px; overflow: hidden; }
.scard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.scard:hover .scard-img img { transform: scale(1.05); }
.sbadge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 11px; border-radius: 50px;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
}
.b-beach  { background: #e8f0ff; color: #1a3a8a; }
.b-family { background: #e8f4f8; color: #1a6a8a; }
.b-honey  { background: #fde8f0; color: #a0174a; }
.b-rec    { background: #e8f0e8; color: #2a5a2a; }
.b-local  { background: #f0e8fe; color: #5a1a8a; }
.b-limit  { background: #fef3e2; color: #8a4a00; }

.scard-body { padding: 18px; }
.scard-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.scard-line  { font-size: .83rem; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.scard-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.scard-from  { font-size: .7rem; color: var(--muted); }
.scard-price { font-size: 1.15rem; font-weight: 700; color: var(--orange); }
.scard-period{ font-size: .75rem; color: var(--muted); }
.btn-enquire {
  width: 100%; padding: 12px;
  background: var(--navy); color: #fff;
  border-radius: 10px; font-size: .85rem; font-weight: 700;
  transition: var(--t); min-height: 46px;
  display: flex; align-items: center; justify-content: center;
}
.btn-enquire:hover { background: var(--sky); }

@media (min-width: 600px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .cards-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   CONSULTANTS
   ============================================================ */
#consultants { background: var(--sand); }
.consult-banner {
  background: linear-gradient(135deg, var(--navy), var(--sky));
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 40px;
}
.consult-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: #fff; margin-bottom: 8px;
}
.consult-banner p { color: rgba(255,255,255,.82); font-size: .92rem; margin-bottom: 20px; }
.consult-banner .btn-orange { margin: 0 auto; }

.consult-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.ccard {
  background: #fff; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh);
  display: flex; flex-direction: row;
}
.ccard-photo {
  width: 100px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ccard-avatar { font-size: 2.6rem; }
.ccard-spec {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.45);
  color: #fff; font-size: .58rem; font-weight: 700;
  text-align: center; padding: 4px 4px;
  text-transform: uppercase; letter-spacing: .04em;
  line-height: 1.3;
}
.ccard-body { padding: 16px; flex: 1; }
.ccard-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.ccard-role { font-size: .75rem; color: var(--sky); font-weight: 600; margin-bottom: 8px; }
.ccard-bio  { font-size: .82rem; color: var(--muted); margin-bottom: 12px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ccard-btns { display: flex; gap: 8px; }
.cbtn {
  flex: 1; padding: 9px 8px; border-radius: 8px;
  font-size: .75rem; font-weight: 700;
  text-align: center; transition: var(--t);
  min-height: 38px; display: flex; align-items: center; justify-content: center;
}
.cbtn-p { background: var(--orange); color: #fff; }
.cbtn-p:hover { background: #f5a83a; }
.cbtn-s { background: var(--sand); color: var(--navy); border: 1px solid var(--border); }
.cbtn-s:hover { background: var(--navy); color: #fff; }

@media (min-width: 600px)  { .consult-banner { display: flex; align-items: center; justify-content: space-between; text-align: left; } .consult-banner p { margin-bottom: 0; } }
@media (min-width: 960px)  { .consult-grid { grid-template-columns: repeat(3, 1fr); } .ccard { flex-direction: column; } .ccard-photo { width: 100%; height: 160px; } .ccard-bio { -webkit-line-clamp: unset; } }

/* ============================================================
   QUOTE JOURNEY
   ============================================================ */
#quote-journey {
  background: linear-gradient(160deg, var(--navy), #0e2547);
  padding: 72px 0;
}
.journey-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0;
}
.jstep { text-align: center; }
.jstep-num {
  width: 54px; height: 54px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: #fff;
  margin: 0 auto 12px;
  box-shadow: 0 4px 16px rgba(232,131,10,.4);
}
.jstep-icon  { font-size: 1.2rem; margin-bottom: 6px; }
.jstep-title { font-family: 'Playfair Display', serif; font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.jstep-desc  { font-size: .8rem; color: rgba(255,255,255,.7); line-height: 1.5; }
.journey-cta { text-align: center; }
.journey-cta .btn-orange { padding: 14px 36px; font-size: .95rem; }

@media (min-width: 600px) { .journey-steps { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   HOLIDAY STYLES
   ============================================================ */
#holiday-styles { background: #fffdf9; }
.styles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.stycard {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; aspect-ratio: 3/4; cursor: pointer;
  transition: var(--t);
}
.stycard:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.stycard-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s; }
.stycard:hover .stycard-bg { transform: scale(1.06); }
.stycard-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,58,107,.9) 0%, transparent 55%); }
.stycard-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 14px; }
.stycard-icon { font-size: 1.5rem; margin-bottom: 4px; }
.stycard-name { font-family: 'Playfair Display', serif; font-size: .95rem; font-weight: 700; color: #fff; line-height: 1.2; }

@media (min-width: 600px) { .styles-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   TRUST
   ============================================================ */
#trust { background: #fff; }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.tcard {
  background: var(--sand); border-radius: var(--r);
  padding: 20px 16px; text-align: center;
  border: 1px solid transparent; transition: var(--t);
}
.tcard:hover { border-color: var(--sky); transform: translateY(-3px); box-shadow: var(--sh); }
.tcard-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  border-radius: 13px; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.tcard-title { font-family: 'Playfair Display', serif; font-size: .93rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.tcard-text  { font-size: .8rem; color: var(--muted); line-height: 1.55; }

.stats-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  border-radius: var(--r-lg); overflow: hidden;
}
.stat {
  padding: 24px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.stat:nth-child(2n) { border-right: none; }
.stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
.stat-n { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #f5a83a; display: block; margin-bottom: 4px; }
.stat-l { font-size: .78rem; color: rgba(255,255,255,.8); }

@media (min-width: 600px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } .stats-strip { grid-template-columns: repeat(4, 1fr); } .stat { border-bottom: none; } .stat:nth-child(2n) { border-right: 1px solid rgba(255,255,255,.15); } .stat:last-child { border-right: none; } }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--sand); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.cdetail {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; background: #fff;
  border-radius: var(--r); border: 1px solid var(--border);
  margin-bottom: 12px;
}
.cdetail-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.cdetail-lbl { font-size: .7rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 2px; }
.cdetail-val { font-size: .9rem; font-weight: 600; color: var(--navy); }
.cta-box {
  background: linear-gradient(135deg, var(--navy), var(--sky));
  border-radius: var(--r-lg); padding: 30px 22px; text-align: center;
}
.cta-box h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #fff; margin-bottom: 8px; }
.cta-box p  { color: rgba(255,255,255,.8); margin-bottom: 22px; font-size: .88rem; }
.cta-box-btns { display: flex; flex-direction: column; gap: 10px; }
.ctabtn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px; border-radius: 10px;
  font-size: .9rem; font-weight: 700; transition: var(--t); min-height: 50px;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.ctabtn-call  { background: var(--orange); color: #fff; }
.ctabtn-call:hover  { background: #f5a83a; }
.ctabtn-wa    { background: #25d366; color: #fff; }
.ctabtn-wa:hover    { background: #1fb757; }
.ctabtn-quote { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.ctabtn-quote:hover { background: #fff; color: var(--navy); }

@media (min-width: 960px) { .contact-grid { grid-template-columns: 1.2fr 1fr; align-items: start; } }

/* ============================================================
   FINAL CTA
   ============================================================ */
#final-cta {
  background:
    linear-gradient(160deg, rgba(26,58,107,.93), rgba(14,37,71,.97)),
    url('https://images.unsplash.com/photo-1530521954074-e64f6810b32d?w=1600&q=80') center/cover no-repeat;
  text-align: center;
  padding: 80px 20px;
}
#final-cta .sec-title { color: #fff; }
#final-cta .sec-sub   { color: rgba(255,255,255,.78); }
.final-btns {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 52px 0 24px;
}
.footer-logo img { height: 52px; filter: brightness(0) invert(1); opacity: .85; margin-bottom: 14px; }
.footer-brand { font-size: .85rem; line-height: 1.7; margin-bottom: 20px; max-width: 320px; }
.footer-socials { display: flex; gap: 10px; margin-bottom: 36px; }
.fsoc {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: #fff; transition: var(--t);
}
.fsoc:hover { background: var(--orange); }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.footer-col h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.6); transition: var(--t); }
.footer-col ul li a:hover { color: #f5a83a; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; font-size: .78rem; text-align: center; line-height: 1.8; }

@media (min-width: 600px) { .footer-cols { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; } .footer-cols { display: contents; } .footer-socials { margin-bottom: 0; } }

/* ============================================================
   MODAL
   ============================================================ */
.modal-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(14,37,71,.8);
  backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: flex-end;
  justify-content: center;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 28px 20px 100px;
  width: 100%; max-height: 92svh;
  overflow-y: auto;
  animation: slideUp .32s ease;
  position: relative;
}
@keyframes slideUp { from { transform: translateY(100%); } }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--sand); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--t);
}
.modal-close:hover { background: var(--orange); color: #fff; }
.modal-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 4px; }
.modal-sub   { font-size: .88rem; color: var(--muted); margin-bottom: 20px; }

@media (min-width: 600px) {
  .modal-backdrop { align-items: center; padding: 20px; }
  .modal { border-radius: 20px; padding: 36px; max-width: 520px; max-height: 88vh; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
