/* ============================================================
   APPLIANCE MECHANIC — Design System v3
   Typography: Barlow Condensed (display) + Plus Jakarta Sans (body)
   Palette: Built on #00adef electric blue
     Primary:   #00ADEF  electric sky blue
     Deep:      #0081B4  pressed blue
     Dark:      #061722  near-black ink
     Mid dark:  #0D2333  deep navy-ink
     Panel:     #122840  card surface
     Accent:    #00E5FF  ice cyan glow
     Warm:      #F7F9FC  almost-white
     Text muted:#8BA8BE  slate
   SSQ = white bg, minimal, serif italic mix, centered, step form
   We = dark atmospheric, image-driven, asymmetric, bold slab display
   ============================================================ */

:root {
  /* Core palette */
  --blue:        #00ADEF;
  --blue-deep:   #0081B4;
  --blue-glow:   #00E5FF;
  --blue-dim:    rgba(0,173,239,.12);
  --blue-border: rgba(0,173,239,.2);
  --ink:         #061722;
  --ink-2:       #0D2333;
  --ink-3:       #122840;
  --ink-4:       #1A3650;
  --slate:       #8BA8BE;
  --slate-light: #B8CEDC;
  --warm:        #F7F9FC;
  --warm-2:      #EEF3F7;
  --white:       #FFFFFF;
  --wa:          #25D366;

  /* Typography */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* Spacing & shape */
  --max-w:   1240px;
  --radius:  4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  /* Shadows */
  --glow-blue: 0 0 40px rgba(0,173,239,.25), 0 8px 32px rgba(0,0,0,.4);
  --shadow:    0 4px 24px rgba(0,0,0,.3);
  --shadow-lg: 0 16px 56px rgba(0,0,0,.45);

  /* Transitions */
  --t: 0.22s cubic-bezier(.4,0,.2,1);
}

/* ── 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);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--ink);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--white);
}
h1 { font-size: clamp(3.2rem, 7vw, 6rem); font-weight: 900; letter-spacing: -.01em; }
h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
h3 { font-size: clamp(1.7rem, 2.5vw, 2.3rem); }
h4 { font-size: 1.4rem; }
p  { line-height: 1.75; color: var(--slate); font-size: .97rem; }

/* Dark-surface h2 stays white; light-surface override below */
.on-light h2, .on-light h3, .on-light h4 { color: var(--ink); }
.on-light p { color: #4A6278; }
.on-light .section-label { color: var(--blue-deep); }
.on-light .section-label::before { background: var(--blue-deep); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .9rem;
}
.section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}

/* ── Layout ────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
/* Primary blue */
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  box-shadow: var(--glow-blue);
  transform: translateY(-2px);
}
/* Outline white */
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-outline:hover { background: rgba(255,255,255,.07); border-color: var(--white); }
/* Outline blue */
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue-border);
}
.btn-outline-blue:hover { background: var(--blue-dim); border-color: var(--blue); color: var(--blue-glow); }
/* Dark */
.btn-dark { background: var(--ink-3); color: var(--white); border-color: var(--ink-4); }
.btn-dark:hover { background: var(--ink-4); transform: translateY(-2px); }
/* WA */
.btn-wa { background: var(--wa); color: var(--white); border-color: var(--wa); }
.btn-wa:hover { background: #1aab52; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }
/* Ghost (for light BG) */
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: rgba(0,0,0,.18); }
.btn-ghost-dark:hover { background: var(--ink); color: var(--white); }

.btn-sm  { padding: .5rem 1.25rem; font-size: .82rem; }
.btn-lg  { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; }
/* Aliases */
.btn-accent { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-accent:hover { background: var(--blue-deep); box-shadow: var(--glow-blue); transform: translateY(-2px); }
.btn-ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-ghost-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(0,0,0,.18); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .38rem 0;
}
.topbar-inner { display: flex; align-items: center; gap: 1rem; }
.topbar-sep { color: rgba(255,255,255,.35); }
.topbar-right { margin-left: auto; display: flex; gap: 1.5rem; align-items: center; }
.topbar-wa, .topbar-phone { color: var(--white); font-weight: 800; transition: opacity var(--t); }
.topbar-wa:hover, .topbar-phone:hover { opacity: .7; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6,23,34,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,173,239,.12);
  transition: border-color var(--t), box-shadow var(--t);
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,.5);
  border-color: rgba(0,173,239,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .9rem 0;
}

