/* ==========================================================================
   Dubai Repair Assist — Shared Stylesheet
   Dubai home & property maintenance, repair and handyman services.
   Hand-written, mobile-first, no framework.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette — deep ocean blue + warm Dubai gold + cooling teal */
  --brand:        #0C3B5E;   /* deep ocean blue — trust, professionalism */
  --brand-700:    #0A2F4A;
  --brand-900:    #07223A;
  --accent:       #E0A33E;   /* warm gold */
  --accent-600:   #C98A29;
  --accent-soft:  #FBEFD6;
  --teal:         #16A394;   /* cooling / fresh — AC & plumbing */
  --teal-700:     #0F8579;
  --teal-soft:    #DCF1EE;
  --whatsapp:     #25D366;
  --whatsapp-700: #1DA851;

  /* Neutrals */
  --bg:        #FBF8F2;   /* warm cream */
  --bg-alt:    #F4EFE6;
  --surface:   #FFFFFF;
  --ink:       #16212E;   /* near-black text */
  --ink-soft:  #2B3947;
  --muted:     #5C6B7A;
  --line:      #E6DFD2;
  --line-soft: #F0EAE0;

  /* Type */
  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Fluid type scale */
  --fs-xs:   0.8125rem;
  --fs-sm:   0.9rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.3rem;
  --fs-xl:   clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem);
  --fs-2xl:  clamp(2rem, 1.5rem + 2.6vw, 3rem);
  --fs-3xl:  clamp(2.6rem, 1.8rem + 4.4vw, 4.2rem);

  /* Spacing */
  --space-section: clamp(3.5rem, 2.5rem + 5vw, 7rem);
  --radius:        16px;
  --radius-sm:     10px;
  --radius-pill:   999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(16, 33, 46, 0.06), 0 2px 8px rgba(16, 33, 46, 0.05);
  --shadow:    0 8px 28px rgba(12, 59, 94, 0.10);
  --shadow-lg: 0 22px 60px rgba(12, 59, 94, 0.16);

  --container: 1180px;
  --header-h: 74px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.6em;
  font-weight: 800;
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p { margin: 0 0 1.1em; }

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover { color: var(--accent-600); }

img, svg { max-width: 100%; display: block; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: 0.45em; }

strong { color: var(--ink); font-weight: 700; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding-block: var(--space-section); }
.section--tight { padding-block: clamp(2.5rem, 2rem + 2vw, 4rem); }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: linear-gradient(150deg, var(--brand-900), var(--brand) 70%);
  color: #EAF1F7;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section--dark .eyebrow { color: var(--accent); }
.section-head--center .eyebrow::before { display: none; }

