/* ══════════════════════════════════════════════
   DINOGOO — Main Stylesheet
   Brand colors from logo:
   Navy  : #1A3651  (text, header, footer, headings)
   Red   : #B22222  (CTAs, highlights, accents)
   White : #FFFFFF  (backgrounds)
   ══════════════════════════════════════════════ */

:root {
  --brand-dark:    #0F2438;
  --brand-main:    #1A3651;
  --brand-mid:     #2A4D6E;
  --brand-accent:  #6B8CAE;
  --brand-light:   #E8EEF4;
  --brand-tint:    #F4F7FA;
  --brand-dim:     rgba(26, 54, 81, 0.09);

  --accent-dark:   #8B1A1A;
  --accent-main:   #B22222;
  --accent-mid:    #C42B2B;
  --accent-light:  #FCE8E8;
  --accent-tint:   #E8A0A0;
  --accent-dim:    rgba(178, 34, 34, 0.1);

  --dark:          #0F2438;
  --dark-card:     #152D45;
  --text:          #1A3651;
  --text-muted:    #5A7289;
  --border:        #D4DEE8;
  --white:         #FFFFFF;
  --off-white:     #FAFBFC;

  --font-head: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  6px;
  --radius-lg:  8px;

  --shadow-sm: 0 1px 3px rgba(26, 54, 81, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 54, 81, 0.1);

  --nav-h: 92px;
  --transition: 0.18s ease;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  touch-action: none;
}
main {
  padding-top: var(--nav-h);
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ─────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 28px);
}

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  cursor: pointer; border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent-main); color: var(--white);
  border-color: var(--accent-main);
}
.btn--primary:hover {
  background: var(--accent-dark); border-color: var(--accent-dark);
}
.btn--outline {
  background: var(--white); color: var(--brand-main);
  border-color: var(--brand-main);
}
.btn--outline:hover { background: var(--brand-tint); }
.btn--outline-dark {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-dark:hover { background: rgba(255,255,255,0.08); }
.btn--white {
  background: var(--white); color: var(--brand-main);
  border-color: var(--white);
}
.btn--white:hover { background: var(--brand-light); }
.btn--outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); }
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--lg { padding: 14px 24px; font-size: 15px; }
.btn--block { width: 100%; }