/* Logo */
.logo { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.logo-mark { width: 38px; height: 38px; background: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-mark svg { display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: .03em; }
.logo-name strong { color: var(--blue); }
.logo-sub { font-size: .58rem; color: var(--slate); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }

/* Nav */
.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; align-items: center; }
.main-nav > ul > li > a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate-light);
  padding: .6rem .9rem;
  display: flex;
  align-items: center;
  gap: .25rem;
  transition: color var(--t);
}
.main-nav > ul > li > a:hover { color: var(--blue); }
.nav-arrow { font-size: .5rem; opacity: .5; }

/* Dropdown — vertical only */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--ink-3);
  border: 1px solid rgba(0,173,239,.18);
  border-top: 2px solid var(--blue);
  box-shadow: var(--shadow-lg);
  min-width: 225px;
  padding: .4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t);
  z-index: 200;
  display: flex;
  flex-direction: column;
}
.dropdown-wide { min-width: 255px; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown > li { width: 100%; display: block; }
.dropdown > li > a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: .52rem .9rem;
  font-size: .83rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--slate-light);
  transition: all var(--t);
  white-space: nowrap;
  border-radius: var(--radius);
}
.dropdown > li > a:hover { background: var(--blue-dim); color: var(--blue); padding-left: 1.2rem; }

.header-ctas { display: flex; gap: .6rem; flex-shrink: 0; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 1px; transition: all var(--t); }

/* Mobile Nav */
.mobile-nav { position: fixed; inset: 0; background: var(--ink); z-index: 2000; padding: 5rem 2rem 2rem; overflow-y: auto; transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1); }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close { position: absolute; top: 1.1rem; right: 1.25rem; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.mobile-nav > ul { display: flex; flex-direction: column; }
.mobile-nav > ul > li > a { display: block; color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: .06em; text-transform: uppercase; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.mobile-nav > ul > li > a:hover { color: var(--blue); }
.mobile-nav .mobile-sub > a { font-size: .9rem; font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--slate); padding-left: 1.25rem; font-family: var(--font-body); }
.mobile-nav-ctas { margin-top: 2.5rem; display: flex; flex-direction: column; gap: .75rem; }

/* ============================================================
   HERO — full-bleed two-column locked to viewport height
   LEFT: headline + trust pills
   RIGHT: booking form panel (always visible, no scroll needed)
   ============================================================ */
.hero {
  background: var(--ink);
  min-height: calc(100vh - 82px); /* fill viewport minus header */
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Full-bleed background image with blue-tinted overlay */
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(.35) saturate(.6);
}
/* Blue wash overlay */
.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,23,34,.92) 0%,
    rgba(6,23,34,.75) 40%,
    rgba(0,130,180,.18) 100%
  );
}
/* Left edge accent stripe */
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--blue), var(--blue-glow), transparent);
  z-index: 3;
}

.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  min-height: calc(100vh - 82px);
}

/* — Left content column — */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
}
.hero-heading {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: .98;
}
.hero-heading .line-muted { color: var(--slate-light); font-weight: 700; }
.hero-heading .line-blue  { color: var(--blue); }
.hero-heading .line-glow  {
  color: var(--white);
  -webkit-text-stroke: 1px rgba(0,173,239,.4);
}
.hero-desc {
  color: var(--slate-light);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
/* Trust pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.5rem;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(0,173,239,.1);
  border: 1px solid rgba(0,173,239,.2);
  color: var(--slate-light);
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .9rem;
  border-radius: 100px;
  transition: all var(--t);
}
.hero-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.hero-pill:hover { background: rgba(0,173,239,.18); border-color: var(--blue); color: var(--white); }
.hero-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }

/* — Right booking panel — */
.hero-form-panel {
  background: var(--ink-3);
  border-left: 1px solid rgba(0,173,239,.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
  position: relative;
}
.hero-form-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-glow));
}
.form-panel-heading {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.form-panel-sub {
  color: var(--slate);
  font-size: .83rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
/* Form fields */
.hf-group { margin-bottom: .9rem; }
.hf-group label {
  display: block;
  font-family: var(--font-display);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: .35rem;
}
.hf-group input,
.hf-group select,
.hf-group textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid rgba(0,173,239,.15);
  border-radius: var(--radius);
  padding: .7rem .95rem;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}
.hf-group input::placeholder { color: rgba(139,168,190,.4); }
.hf-group input:focus,
.hf-group select:focus,
.hf-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,173,239,.12);
}
.hf-group select option { background: var(--ink-3); color: var(--white); }
.hf-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.hf-submit {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  width: 100%;
  padding: .9rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t);
  margin-top: .35rem;
}
.hf-submit:hover { background: var(--blue-deep); box-shadow: var(--glow-blue); transform: translateY(-1px); }
.hf-note { text-align: center; font-size: .72rem; color: var(--slate); margin-top: .6rem; line-height: 1.5; }
.hf-alts { display: flex; gap: .6rem; margin-top: 1rem; }
.hf-alts a { flex: 1; text-align: center; padding: .6rem .5rem; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); font-family: var(--font-display); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-light); transition: all var(--t); }
.hf-alts a:hover { border-color: var(--blue-border); color: var(--blue); }
/* Form success */
.form-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem 1rem; gap: 1rem; }
.form-success.show { display: flex; }
.form-success-icon { width: 56px; height: 56px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.form-success h3 { color: var(--white); font-size: 1.5rem; }
.form-success p { color: var(--slate); font-size: .88rem; }

/* ============================================================
   VALUE BAR
   ============================================================ */
.value-bar {
  background: var(--blue);
  padding: 1.5rem 0;
  overflow: hidden;
}
.value-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.value-bar-inner::-webkit-scrollbar { display: none; }
.vb-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 0 2.5rem;
  border-right: 1px solid rgba(255,255,255,.25);
  flex-shrink: 0;
  white-space: nowrap;
}
.vb-item:last-child { border-right: none; }
.vb-icon { font-size: 1.25rem; }
.vb-text { font-family: var(--font-display); font-weight: 700; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--white); }
.vb-sub { font-size: .72rem; color: rgba(255,255,255,.65); margin-top: .1rem; font-weight: 500; }