.lead {
  font-size: var(--fs-md);
  color: var(--muted);
  max-width: 60ch;
}
.section-head--center .lead { margin-inline: auto; }
.section--dark .lead { color: #C7D6E2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-base);
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  text-align: center;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--accent); color: var(--brand-900); box-shadow: 0 8px 20px rgba(224, 163, 62, 0.32); }
.btn--primary:hover { background: var(--accent-600); color: var(--brand-900); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(224, 163, 62, 0.4); }
.btn--brand { background: var(--brand); color: #fff; }
.btn--brand:hover { background: var(--brand-700); color: #fff; transform: translateY(-2px); }
.btn--whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3); }
.btn--whatsapp:hover { background: var(--whatsapp-700); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--brand); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); background: var(--surface); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.32); backdrop-filter: blur(4px); }
.btn--light:hover { background: #fff; color: var(--brand); }
.btn--lg { padding: 17px 32px; font-size: var(--fs-md); }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brand-900);
  font-size: 1.16rem;
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--brand); }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--brand), var(--teal));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 23px; height: 23px; color: #fff; }
.brand-name b { color: var(--accent-600); }
.brand-name small {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -1px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 9px 13px;
  border-radius: 8px;
}
.nav a:hover { color: var(--brand); background: var(--bg-alt); }
.nav a[aria-current="page"] { color: var(--brand); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-900);
  font-size: 1rem;
}
.header-phone svg { width: 18px; height: 18px; color: var(--teal); }
.header-phone small { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.header-phone b { font-weight: 800; }

.btn--header {
  padding: 11px 20px;
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 11px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2.4px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle span::before { transform: translate(-50%, -8px); }
.nav-toggle span::after  { transform: translate(-50%, 6px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(224, 163, 62, 0.22), transparent 60%),
    radial-gradient(900px 560px at 8% 110%, rgba(22, 163, 148, 0.20), transparent 55%),
    linear-gradient(155deg, var(--brand-900) 0%, var(--brand) 55%, #0d4870 100%);
  color: #EAF1F7;
  overflow: hidden;
  padding-block: clamp(3.5rem, 2.5rem + 5vw, 7rem);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 30% 20%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 30% 20%, #000, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; display: grid; gap: clamp(2.4rem, 2rem + 3vw, 4rem); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(224, 163, 62, 0.12);
  border: 1px solid rgba(224, 163, 62, 0.35);
  padding: 7px 14px; border-radius: var(--radius-pill);
  margin-bottom: 1.3rem;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--whatsapp); box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.25); }
.hero h1 { color: #fff; max-width: 18ch; margin-bottom: 0.5em; }
.hero h1 .hl { color: var(--accent); }
.hero-lead { font-size: var(--fs-md); color: #CBD9E4; max-width: 56ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.2rem; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 1rem + 2vw, 2.8rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.stat { min-width: 0; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem);
  color: #fff;
  line-height: 1;
}
.stat span { font-size: var(--fs-sm); color: #AFC0CE; display: block; margin-top: 6px; }

/* Hero trust card */
.hero-card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  border-radius: 22px;
  padding: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  box-shadow: var(--shadow-lg);
  align-self: center;
}
.hero-card h3 { font-size: var(--fs-lg); margin-bottom: 0.4em; }
.hero-card p { color: var(--muted); font-size: var(--fs-sm); margin-bottom: 1.3rem; }
.hero-checks { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 10px; }
.hero-checks li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: var(--fs-sm); font-weight: 600; color: var(--ink-soft);
  margin: 0;
}
.hero-checks svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; margin-top: 1px; }