/* ── Section Shared ────────────────────────── */
.section { padding: clamp(64px, 10vw, 96px) 0; }
.section__head { max-width: 560px; margin-bottom: 48px; }
.section__head--center { margin: 0 auto 48px; text-align: center; max-width: 620px; }
.section__head--light .section__label { color: var(--accent-tint); }
.section__head--light .section__title { color: var(--white); }
.section__head--light .section__sub { color: rgba(255,255,255,0.62); }
.section__label {
  font-size: 14px; font-weight: 600; color: var(--accent-main);
  margin-bottom: 8px;
}
.section__title {
  font-family: var(--font-head); font-size: clamp(24px, 4vw, 34px);
  font-weight: 600; color: var(--brand-main);
  line-height: 1.25; margin-bottom: 12px;
}
.section__sub {
  font-size: clamp(15px, 2vw, 17px); color: var(--text-muted); line-height: 1.75;
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar__inner {
  display: flex; align-items: center;
  min-height: var(--nav-h);
  height: var(--nav-h);
  gap: 28px;
  padding: 8px 0;
}
.navbar__brand { flex-shrink: 0; line-height: 0; }
.navbar__logo-img {
  height: 68px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.navbar__desktop {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.navbar__drawer {
  display: none;
}
.navbar__menu {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar__menu a {
  font-size: 15px; font-weight: 500;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.navbar__menu a:hover { color: var(--brand-main); }
.navbar__menu a.active {
  color: var(--brand-main);
  border-bottom-color: var(--accent-main);
  font-weight: 600;
}
.navbar__menu li { list-style: none; }
.navbar__actions {
  display: flex; align-items: center; gap: 20px;
  flex-shrink: 0;
}
.navbar__tel {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--brand-main);
  white-space: nowrap;
}
.navbar__tel svg { color: var(--accent-main); flex-shrink: 0; width: 18px; height: 18px; }
.navbar__tel:hover { color: var(--accent-main); }
.navbar__hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--brand-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-left: auto;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent;
}
.navbar__hamburger span {
  display: block; width: 20px; height: 2px;
  margin: 0 auto; background: var(--brand-main);
  transition: all 0.22s ease;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar__backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(15, 36, 56, 0.35);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.navbar__backdrop.visible { opacity: 1; visibility: visible; }

/* Desktop: only show center nav links — hide mobile drawer completely */
@media (min-width: 993px) {
  .navbar__drawer,
  .navbar__backdrop {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
  }
  .navbar__desktop { display: flex !important; }
  .navbar__hamburger { display: none !important; }
  .navbar__actions { display: flex !important; }
  /* Fix old cached HTML if mobile menu was still inside the header bar */
  .navbar__inner .navbar__drawer-top,
  .navbar__inner .navbar__drawer-foot,
  .navbar__inner .navbar__close,
  .navbar__nav .navbar__drawer-top,
  .navbar__nav .navbar__drawer-foot,
  .navbar__nav .navbar__close {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* ══════════════════════════════════════════════
   HERO (van fills full section, text overlaid left)
══════════════════════════════════════════════ */
.hero {
  --hero-inset-y: clamp(14px, 2.5vh, 24px);
  position: relative;
  z-index: 1;
  isolation: isolate;
  min-height: clamp(360px, 58vh, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-main);
  padding: var(--hero-inset-y) 0;
  box-sizing: border-box;
}
.hero__media {
  position: absolute;
  top: var(--hero-inset-y);
  right: 0;
  bottom: var(--hero-inset-y);
  left: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
  display: block;
}
.hero__media-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(15, 36, 56, 0.94) 0%,
    rgba(26, 54, 81, 0.82) 34%,
    rgba(26, 54, 81, 0.4) 52%,
    rgba(26, 54, 81, 0.12) 68%,
    transparent 82%
  );
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(36px, 6vw, 64px) 0;
}
.hero__content {
  max-width: 620px;
}
.hero__eyebrow {
  font-size: 14px; font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
}
.hero__title {
  font-family: var(--font-head);
  color: var(--white);
  font-size: clamp(26px, 3.8vw, 36px);
  font-weight: 600;
  line-height: 1.28;
  margin-bottom: 14px;
  max-width: 16em;
}
.hero__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 38em;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero__actions .btn--outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}
.hero__actions .btn--outline:hover {
  background: var(--white);
  color: var(--brand-main);
}
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px; color: rgba(255, 255, 255, 0.8);
}
.hero__facts strong { color: var(--white); font-weight: 600; margin-right: 4px; }
.hero__sub--short { display: none; }
.hero__phone-mobile { display: none; }

/* ══════════════════════════════════════════════
   TRUST BAR (marquee)
══════════════════════════════════════════════ */
.trust-bar {
  background: var(--brand-light);
  border-top: 3px solid var(--accent-main);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
}
.trust-bar__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.trust-bar__track {
  display: flex;
  width: max-content;
  animation: trust-marquee 32s linear infinite;
}
.trust-bar:hover .trust-bar__track { animation-play-state: paused; }
@keyframes trust-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-bar__list {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 36px;
  white-space: nowrap;
}
.trust-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--accent-main);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.trust-item:hover .trust-item__icon {
  transform: scale(1.06);
  border-color: var(--accent-tint);
}
.trust-item__icon svg { width: 24px; height: 24px; }
.trust-item__text {
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 600;
  color: var(--brand-main);
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
#services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand-main);
  border-radius: var(--radius-md);
  padding: 22px 22px 22px 20px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.service-card:hover {
  border-left-color: var(--accent-main);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.service-card__icon {
  width: auto; height: auto;
  background: none;
  margin-bottom: 12px;
  color: var(--accent-main);
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 600;
  color: var(--brand-main); margin-bottom: 8px;
}
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.how-section {
  background: var(--brand-tint);
  border-top: 1px solid var(--border);
  padding: clamp(56px, 8vw, 80px) 0;
}
.how-section .section__head--light .section__title,
.how-section .section__title { color: var(--brand-main); }
.how-section .section__head--light .section__sub,
.how-section .section__sub { color: var(--text-muted); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.step:hover {
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.step__num {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  color: var(--accent-main);
  margin-bottom: 10px;
}
.step h4 {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 600;
  color: var(--brand-main); margin-bottom: 8px;
}
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════════════════
   CTA BANNER (separate from footer — light band)
══════════════════════════════════════════════ */
.cta-banner {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(48px, 6vw, 64px) 0;
}
.cta-banner__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 28px; flex-wrap: wrap;
  padding: clamp(28px, 4vw, 36px) clamp(24px, 4vw, 40px);
  background: var(--brand-tint);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-main);
  border-radius: var(--radius-md);
}
.cta-banner h2 {
  font-family: var(--font-head); font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 600; color: var(--brand-main); margin-bottom: 8px;
}
.cta-banner p { font-size: 16px; color: var(--text-muted); max-width: 36em; }
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */
.page-hero {
  background: var(--brand-main);
  padding: clamp(40px, 6vw, 56px) 0;
  margin-top: var(--nav-h);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.page-hero .section__label { color: rgba(255, 255, 255, 0.85); }
.page-hero h1 {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--white); margin-bottom: 10px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 36em;
}

.contact-section { padding: clamp(56px, 8vw, 80px) 0; background: var(--off-white); }
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 56px); align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.contact-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.contact-card:hover {
  border-color: var(--brand-mid);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.contact-card__icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: var(--brand-light); display: flex; align-items: center;
  justify-content: center; color: var(--accent-main); flex-shrink: 0;
}
.contact-card__text span { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 3px; }
.contact-card__text strong { font-size: 15px; color: var(--brand-main); font-weight: 600; }

/* ── Form ───────────────────────────────────── */
.form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: clamp(24px, 5vw, 36px);
}
.form-card h3 {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  color: var(--brand-main); margin-bottom: 6px;
}
.form-card p.form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-card p.form-sub .required { color: var(--accent-main); font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--brand-main); margin-bottom: 6px; }
.field label .required { color: var(--accent-main); margin-left: 2px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 14px;
  font-size: 15px; font-family: var(--font-body); color: var(--text);
  background: var(--white); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--brand-main);
  box-shadow: 0 0 0 3px var(--brand-dim);
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%235A7289' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px; cursor: pointer;
}
.success-msg {
  background: var(--accent-light); border: 1.5px solid var(--accent-tint);
  border-radius: var(--radius-md); padding: 16px 20px;
  font-size: 14px; font-weight: 600; color: var(--accent-dark);
  margin-bottom: 20px; display: none;
}