/* ============================================================
   SERVICES — dark cards, edge-to-edge
   ============================================================ */
.services-section { background: var(--ink-2); padding: 6rem 0; }
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-label::before { display: none; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px;
  background: rgba(0,173,239,.08);
  border: 1px solid rgba(0,173,239,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--ink-3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background var(--t);
  text-decoration: none;
  cursor: pointer;
}
.service-card:hover { background: var(--ink-4); }
.sc-image { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.sc-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.5) saturate(.6); transition: transform .5s ease, filter .3s ease; }
.service-card:hover .sc-image img { transform: scale(1.05); filter: brightness(.35) saturate(.4); }
.sc-image::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to top, var(--ink-3), transparent); transition: height .3s ease; }
.service-card:hover .sc-image::after { height: 70%; background: linear-gradient(to top, var(--ink-4), transparent); }
.sc-body { padding: 1.4rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.sc-icon { font-size: 1.4rem; margin-bottom: .5rem; }
.sc-body h3 { font-size: 1.45rem; color: var(--white); margin-bottom: .45rem; transition: color var(--t); }
.service-card:hover .sc-body h3 { color: var(--blue); }
.sc-body p { font-size: .82rem; color: var(--slate); margin-bottom: 1rem; flex: 1; }
.sc-link { font-family: var(--font-display); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); display: flex; align-items: center; gap: .35rem; transition: gap var(--t); }
.service-card:hover .sc-link { gap: .6rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--ink); padding: 6rem 0; }
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* Connecting line */
.steps-wrapper::after {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 27px);
  right: calc(12.5% + 27px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue) 0%, rgba(0,173,239,.1) 100%);
}
.step-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(0,173,239,.06);
  position: relative;
  z-index: 1;
  transition: background var(--t);
}
.step-card:last-child { border-right: none; }
.step-card:hover { background: var(--ink-2); }
.step-num {
  width: 54px;
  height: 54px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--glow-blue);
}
.step-card h4 { color: var(--white); margin-bottom: .5rem; font-size: 1.25rem; }
.step-card p { font-size: .82rem; color: var(--slate); line-height: 1.7; }

/* ============================================================
   AREAS
   ============================================================ */