/* ---------- Grid ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Service cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }

.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card .icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--teal-soft);
  color: var(--teal-700);
  margin-bottom: 18px;
}
.service-card .icon svg { width: 28px; height: 28px; }
.service-card--alt .icon { background: var(--accent-soft); color: var(--accent-600); }
.service-card h3 { font-size: 1.22rem; margin-bottom: 0.4em; }
.service-card p { color: var(--muted); font-size: var(--fs-sm); margin-bottom: 1.1rem; }
.service-card .card-link {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--brand);
}
.service-card .card-link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.service-card:hover .card-link { color: var(--accent-600); }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Features / why-choose ---------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .icon {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 13px;
  background: linear-gradient(140deg, var(--brand), var(--teal));
  color: #fff;
  display: grid; place-items: center;
}
.feature .icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 0.3em; }
.feature p { color: var(--muted); font-size: var(--fs-sm); margin: 0; }

/* ---------- Split / media ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
.split--reverse .split-media { order: -1; }
.media-card {
  background: linear-gradient(150deg, var(--brand), var(--teal-700));
  border-radius: 24px;
  padding: clamp(2rem, 1.5rem + 2vw, 3.4rem);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 220px at 85% 15%, rgba(224,163,62,0.35), transparent 60%);
}
.media-card > * { position: relative; z-index: 1; }
.media-card h3 { color: #fff; }
.media-card .check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.media-card .check-list li { display: flex; gap: 12px; align-items: flex-start; margin: 0; font-size: var(--fs-sm); color: #E7F1F6; }
.media-card .check-list svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  position: relative;
}
.step__num {
  counter-increment: step;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  display: grid; place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(12,59,94,0.22);
}
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.1rem; margin-bottom: 0.35em; }
.step p { color: var(--muted); font-size: var(--fs-sm); margin: 0; }

/* ---------- Service area pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 11px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  transition: all 0.18s ease;
}
.pill svg { width: 15px; height: 15px; color: var(--teal); }
.pill:hover { border-color: var(--accent); color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.faq-item.is-open { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--ink);
  text-align: left;
  padding: 20px 22px;
}
.faq-q .toggle {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-alt);
  display: grid; place-items: center;
  position: relative;
  transition: background 0.2s ease, transform 0.2s ease;
}
.faq-q .toggle::before,
.faq-q .toggle::after {
  content: ""; position: absolute;
  background: var(--brand); border-radius: 2px;
}
.faq-q .toggle::before { width: 13px; height: 2.4px; }
.faq-q .toggle::after  { width: 2.4px; height: 13px; transition: transform 0.25s ease; }
.faq-item.is-open .toggle { background: var(--accent); }
.faq-item.is-open .toggle::before,
.faq-item.is-open .toggle::after { background: var(--brand-900); }
.faq-item.is-open .toggle::after { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a__inner { padding: 0 22px 22px; color: var(--muted); }
.faq-a__inner p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(700px 360px at 88% 30%, rgba(224,163,62,0.25), transparent 60%),
    linear-gradient(135deg, var(--brand-900), var(--brand));
  color: #fff;
  border-radius: 26px;
  padding: clamp(2.4rem, 1.8rem + 3vw, 4rem);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
  align-items: center;
}
.cta-band h2 { color: #fff; margin-bottom: 0.4em; }
.cta-band p { color: #CBD9E4; margin-bottom: 0; max-width: 52ch; }
.cta-band .btn-row { justify-content: flex-end; flex-direction: column; align-items: stretch; }

/* ---------- Service detail blocks (services.html) ---------- */
.service-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.6rem, 1rem + 3vw, 3.4rem);
  align-items: start;
  padding: clamp(2rem, 1.5rem + 2vw, 3rem) 0;
  border-top: 1px solid var(--line);
}
.service-block:first-of-type { border-top: none; padding-top: 0.5rem; }
.service-block__head { position: sticky; top: calc(var(--header-h) + 16px); }
.service-block__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--brand), var(--teal));
  color: #fff;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.service-block__icon svg { width: 32px; height: 32px; }
.service-block__head h2 { font-size: var(--fs-xl); margin-bottom: 0.4em; }
.service-block__head p { color: var(--muted); font-size: var(--fs-sm); margin: 0; }
.service-block__body h4 {
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-600);
  margin: 0 0 0.7em;
}
.service-block__body h4:not(:first-child) { margin-top: 1.6em; }
.service-block__body ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.service-block__body ul li {
  display: flex; gap: 11px; align-items: flex-start;
  margin: 0; font-size: var(--fs-sm); color: var(--ink-soft);
}
.service-block__body ul svg { width: 19px; height: 19px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.service-block__cta { margin-top: 1.6rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(800px 380px at 88% -20%, rgba(224,163,62,0.2), transparent 60%),
    linear-gradient(155deg, var(--brand-900), var(--brand) 70%);
  color: #EAF1F7;
  padding-block: clamp(2.8rem, 2rem + 3vw, 4.6rem);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 70% 10%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 70% 10%, #000, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; max-width: 820px; }
.page-hero h1 { color: #fff; margin-bottom: 0.4em; }
.page-hero p { color: #CBD9E4; font-size: var(--fs-md); max-width: 60ch; }
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: var(--fs-xs); color: #9FB2C2;
  margin-bottom: 1.2rem;
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { opacity: 0.5; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: start; }
.contact-methods { display: grid; gap: 16px; margin-bottom: 1.6rem; }
.contact-method {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.contact-method .icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px; display: grid; place-items: center;
  background: var(--teal-soft); color: var(--teal-700);
}
.contact-method .icon svg { width: 24px; height: 24px; }
.contact-method--whatsapp .icon { background: rgba(37,211,102,0.14); color: var(--whatsapp-700); }
.contact-method h3 { font-size: 1.02rem; margin-bottom: 0.15em; }
.contact-method p { font-size: var(--fs-sm); color: var(--muted); margin: 0; }
.contact-method a { font-family: var(--font-display); font-weight: 700; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  margin-bottom: 7px;
  color: var(--ink-soft);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 13px 15px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(224,163,62,0.16);
}
.form-note { font-size: var(--fs-xs); color: var(--muted); margin-top: 12px; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: var(--fs-sm); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--ink); font-family: var(--font-display); }
.hours-table tr:last-child td { border-bottom: none; }

.map-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.map-block__viz {
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--bg-alt), #fff);
  border: 1px solid var(--line);
  padding: 36px 20px;
  margin: 18px 0;
  position: relative;
  overflow: hidden;
}

/* ---------- Values (about) ---------- */
.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
}
.value-card .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent-600);
  display: block;
  margin-bottom: 12px;
}
.value-card h3 { font-size: 1.14rem; margin-bottom: 0.35em; }
.value-card p { color: var(--muted); font-size: var(--fs-sm); margin: 0; }

