/* ============================================================
   Dan Blackburn Property — UK Property Sourcing Landing Page
   Design system: trust navy + action orange on clean white
   ============================================================ */

:root {
  /* Brand palette — psychology: navy = trust/stability,
     orange = action/energy (CTAs only), white = clarity */
  --navy-900: #0A2A47;
  --navy-800: #0E3A62;
  --navy-700: #14497B;
  --navy-100: #DCE9F4;
  --navy-050: #EFF6FB;
  --ink: #16324A;
  --body: #46596C;
  --muted: #6E8093;
  --line: #E3EBF2;
  --bg: #FFFFFF;
  --bg-tint: #F5F9FC;
  --accent: #F26B1D;
  --accent-dark: #D9560E;
  --accent-050: #FEF1E8;
  --gold: #F5B942;
  --green: #1E9E6A;
  --green-050: #E8F7F0;
  --whatsapp: #25D366;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(14, 58, 98, 0.06);
  --shadow-md: 0 8px 28px rgba(14, 58, 98, 0.10);
  --shadow-lg: 0 18px 48px rgba(14, 58, 98, 0.16);
  --font-head: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--navy-700); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.2; font-weight: 700; }
ul[role="list"] { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid rgba(242, 107, 29, 0.55); outline-offset: 2px; border-radius: 4px; }

.container { width: min(1160px, 100% - 40px); margin-inline: auto; }
.center { text-align: center; }
.desk-only { display: inline; }

/* Anchor offset so sticky header never covers section titles */
section[id], main[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-family: var(--font-body);
  border-radius: 999px; transition: all 0.25s ease;
  padding: 13px 26px; font-size: 15.5px; line-height: 1.2;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #F97C31, var(--accent) 55%, var(--accent-dark));
  color: #fff;
  box-shadow: 0 6px 18px rgba(242, 107, 29, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(242, 107, 29, 0.45); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: #fff; color: var(--navy-800);
  border: 1.5px solid var(--navy-100);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--navy-800); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 16.5px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
/* NOTE: no backdrop-filter here — it would turn the header into the
   containing block for the position:fixed mobile nav drawer and clip it.
   The glass effect is applied on desktop widths only (below). */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
@media (min-width: 901px) {
  .site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 20px rgba(14, 58, 98, 0.07); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { display: grid; place-items: center; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-head); font-size: 17px; color: var(--ink); font-weight: 700; letter-spacing: -0.2px; }
.brand-text small { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a:not(.nav-cta) {
  font-weight: 600; font-size: 14.5px; color: var(--ink);
  position: relative; padding: 6px 0;
}
.main-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2.5px; width: 0;
  background: var(--accent); border-radius: 2px; transition: width 0.25s ease;
}
.main-nav > a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { margin-left: 6px; padding: 11px 22px; font-size: 14.5px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; z-index: 1001; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: 0.3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
/* Sits BELOW the fixed header (z 900): the header creates a stacking
   context, so the nav drawer inside it can never rise above a higher
   sibling — the overlay must stay underneath instead */
.nav-overlay { position: fixed; inset: 0; background: rgba(10, 42, 71, 0.45); z-index: 850; opacity: 0; transition: opacity 0.3s; }
.nav-overlay.show { opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 48px) 0 64px;
  background: url("../images/hero-bg.jpg") center center / cover no-repeat;
}
/* White veil: the Tower Bridge skyline stays softly visible while
   text keeps full contrast on an effectively white background */
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(242, 107, 29, 0.05), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.87) 0%, rgba(250, 253, 255, 0.90) 100%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--navy-700);
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.eyebrow .dot { color: var(--muted); }
.flag { font-size: 14px; }