.areas-section { background: var(--warm); padding: 6rem 0; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 1px;
  background: var(--warm-2);
  border: 1px solid #DDE5EC;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.area-card {
  background: var(--white);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--t);
  display: block;
}
.area-card:hover { background: var(--ink); }
.area-card-icon { font-size: 1.1rem; margin-bottom: .45rem; transition: transform var(--t); }
.area-card:hover .area-card-icon { transform: scale(1.2); }
.area-card-name { font-family: var(--font-display); font-weight: 700; font-size: .98rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink); transition: color var(--t); }
.area-card:hover .area-card-name { color: var(--blue); }
.area-card-region { font-size: .7rem; color: #7A8FA0; margin-top: .2rem; transition: color var(--t); }
.area-card:hover .area-card-region { color: var(--slate); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--ink-2); padding: 6rem 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.testimonial-card { background: var(--ink-3); border: 1px solid rgba(0,173,239,.1); border-radius: var(--radius-lg); padding: 2rem; transition: all var(--t); }
.testimonial-card:hover { border-color: rgba(0,173,239,.35); transform: translateY(-3px); box-shadow: var(--glow-blue); }
.testimonial-stars { color: #E8A80A; font-size: .9rem; margin-bottom: .85rem; letter-spacing: .1em; }
.testimonial-text { color: var(--slate-light); font-size: .9rem; line-height: 1.78; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: var(--white); font-family: var(--font-display); font-weight: 800; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; color: var(--white); font-size: .88rem; }
.testimonial-area { font-size: .72rem; color: var(--slate); }

/* ============================================================
   BRANDS
   ============================================================ */
.brands-section { background: var(--ink); padding: 5rem 0; }
.brands-section h2 { color: var(--white); margin-bottom: 2.5rem; }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 1px; background: rgba(0,173,239,.06); border: 1px solid rgba(0,173,239,.1); border-radius: var(--radius-lg); overflow: hidden; }
.brand-chip { background: var(--ink-2); padding: 1.1rem .75rem; text-align: center; font-family: var(--font-display); font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); transition: all var(--t); display: block; }
.brand-chip:hover { background: var(--blue); color: var(--white); }
/* alias for footer */
.brands-strip { background: var(--ink); padding: 5rem 0; }
.brands-strip h2 { color: var(--white); margin-bottom: 2.5rem; }
.brands-strip .section-label { color: var(--blue); }
.brands-strip .section-label::before { background: var(--blue); }

/* ============================================================
   BOOKING SECTION (interior pages)
   ============================================================ */
.booking-section { background: var(--ink-2); padding: 6rem 0; position: relative; overflow: hidden; }
.booking-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: rgba(0,173,239,.05); pointer-events: none; }
.booking-wrapper { display: grid; grid-template-columns: 1fr 1.25fr; gap: 5rem; align-items: start; }
.booking-title { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .75rem; }
.booking-subtitle { color: var(--slate); margin-bottom: 2rem; }
.booking-guarantees { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
.booking-guarantee-item { display: flex; align-items: center; gap: .65rem; font-size: .88rem; font-weight: 600; color: var(--slate-light); }
.bg-check { width: 20px; height: 20px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 900; flex-shrink: 0; }
.or-text { color: var(--slate); font-size: .8rem; margin-bottom: .75rem; opacity: .5; }
.booking-alt-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }

.booking-form {
  background: var(--ink-3);
  border: 1px solid rgba(0,173,239,.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border-top: 3px solid var(--blue);
}
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-family: var(--font-display); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid rgba(0,173,239,.15);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}
.form-group input::placeholder { color: rgba(139,168,190,.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,173,239,.12); }
.form-group select option { background: var(--ink-3); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.booking-submit { margin-top: .5rem; }
.form-disclaimer { text-align: center; font-size: .73rem; color: var(--slate); margin-top: .75rem; opacity: .7; }
.booking-success { text-align: center; padding: 3rem 2rem; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.booking-success h3 { color: var(--white); margin-bottom: .75rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--blue);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, transparent 60%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); position: relative; z-index: 1; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 2.25rem; position: relative; z-index: 1; font-size: 1.05rem; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { background: var(--ink); padding: 5rem 0 4rem; position: relative; overflow: hidden; border-bottom: 1px solid rgba(0,173,239,.1); }
.page-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(ellipse at 80% 50%, rgba(0,173,239,.08) 0%, transparent 70%); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .68rem; color: var(--slate); margin-bottom: 1.25rem; flex-wrap: wrap; font-family: var(--font-display); letter-spacing: .12em; text-transform: uppercase; }
.breadcrumb a { color: var(--slate); transition: color var(--t); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-sep { color: rgba(139,168,190,.3); }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero .page-hero-desc { color: var(--slate-light); font-size: 1rem; max-width: 600px; line-height: 1.78; }

/* ============================================================
   PROBLEMS
   ============================================================ */
.problems-section { background: var(--ink-2); padding: 5rem 0; }
.problems-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1px; background: rgba(0,173,239,.07); border: 1px solid rgba(0,173,239,.1); border-radius: var(--radius-lg); overflow: hidden; }
.problem-chip { display: flex; align-items: center; gap: .65rem; background: var(--ink-3); padding: 1rem 1.25rem; font-size: .88rem; font-weight: 600; color: var(--slate-light); transition: all var(--t); }
.problem-chip::before { content: '→'; font-size: .75rem; color: var(--blue); flex-shrink: 0; font-weight: 900; }
.problem-chip:hover { background: var(--ink-4); color: var(--blue); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--ink); padding: 6rem 0; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,173,239,.1); }
.faq-item:first-child { border-top: 1px solid rgba(0,173,239,.1); }
.faq-item.open { border-color: rgba(0,173,239,.3); }
.faq-question { width: 100%; text-align: left; padding: 1.35rem 0; background: none; border: none; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: .03em; color: var(--white); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color var(--t); }
.faq-question:hover { color: var(--blue); }
.faq-icon { width: 28px; height: 28px; border: 1px solid rgba(0,173,239,.25); background: var(--ink-2); display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; transition: all var(--t); border-radius: var(--radius); color: var(--slate); }
.faq-item.open .faq-icon { background: var(--blue); color: var(--white); border-color: var(--blue); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.25rem; }
.faq-answer p { font-size: .9rem; color: var(--slate); line-height: 1.78; }