/* ══════════════════════════════════════════════
   BOOKING PAGE
══════════════════════════════════════════════ */
.booking-section { padding: clamp(56px, 8vw, 80px) 0; background: var(--off-white); }
.booking-grid {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: clamp(28px, 4vw, 40px); align-items: start;
}
.booking-sidebar { display: flex; flex-direction: column; gap: 18px; }
.sidebar-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.sidebar-card:hover { border-color: var(--brand-accent); box-shadow: var(--shadow-sm); }
.sidebar-card h4 {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: var(--brand-main); margin-bottom: 12px;
}
.sidebar-list { display: flex; flex-direction: column; gap: 10px; }
.sidebar-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.sidebar-list li svg { color: var(--accent-main); flex-shrink: 0; }
.sidebar-cta {
  background: var(--brand-main);
  border-radius: var(--radius-md);
  padding: 22px; text-align: left; color: var(--white);
  border-top: 3px solid var(--accent-main);
}
.sidebar-cta h4 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.sidebar-cta p { font-size: 14px; color: rgba(255, 255, 255, 0.88); margin-bottom: 18px; }
.sidebar-cta .btn--white {
  color: var(--brand-main);
  background: var(--white);
  border-color: var(--white);
  font-weight: 600;
}
.sidebar-cta .btn--white:hover {
  background: var(--brand-light);
  border-color: var(--brand-light);
  color: var(--brand-dark);
}
.sidebar-cta .btn--white svg { color: var(--accent-main); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--brand-dark);
  padding: clamp(52px, 7vw, 72px) 0 0;
  margin-top: 0;
}
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
  gap: clamp(32px, 5vw, 48px); padding-bottom: 52px;
}
.footer__brand img { height: 52px; width: auto; margin-bottom: 16px; }
.footer__brand p {
  font-size: 14px; color: rgba(255,255,255,0.55);
  line-height: 1.75; max-width: 280px; margin-bottom: 22px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
}
.footer__social a:hover { color: var(--white); border-color: rgba(255, 255, 255, 0.4); }
.footer__links h4, .footer__services h4, .footer__contact h4 {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 18px;
}
.footer__links ul, .footer__contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,0.62); transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__services ul { display: flex; flex-direction: column; gap: 10px; }
.footer__services li {
  font-size: 14px; color: rgba(255,255,255,0.52);
  padding-left: 12px; position: relative;
}
.footer__services li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-main);
}
.footer__contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.62);
}
.footer__contact li svg { color: var(--accent-tint); margin-top: 2px; flex-shrink: 0; }
.footer__contact a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer__bottom .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.38); }
.footer__bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__bottom-links a {
  font-size: 13px; color: rgba(255,255,255,0.42);
  transition: color var(--transition);
}
.footer__bottom-links a:hover { color: rgba(255, 255, 255, 0.75); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
  .navbar__desktop { display: none; }
  .navbar__actions { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__backdrop { display: block; }
  .navbar__drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 88vw);
    max-width: 100%;
    background: var(--white);
    border-left: 1px solid var(--border);
    padding: 0 0 max(24px, env(safe-area-inset-bottom));
    transform: translateX(100%);
    transition: transform 0.28s ease, visibility 0.28s;
    visibility: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1001;
    box-shadow: -8px 0 32px rgba(15, 36, 56, 0.18);
  }
  .navbar__drawer.open {
    visibility: visible;
    transform: translateX(0);
  }
  .navbar__drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    margin-top: var(--nav-h);
    border-bottom: 1px solid var(--border);
    background: var(--brand-tint);
    position: sticky;
    top: 0;
    z-index: 1;
  }
  .navbar__drawer-label {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-main);
  }
  .navbar__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--brand-main);
    cursor: pointer;
  }
  .navbar__menu--drawer {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 8px 16px 0;
  }
  .navbar__menu--drawer a {
    display: block;
    padding: 16px 12px;
    min-height: 52px;
    font-size: 17px;
    border-bottom: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-bottom-width: 1px;
  }
  .navbar__menu--drawer a.active {
    border-left-color: var(--accent-main);
    border-bottom-color: var(--border);
    background: var(--brand-tint);
    font-weight: 600;
  }
  .navbar__drawer-foot {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding: 20px 16px 8px;
    border-top: 1px solid var(--border);
  }
  .navbar__tel--drawer {
    justify-content: center;
    padding: 14px 16px;
    background: var(--brand-tint);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 16px;
  }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 20px;
  }
  .cta-banner__actions { width: 100%; }
  .cta-banner__actions .btn { flex: 1; min-width: 140px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 76px; }
  .container { padding: 0 18px; }
  .navbar__logo-img { height: 52px; max-width: 150px; }
  .section { padding: 48px 0; }
  .section__head { margin-bottom: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .page-hero { padding: 36px 0; }
  .page-hero h1 { font-size: 26px; }
  .contact-section,
  .booking-section { padding: 40px 0; }
  .form-card { padding: 20px 18px; }
  .field input,
  .field textarea,
  .field select { font-size: 16px; padding: 14px; }
  .booking-sidebar { order: 0; }
  .booking-grid > .form-card { order: -1; }

  /* Mobile hero: van image inside section first, then text + buttons */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    align-items: stretch;
    overflow: hidden;
    background: var(--brand-main);
    padding: 0;
  }
  .hero__media {
    order: 1;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: clamp(240px, 44vh, 360px);
    min-height: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
  }
  .hero__inner {
    order: 2;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    background: var(--brand-main);
    padding: 24px 32px 28px;
    border: none;
    border-top: 3px solid var(--accent-main);
  }
  .hero__media img {
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center 42%;
    border-radius: 0;
  }
  .hero__media-overlay {
    display: none;
  }
  .hero__content { max-width: none; }
  .hero__eyebrow {
    font-size: 12px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
  }
  .hero__title {
    font-size: clamp(20px, 5.8vw, 24px);
    line-height: 1.28;
    margin-bottom: 10px;
    max-width: none;
  }
  .hero__sub--long,
  .hero__sub--short { display: none; }
  .hero__phone-mobile { display: none; }
  .hero__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 0;
  }
  .hero__actions .btn {
    width: 100%;
    min-height: 42px;
    padding: 9px 16px;
    font-size: 14px;
    gap: 6px;
  }
  .hero__actions .btn svg {
    width: 15px;
    height: 15px;
  }
  .hero__actions .btn--outline {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
  }
  .hero__facts { display: none; }
}