.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.team-card .avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(140deg, var(--brand), var(--teal));
  display: grid; place-items: center;
  color: #fff;
}
.team-card .avatar svg { width: 36px; height: 36px; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.2em; }
.team-card .role { color: var(--accent-600); font-weight: 700; font-size: var(--fs-sm); font-family: var(--font-display); }
.team-card p { font-size: var(--fs-sm); color: var(--muted); margin: 10px 0 0; }

/* ---------- Affiliation band ---------- */
.affiliate {
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.affiliate__icon {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 14px;
  background: var(--accent-soft); color: var(--accent-600);
  display: grid; place-items: center;
}
.affiliate__icon svg { width: 28px; height: 28px; }
.affiliate__body { flex: 1; min-width: 240px; }
.affiliate__body h3 { font-size: 1.1rem; margin-bottom: 0.2em; }
.affiliate__body p { margin: 0; color: var(--muted); font-size: var(--fs-sm); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand-900);
  color: #C6D5E0;
  padding-top: clamp(3rem, 2rem + 3vw, 4.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 1.5rem + 2vw, 3.2rem);
  padding-bottom: 2.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
  color: #fff;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col ul a { color: #B8C8D4; font-size: var(--fs-sm); }
.footer-col ul a:hover { color: var(--accent); }
.footer-brand .brand { color: #fff; }
.footer-brand .brand small { color: #8FA3B3; }
.footer-about { color: #A8BAC8; font-size: var(--fs-sm); margin: 16px 0; max-width: 36ch; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: var(--fs-sm); color: #B8C8D4; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: #B8C8D4; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px;
  padding: 22px 0 28px;
  font-size: var(--fs-xs);
  color: #8FA3B3;
}
.footer-bottom a { color: #8FA3B3; }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom__links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .hero .container { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block__head { position: static; }
  .cta-band { grid-template-columns: 1fr; text-align: center; }
  .cta-band .btn-row { justify-content: center; flex-direction: row; align-items: center; }
  .cta-band p { margin-inline: auto; }
}

@media (max-width: 820px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: block; }
  .header-actions .btn--header { display: none; }
  .header-actions { gap: 8px; }

  /* Mobile nav drawer */
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 12px 18px 22px;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 1.05rem;
    border-radius: 0;
  }
  .nav a:last-child { border-bottom: none; }
  .nav a[aria-current="page"]::after { display: none; }
  .mobile-cta-bar { display: flex; }
}

/* Mobile sticky CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 10px 14px;
  gap: 10px;
}
.mobile-cta-bar .btn { flex: 1; padding: 13px 14px; font-size: 0.9rem; }

@media (max-width: 560px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  body { padding-bottom: 70px; } /* room for mobile CTA bar */
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
}