.hero h1 { font-size: clamp(34px, 4.6vw, 54px); font-weight: 800; letter-spacing: -1.2px; margin-bottom: 20px; }
.accent-underline { position: relative; white-space: nowrap; z-index: 0; }
.accent-underline::after {
  content: ""; position: absolute; left: 2px; right: 2px; bottom: 4px; height: 10px;
  background: rgba(242, 107, 29, 0.22); border-radius: 5px; z-index: -1;
}
.hero-sub { font-size: 18px; max-width: 54ch; margin-bottom: 30px; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-trust li { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink); }
.tick { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* Hero form column */
.hero-form-col { scroll-margin-top: calc(var(--header-h) + 12px); }
.book-form-hero { padding: 0 0 26px; overflow: hidden; }
.book-form-hero .form-head-strip {
  background: linear-gradient(90deg, var(--accent-050), #FFF7EF);
  color: #A34A12; font-size: 12.5px; font-weight: 700; text-align: center;
  padding: 10px 16px; border-bottom: 1px solid #FBDFC9; margin-bottom: 22px;
}
.book-form-hero h3, .book-form-hero .form-sub, .book-form-hero .form-row,
.book-form-hero > .form-field, .book-form-hero .consent, .book-form-hero .consent-error,
.book-form-hero .btn, .book-form-hero .form-status, .book-form-hero .form-secure {
  margin-left: 28px; margin-right: 28px;
}
.book-form-hero h3 { font-size: 21px; }
.book-form-hero .form-sub { margin-bottom: 18px; }
.book-form-hero .form-field { margin-bottom: 12px; }
.book-form-hero .form-field label { font-size: 13px; margin-bottom: 5px; }
.book-form-hero .form-field input, .book-form-hero .form-field select, .book-form-hero .form-field textarea {
  padding: 11px 13px; font-size: 14.5px; border-radius: 10px;
}
.book-form-hero textarea { min-height: 56px; }
.book-form-hero .consent { margin-top: 2px; margin-bottom: 16px; }
.book-form-hero .consent span { font-size: 12px; }
.book-form-hero .btn-block { width: calc(100% - 56px); }
.book-form-hero .form-secure { margin-top: 13px; }

.float-card {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 14px; padding: 13px 18px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  animation: floaty 5s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 14.5px; color: var(--ink); font-family: var(--font-head); }
.float-card small { font-size: 12px; color: var(--muted); }
.float-card-1 { top: 26px; left: -34px; }
.float-card-2 { bottom: 34px; right: -18px; animation-delay: 2.5s; }
.float-icon {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex-shrink: 0;
}
.float-icon.yield { background: var(--green-050); color: var(--green); }
.float-icon.key { background: var(--accent-050); color: var(--accent); }

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--navy-800); padding: 38px 0 14px; color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(30px, 3.4vw, 42px); color: #fff; letter-spacing: -0.5px;
}
.stat-label { font-size: 13.5px; color: #A8C4DC; font-weight: 500; }
.stats-note { font-size: 11.5px; color: #7FA1BF; text-align: center; padding-top: 18px; }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: 88px 0; }
.section-tint { background: var(--bg-tint); }
.section-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.kicker {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.kicker-light { color: #F8A66F; }
.section-head h2, .about-copy h2, .book-copy h2 { font-size: clamp(27px, 3.4vw, 40px); letter-spacing: -0.8px; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--body); }

/* ============================================================
   WHY UK
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 56px; }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--navy-050); color: var(--navy-700); margin-bottom: 18px;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 18.5px; margin-bottom: 10px; }
.why-card p { font-size: 14.5px; }

/* Comparison table */
.compare-wrap { display: flex; justify-content: center; }
.compare-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 36px; width: 100%; max-width: 920px;
}
.compare-card h3 { font-size: 21px; margin-bottom: 22px; text-align: center; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare-table th, .compare-table td { padding: 13px 16px; text-align: left; font-size: 14.5px; }
.compare-table thead th {
  font-family: var(--font-head); font-size: 14px; color: var(--ink);
  border-bottom: 2px solid var(--line); white-space: nowrap;
}
.th-flag { margin-right: 6px; }
.compare-table tbody tr { border-bottom: 1px solid var(--line); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table td:first-child { font-weight: 600; color: var(--ink); }
.uk-col { background: var(--green-050); font-weight: 600; color: var(--ink); }
.th-uk { background: var(--green-050); border-radius: 10px 10px 0 0; }
.uk-col small { display: block; font-weight: 500; color: var(--muted); font-size: 12px; }
.fine-print { font-size: 12px; color: var(--muted); margin-top: 18px; line-height: 1.55; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--gold));
  opacity: 0; transition: opacity 0.28s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: var(--accent-050); color: var(--accent); margin-bottom: 16px;
}
.service-icon svg { width: 25px; height: 25px; }
.service-card h3 { font-size: 18px; margin-bottom: 9px; }
.service-card p { font-size: 14.5px; }

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.process-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.process-media { position: relative; }
.process-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); transform: rotate(1.5deg);
}
.process-photo img { width: 100%; height: 480px; object-fit: cover; }
.process-badge {
  position: absolute; top: 24px; left: -18px;
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 13px 18px; box-shadow: var(--shadow-md); max-width: 270px;
}
.process-badge strong { display: block; font-family: var(--font-head); font-size: 14.5px; color: var(--ink); }
.process-badge small { font-size: 12px; color: var(--muted); }
.process-badge-icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: var(--green-050); color: var(--green);
  display: grid; place-items: center;
}
.process-quote {
  position: absolute; bottom: -22px; right: 8px;
  background: var(--navy-800); color: #fff; border-radius: 14px;
  padding: 16px 20px; box-shadow: var(--shadow-md); max-width: 300px;
}
.process-quote p { font-size: 13.5px; line-height: 1.55; font-style: italic; color: #E4EEF6; }
.process-quote span { display: block; margin-top: 8px; font-size: 12px; font-weight: 600; color: #A8C4DC; }

.steps { position: relative; }
.steps::before {
  content: ""; position: absolute; left: 27px; top: 16px; bottom: 16px; width: 2px;
  background: linear-gradient(180deg, var(--navy-100), var(--navy-100) 85%, transparent);
}
.step { display: flex; gap: 26px; padding-bottom: 38px; position: relative; }
.step:last-child { padding-bottom: 0; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  background: #fff; border: 2px solid var(--navy-100);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--navy-800);
  position: relative; z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.step:hover .step-num { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.step-body h3 { font-size: 19px; margin-bottom: 7px; }
.step-body p { font-size: 15px; max-width: 58ch; }
.process-cta { text-align: center; margin-top: 64px; }
.process-cta p { font-size: 13.5px; color: var(--muted); margin-top: 12px; }

/* ============================================================
   DEALS
   ============================================================ */
.deals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 22px; }
.deal-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex; flex-direction: column;
}
.deal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.deal-media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.deal-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.deal-card:hover .deal-media img { transform: scale(1.06); }
.deal-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255, 255, 255, 0.95); color: var(--navy-800);
  font-size: 12px; font-weight: 700; letter-spacing: 0.4px;
  padding: 6px 13px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.deal-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.deal-body h3 { font-size: 18.5px; margin-bottom: 6px; }
.deal-loc { display: flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.deal-loc svg { color: var(--accent); flex-shrink: 0; }
.deal-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: auto; border-top: 1px solid var(--line); padding-top: 16px; }
.deal-stats dt { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.deal-stats dd { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; color: var(--ink); margin-top: 3px; white-space: nowrap; }
.yield-num { color: var(--green) !important; }

.deals-cta { margin-top: 40px; }
.deals-cta-inner {
  background: linear-gradient(120deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius-lg); padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  box-shadow: var(--shadow-md);
}
.deals-cta-inner h3 { color: #fff; font-size: 21px; margin-bottom: 6px; }
.deals-cta-inner p { color: #BBD3E7; font-size: 15px; }

/* ============================================================
   BUDGET CALCULATOR
   ============================================================ */
.calc-card {
  max-width: 940px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.calc-controls { padding: 38px 40px; }
.calc-label { font-size: 14px; font-weight: 600; color: var(--ink); display: block; margin-bottom: 6px; }
.calc-cur {
  background: var(--navy-050); color: var(--navy-700); font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 999px; margin-left: 4px; letter-spacing: 0.5px;
}
.calc-value {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 4vw, 40px);
  color: var(--navy-800); letter-spacing: -0.8px; margin-bottom: 16px;
}
#calcBudget {
  width: 100%; accent-color: var(--accent); height: 34px; cursor: pointer;
}
.calc-range-marks { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 2px; }
.calc-toggle-label { font-size: 14px; font-weight: 600; color: var(--ink); margin: 24px 0 10px; }
.calc-toggle { display: flex; gap: 10px; flex-wrap: wrap; }
.calc-mode {
  border: 1.5px solid var(--line); background: #fff; color: var(--body);
  font-size: 14px; font-weight: 600; padding: 10px 18px; border-radius: 999px;
  transition: all 0.2s ease;
}
.calc-mode:hover { border-color: var(--navy-700); }
.calc-mode.active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.calc-results {
  background: linear-gradient(160deg, var(--navy-050), #E5F0F9);
  padding: 34px 36px; display: flex; flex-direction: column; gap: 16px;
  border-left: 1px solid var(--line);
}
.calc-result { padding-bottom: 14px; border-bottom: 1px solid rgba(20, 73, 123, 0.12); }
.calc-result span { display: block; font-size: 12.5px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.calc-result strong { font-family: var(--font-head); font-weight: 800; font-size: 25px; color: var(--ink); letter-spacing: -0.4px; }
.calc-green { color: var(--green) !important; }
.calc-results .btn { margin-top: 4px; }
.calc-note { font-size: 11px; color: var(--muted); line-height: 1.55; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-photo {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
}
.about-photo img { width: 100%; height: 560px; object-fit: cover; object-position: top; }
.about-badge {
  position: absolute; bottom: 28px; right: -20px;
  background: #fff; border-radius: 14px; border: 1px solid var(--line);
  padding: 16px 20px; box-shadow: var(--shadow-md); max-width: 230px;
}
.about-badge strong { font-family: var(--font-head); font-size: 15px; color: var(--ink); display: block; margin-bottom: 4px; line-height: 1.3; }
.about-badge small { font-size: 12.5px; color: var(--muted); }
.about-copy h2 { margin-bottom: 18px; }
.about-copy p { margin-bottom: 16px; font-size: 16px; }
.about-points { margin: 22px 0 28px; display: grid; gap: 12px; }
.about-points li { display: flex; gap: 11px; font-size: 15px; font-weight: 500; color: var(--ink); align-items: flex-start; }
.about-points .tick { margin-top: 3px; }
.about-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 17px; letter-spacing: 3px; margin-bottom: 14px; }
.testi-card blockquote { font-size: 15px; color: var(--body); flex: 1; }
.testi-card figcaption { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.testi-card figcaption strong { display: block; font-family: var(--font-head); font-size: 15px; color: var(--ink); }
.testi-card figcaption span { font-size: 13px; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 860px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--navy-100); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 24px; cursor: pointer; list-style: none;
  font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy-050); position: relative; transition: transform 0.3s ease, background 0.3s ease;
}
.faq-chev::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 9px; height: 9px; border-right: 2.2px solid var(--navy-700); border-bottom: 2.2px solid var(--navy-700);
  transform: translate(-50%, -65%) rotate(45deg); transition: border-color 0.3s ease;
}
.faq-item[open] .faq-chev { transform: rotate(180deg); background: var(--accent); }
.faq-item[open] .faq-chev::before { border-color: #fff; }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { font-size: 15px; }
.faq-more { text-align: center; margin-top: 34px; }
.faq-more p { font-size: 15px; margin-bottom: 12px; color: var(--muted); }

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.section-book {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(242, 107, 29, 0.12), transparent 55%),
    linear-gradient(135deg, var(--navy-900), var(--navy-800) 70%);
  color: #C9DBEA;
}
.book-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: start; }
.book-copy h2 { color: #fff; margin-bottom: 14px; }
.book-sub { font-size: 16.5px; color: #A8C4DC; margin-bottom: 24px; }
.book-points { display: grid; gap: 14px; margin-bottom: 36px; }
.book-points li { display: flex; gap: 13px; font-size: 15.5px; color: #E4EEF6; align-items: flex-start; }
.point-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: rgba(30, 158, 106, 0.25); color: #5BD6A4;
  display: grid; place-items: center; font-size: 13px; font-weight: 800;
}
.book-alt { border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 26px; }
.book-alt p { font-size: 14.5px; color: #A8C4DC; margin-bottom: 12px; }
.book-alt-links { display: flex; gap: 14px; flex-wrap: wrap; }
.alt-link {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: 14.5px;
  border: 1.5px solid rgba(255, 255, 255, 0.22); color: #fff;
  transition: all 0.25s ease;
}
.alt-link:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.5); }
.alt-link.whatsapp:hover { background: var(--whatsapp); border-color: var(--whatsapp); }

/* Booking-section media card */
.book-media { position: relative; }
.book-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}
.book-photo img { width: 100%; height: 520px; object-fit: cover; }
.book-media .float-card { border: none; }
.book-media-cta {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: -24px;
  white-space: nowrap;
}
.book-media-cta:hover { transform: translateX(-50%) translateY(-2px); }

/* Form card */
.book-form {
  background: #fff; border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-lg);
}
.book-form h3 { font-size: 23px; margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }

.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.req { color: var(--accent); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: 11px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: #FBFDFE; transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none; -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%2346596C' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center;
  padding-right: 38px;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: #9FB0C0; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--navy-700); background: #fff;
  box-shadow: 0 0 0 4px rgba(20, 73, 123, 0.10);
}
.form-field input.invalid, .form-field select.invalid { border-color: #E0492E; background: #FFF7F5; }
.field-error { display: none; font-size: 12.5px; color: #C93A20; margin-top: 5px; font-weight: 500; }
.field-error.show { display: block; }
textarea { resize: vertical; min-height: 74px; }

.consent { display: flex; gap: 11px; align-items: flex-start; margin: 4px 0 20px; cursor: pointer; }
.consent input {
  width: 19px; height: 19px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0;
}
.consent span { font-size: 13px; color: var(--body); line-height: 1.5; }
.consent-error { margin: -12px 0 14px; }

#submitBtn { position: relative; }
.btn-spinner {
  display: none; width: 18px; height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.4); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.7s linear infinite;
}
.btn.loading .btn-spinner { display: inline-block; }
.btn.loading .btn-label { opacity: 0.75; }
.btn.loading { pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-status { display: none; margin-top: 14px; font-size: 14px; font-weight: 600; padding: 12px 16px; border-radius: 10px; }
.form-status.ok { display: block; background: var(--green-050); color: #157A51; }
.form-status.err { display: block; background: #FDECEC; color: #C93A20; }
.form-secure {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-size: 12px; color: var(--muted); margin-top: 16px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { padding: 78px 0; background: linear-gradient(180deg, #FDFEFF, var(--bg-tint)); text-align: center; }
.final-cta h2 { font-size: clamp(25px, 3vw, 36px); margin-bottom: 14px; letter-spacing: -0.6px; }
.final-cta p { font-size: 16px; margin-bottom: 28px; max-width: 52ch; margin-inline: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-900); color: #9DB8CE; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 48px;
  padding: 64px 0 44px;
}
.brand-footer .brand-text strong { color: #fff; }
.brand-footer .brand-text small { color: #7FA1BF; }
.footer-brand > p { font-size: 14.5px; margin: 18px 0 22px; max-width: 40ch; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.07); color: #C9DBEA;
  transition: all 0.25s ease;
}
.footer-social a:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-links h4, .footer-contact h4 {
  color: #fff; font-size: 15px; margin-bottom: 6px; letter-spacing: 0.3px;
}
.footer-links a, .footer-contact a { color: #9DB8CE; font-size: 14.5px; transition: color 0.2s ease; display: inline-flex; align-items: center; gap: 9px; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-loc { font-size: 13.5px; color: #7FA1BF; }
.footer-contact .btn { align-self: flex-start; margin-top: 8px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 26px 0 30px; }
.disclaimer { font-size: 11.5px; color: #7093AF; line-height: 1.6; max-width: 100ch; margin-bottom: 12px; }
.copyright { font-size: 12.5px; color: #7FA1BF; }

/* ============================================================
   MOBILE STICKY CTA BAR
   ============================================================ */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 800;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(14, 58, 98, 0.12);
  transform: translateY(110%); transition: transform 0.35s ease;
}
.mobile-cta-bar.show { transform: translateY(0); }
.mob-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 10px; border-radius: 12px; font-weight: 700; font-size: 14.5px;
}
.mob-whatsapp { background: #E9FBF0; color: #128C4B; border: 1.5px solid #BDEBD2; }
.mob-book {
  background: linear-gradient(135deg, #F97C31, var(--accent) 55%, var(--accent-dark));
  color: #fff; box-shadow: 0 4px 14px rgba(242, 107, 29, 0.35);
}

/* ============================================================
   CHAT WIDGET
   ============================================================ */
.chat-widget { position: fixed; right: 20px; bottom: 20px; z-index: 990; }
.chat-fab {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(14, 58, 98, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.chat-fab:hover { transform: scale(1.07); }
.chat-fab .icon-close { display: none; }
.chat-fab.open .icon-chat { display: none; }
.chat-fab.open .icon-close { display: block; }
.chat-fab-badge {
  position: absolute; top: -2px; right: -2px;
  min-width: 20px; height: 20px; border-radius: 10px; padding: 0 5px;
  background: var(--accent); color: #fff; font-size: 11.5px; font-weight: 700;
  display: grid; place-items: center; border: 2px solid #fff;
}
.chat-fab.open .chat-fab-badge { display: none; }

.chat-panel {
  position: absolute; right: 0; bottom: 76px;
  width: min(372px, calc(100vw - 28px));
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(10, 42, 71, 0.3);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  max-height: min(600px, calc(100vh - 130px));
  animation: chatIn 0.3s ease;
}
/* Critical: the hidden attribute must always win over display:flex,
   otherwise the panel renders open on page load and can't be closed */
.chat-panel[hidden] { display: none !important; }
@keyframes chatIn { from { opacity: 0; transform: translateY(16px) scale(0.97); } to { opacity: 1; transform: none; } }

.chat-head {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: #fff; padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.chat-head-text { flex: 1; line-height: 1.3; }
.chat-head-text strong { display: block; font-family: var(--font-head); font-size: 15.5px; }
.chat-head-text small { font-size: 12px; color: #A8C4DC; display: inline-flex; align-items: center; gap: 6px; }
.online-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); } 50% { box-shadow: 0 0 0 5px rgba(74, 222, 128, 0); } }
.chat-min { color: #C9DBEA; padding: 6px; border-radius: 8px; }
.chat-min:hover { background: rgba(255, 255, 255, 0.12); }

.chat-strip {
  background: var(--accent-050); color: #A34A12; font-size: 12px; font-weight: 600;
  padding: 9px 14px; text-align: center; border-bottom: 1px solid #FBDFC9;
  line-height: 1.45; flex-shrink: 0;
}

.chat-body {
  padding: 18px; overflow-y: auto; flex: 1;
  display: flex; flex-direction: column; gap: 12px;
  background: var(--bg-tint); min-height: 150px;
  scrollbar-width: thin; scrollbar-color: #C4D4E2 transparent;
}
.chat-body::-webkit-scrollbar { width: 5px; }
.chat-body::-webkit-scrollbar-thumb { background: #C4D4E2; border-radius: 3px; }
.chat-msg { max-width: 88%; padding: 12px 15px; border-radius: 15px; font-size: 14px; line-height: 1.55; animation: msgIn 0.25s ease; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.chat-msg.bot { background: #fff; border: 1px solid var(--line); color: var(--body); border-bottom-left-radius: 5px; align-self: flex-start; box-shadow: var(--shadow-sm); }
.chat-msg.bot strong { color: var(--ink); }
.chat-msg.user { background: var(--navy-700); color: #fff; border-bottom-right-radius: 5px; align-self: flex-end; }
.chat-typing { display: inline-flex; gap: 4px; padding: 14px 16px; }
.chat-typing i { width: 7px; height: 7px; border-radius: 50%; background: #9FB0C0; animation: blink 1.2s infinite; }
.chat-typing i:nth-child(2) { animation-delay: 0.2s; }
.chat-typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 80%, 100% { opacity: 0.3; } 40% { opacity: 1; } }

/* Question chips — rendered INSIDE the conversation body */
.chat-chipgroup { animation: msgIn 0.25s ease; }
.chat-chipgroup-label {
  font-size: 11.5px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.8px; margin: 2px 0 8px;
}
.chat-chipgroup-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chat-chip {
  border: 1.5px solid var(--navy-100); color: var(--navy-800); background: #fff;
  font-size: 12.5px; font-weight: 600; padding: 8px 13px; border-radius: 999px;
  transition: all 0.2s ease; box-shadow: var(--shadow-sm);
}
.chat-chip:hover { background: var(--navy-050); border-color: var(--navy-700); }
.chat-msg-cta {
  margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--line);
  font-size: 13.5px;
}
.chat-msg-cta a { color: var(--accent-dark); font-weight: 700; text-decoration: underline; }

.chat-foot { padding: 12px 14px calc(12px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: #fff; text-align: center; flex-shrink: 0; }
.chat-foot small { display: block; margin-top: 8px; font-size: 10.5px; color: #9FB0C0; }
.chat-book { font-size: 15px; padding: 13px 20px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
/* Hidden state applies ONLY when JS has loaded (html.js-loaded) —
   without JS the content renders fully visible, no animations */
.js-loaded .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-loaded .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js-loaded .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { gap: 40px; }
  .float-card-1 { left: -10px; }
  .float-card-2 { right: -6px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { gap: 18px; }
}

@media (max-width: 900px) {
  :root { --header-h: 66px; }

  /* Mobile nav drawer */
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 84vw);
    background: #fff; flex-direction: column; align-items: flex-start;
    padding: calc(var(--header-h) + 26px) 30px 30px; gap: 6px;
    transform: translateX(100%); transition: transform 0.35s ease;
    box-shadow: -12px 0 40px rgba(14, 58, 98, 0.18); z-index: 960;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a:not(.nav-cta) {
    font-size: 17px; padding: 13px 0; width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin: 18px 0 0; width: 100%; padding: 15px; font-size: 16px; }

  .hero { padding: calc(var(--header-h) + 34px) 0 54px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-form-col { max-width: 560px; margin: 0 auto; width: 100%; }
  .book-media { max-width: 480px; margin: 0 auto 26px; }
  .book-photo img { height: 420px; }
  .desk-only { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .section { padding: 66px 0; }

  .services-grid, .testi-grid, .deals-grid { grid-template-columns: 1fr 1fr; }

  .process-grid { grid-template-columns: 1fr; gap: 46px; }
  .process-media { max-width: 480px; margin: 0 auto 22px; width: 100%; }

  .calc-card { grid-template-columns: 1fr; }
  .calc-results { border-left: none; border-top: 1px solid var(--line); }
  .calc-controls { padding: 30px 26px; }
  .calc-results { padding: 28px 26px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-media { max-width: 440px; margin-inline: auto; }
  .about-badge { right: 6px; }

  .book-grid { grid-template-columns: 1fr; gap: 44px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }

  /* Sticky mobile bar appears; give the page breathing room */
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 74px; }
  .chat-widget { bottom: 86px; }
  .site-footer { padding-bottom: 10px; }
}

@media (max-width: 640px) {
  .container { width: min(1160px, 100% - 32px); }
  .hero h1 { font-size: clamp(29px, 8vw, 38px); }
  .hero-sub { font-size: 16px; }
  .hero-ctas .btn { width: 100%; }
  .book-photo img { height: 340px; }
  .book-form-hero h3, .book-form-hero .form-sub, .book-form-hero .form-row,
  .book-form-hero > .form-field, .book-form-hero .consent, .book-form-hero .consent-error,
  .book-form-hero .btn, .book-form-hero .form-status, .book-form-hero .form-secure {
    margin-left: 18px; margin-right: 18px;
  }
  .book-form-hero .btn-block { width: calc(100% - 36px); }
  .float-card { padding: 10px 14px; }
  .float-card-1 { top: 14px; left: -4px; }
  .float-card-2 { bottom: 18px; right: -4px; }
  .float-card strong { font-size: 13px; }
  .float-card small { font-size: 11px; }
  .float-icon { width: 34px; height: 34px; }

  .eyebrow { font-size: 11.5px; padding: 7px 12px; }

  .services-grid, .testi-grid, .deals-grid, .why-grid { grid-template-columns: 1fr; }
  .compare-card { padding: 24px 18px; }

  .steps::before { left: 22px; }
  .step { gap: 18px; }
  .step-num { width: 44px; height: 44px; font-size: 17px; }

  .deals-cta-inner { flex-direction: column; text-align: center; padding: 30px 24px; }

  .about-photo img { height: 440px; }
  .about-badge { max-width: 200px; padding: 13px 16px; bottom: 18px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 36px; }

  .stat-num { font-size: 27px; }
  .stat-label { font-size: 12px; }

  .chat-widget { right: 14px; }
  .chat-fab { width: 54px; height: 54px; }
  .chat-panel {
    position: fixed; left: 12px; right: 12px; bottom: 152px;
    width: auto; max-height: calc(100vh - 180px);
  }
  .chat-foot .chat-book { font-size: 14.5px; padding: 12px 16px; }

  .process-photo img { height: 340px; }
  .process-badge { left: -4px; top: 16px; padding: 11px 14px; max-width: 230px; }
  .process-quote { right: -4px; bottom: -18px; max-width: 250px; padding: 13px 16px; }
}

@media (max-width: 380px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust li { font-size: 13px; }
  .btn-lg { padding: 15px 22px; font-size: 15px; }
}