@media (max-width: 480px) {
  :root { --nav-h: 72px; }
  .navbar__logo-img { height: 46px; max-width: 130px; }
  .hero__inner { padding: 20px 28px 24px; }
  .hero__media {
    height: clamp(220px, 40vh, 320px);
  }
  .hero__media img {
    object-position: center 38%;
  }
  .hero__title { font-size: 19px; }
  .hero__actions .btn {
    min-height: 40px;
    font-size: 13px;
  }
  .trust-item { padding: 12px 24px; }
  .trust-item__icon { width: 40px; height: 40px; }
  .trust-item__text { font-size: 14px; }
  .cta-banner__actions { flex-direction: column; }
  .cta-banner__actions .btn { width: 100%; }
  .btn { min-height: 48px; }
  .footer__bottom .container { flex-direction: column; align-items: flex-start; text-align: left; }
  .sidebar-cta .btn--white { min-height: 48px; }
}

@media (max-width: 768px) and (max-height: 500px) {
  .hero__media { height: 200px; min-height: 200px; }
  .hero__inner { padding: 14px 28px 16px; }
}

/* ── Card scroll-in animation ─────────────── */
.card-animate {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--animate-delay, 0ms);
}
.card-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .service-card:hover,
  .step:hover,
  .contact-card:hover { transform: none; }
  .trust-bar__viewport {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
  }
  .trust-bar__track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 0;
  }
  .trust-bar__list[aria-hidden="true"] { display: none; }
  .trust-item { padding: 12px 20px; }
}