/* ============================================================
   FLOATING MOBILE CTA
   ============================================================ */
.float-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: var(--ink); border-top: 1px solid rgba(0,173,239,.2); padding: .6rem 1rem; gap: .5rem; }
.float-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: .35rem; padding: .7rem .4rem; font-family: var(--font-display); font-weight: 700; font-size: .76rem; text-align: center; transition: all var(--t); letter-spacing: .06em; text-transform: uppercase; border-radius: var(--radius); }
.float-call { background: var(--ink-4); color: var(--white); }
.float-whatsapp { background: var(--wa); color: var(--white); }
.float-book { background: var(--blue); color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); border-top: 1px solid rgba(0,173,239,.1); }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-desc { color: var(--slate); font-size: .85rem; margin-bottom: 1.5rem; line-height: 1.72; }
.footer-contact-items { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.footer-contact-link { color: var(--slate); font-size: .85rem; transition: color var(--t); }
.footer-contact-link:hover { color: var(--blue); }
.footer-badges { display: flex; flex-wrap: wrap; gap: .4rem; }
.badge { background: rgba(0,173,239,.08); border: 1px solid rgba(0,173,239,.15); color: var(--slate); padding: .25rem .7rem; font-size: .68rem; font-weight: 700; font-family: var(--font-display); letter-spacing: .1em; text-transform: uppercase; border-radius: 100px; }
.footer-heading { font-family: var(--font-display); font-size: .68rem; font-weight: 800; color: var(--slate); letter-spacing: .22em; text-transform: uppercase; margin-bottom: 1.25rem; opacity: .5; }
.footer-links { display: flex; flex-direction: column; gap: .35rem; }
.footer-links-2col { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem .5rem; }
.footer-links a { color: var(--slate); font-size: .83rem; transition: color var(--t); }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.04); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { color: rgba(139,168,190,.35); font-size: .78rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(139,168,190,.35); font-size: .78rem; transition: color var(--t); }
.footer-bottom-links a:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-body { grid-template-columns: 1fr 380px; }
  .hero-form-panel { padding: 2.5rem 2rem; }
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .header-ctas { display: none; }
  .hamburger { display: flex; }
  .hero-body { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3.5rem 0 2rem; }
  .hero-form-panel { border-left: none; border-top: 1px solid rgba(0,173,239,.15); padding: 2.5rem 0; }
  .steps-wrapper { grid-template-columns: 1fr 1fr; }
  .steps-wrapper::after { display: none; }
  .booking-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { padding: 3rem 0 2rem; }
  .float-cta { display: flex; }
  body { padding-bottom: 65px; }
  .topbar-right { display: none; }
  .steps-wrapper { grid-template-columns: 1fr; }
  .hf-row { grid-template-columns: 1fr; }
  .value-bar-inner { gap: 0; }
  .hero { min-height: auto; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.1rem; }
  .hero-ctas { flex-direction: column; }
  .booking-form { padding: 1.5rem; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
.animate-fade-up   { animation: fadeUp .6s ease both; }
.animate-fade-up-2 { animation: fadeUp .6s .1s ease both; }
.animate-fade-up-3 { animation: fadeUp .6s .2s ease both; }
[data-animate] { opacity:0; transform:translateY(20px); transition:opacity .65s ease, transform .65s ease; }
[data-animate].in-view { opacity:1; transform:translateY(0); }
