/* =========================================================
   Pipeline Plumbing Co. — Stylesheet
   ========================================================= */

:root {
  --navy-900: #0f2438;
  --navy-800: #14304a;
  --navy-700: #1b3a5c;
  --navy-600: #234a72;
  --yellow-500: #f4ea4a;
  --yellow-400: #f7ee6f;
  --yellow-600: #e0d52e;
  --white: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f3;
  --gray-200: #e2e5ea;
  --gray-400: #9aa3b0;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #1a1f26;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(15, 36, 56, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 36, 56, 0.12);
  --shadow-lg: 0 16px 40px rgba(15, 36, 56, 0.18);

  --container: 1180px;
  --font-head: "Jost", "Century Gothic", "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--navy-900);
}

h1 { font-weight: 800; letter-spacing: -0.015em; }

p { line-height: 1.65; color: var(--gray-600); margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .section-tight { padding: 44px 0; }
}

.section-alt { background: var(--gray-50); }
.section-navy {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: var(--white);
}
.section-navy h2, .section-navy h3, .section-navy p { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.78); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-700);
  background: var(--yellow-500);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-navy .eyebrow { background: rgba(244,234,74,0.16); color: var(--yellow-400); }

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

.btn-primary {
  background: var(--yellow-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--yellow-600); box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1fb955; box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy-700);
  color: var(--navy-700);
}
.btn-outline-navy:hover { background: var(--navy-700); color: var(--white); }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 30px; font-size: 17px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.navbar.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--gray-200); }

.nav-end { display: flex; align-items: center; gap: 14px; }
.navbar-cr-flag {
  width: 24px; height: auto;
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(15,36,56,0.15), var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo { display: flex; align-items: center; }
.logo-mark { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gray-700);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--navy-700); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-pill);
  background: var(--white);
  padding: 7px 13px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-800);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lang-switch svg { width: 15px; height: 15px; flex-shrink: 0; }
.lang-switch:hover { border-color: var(--navy-700); background: var(--gray-50); }
.lang-switch-block {
  width: 100%;
  justify-content: center;
  padding: 13px 16px;
  font-size: 14.5px;
  margin-top: 10px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy-900);
}
.nav-phone svg { width: 18px; height: 18px; color: var(--yellow-600); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy-900); border-radius: 2px; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 78px 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: 24px 20px 40px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 16px 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu .cta-row { flex-direction: column; margin-top: 24px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
}
@media (max-width: 480px) {
  .nav-actions > .lang-switch { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 85% 20%, rgba(244,234,74,0.14), transparent 45%),
    linear-gradient(165deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-600) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; bottom: -160px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,234,74,0.12), transparent 70%);
}
.hero-watermark {
  position: absolute;
  right: -60px; bottom: -90px;
  width: 460px; height: 460px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.hero-watermark img { width: 100%; height: 100%; }
@media (max-width: 720px) { .hero-watermark { width: 320px; height: 320px; right: -70px; bottom: -70px; } }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d873; }

.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5.4vw, 58px);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--yellow-500); }
.hero-tagline {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.02;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}
.hero-point {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.hero-point svg { width: 20px; height: 20px; color: var(--yellow-500); flex-shrink: 0; }

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  color: var(--gray-900);
}
.hero-card h3 { font-size: 19px; margin-bottom: 4px; }
.hero-card p.small { font-size: 14px; color: var(--gray-500); margin-bottom: 20px; }
.hero-quick-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.hero-quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-800);
  border: 1px solid var(--gray-100);
}
.hero-quick-item svg { width: 20px; height: 20px; color: var(--navy-700); flex-shrink: 0; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 130px 0 60px; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  padding-bottom: 26px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-800);
}
.trust-item svg { width: 22px; height: 22px; color: var(--yellow-600); }

/* ---------- Service grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-problem {
  font-size: 14.5px;
  font-style: italic;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-700);
}
.service-link svg { width: 15px; height: 15px; transition: transform 0.15s ease; }
.service-card:hover .service-link svg { transform: translateX(3px); }

/* ---------- Why Pipeline ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card { text-align: left; }
.why-num {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--yellow-600);
  margin-bottom: 10px;
}
.why-card h3 { font-size: 18px; }
.why-card p { font-size: 14.5px; }

/* ---------- Featured service split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split.reverse .split-media { order: 2; }
@media (max-width: 900px) { .split.reverse .split-media { order: 0; } }

.split-media {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 34px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.split-media::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(244,234,74,0.18), transparent 55%);
}
.split-media-inner { position: relative; z-index: 1; }
.split-media h4 { color: var(--white); font-size: 16px; margin-bottom: 18px; }
.split-check-list { display: flex; flex-direction: column; gap: 14px; }
.split-check-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,0.92);
}
.split-check-item svg { width: 20px; height: 20px; color: var(--yellow-500); flex-shrink: 0; margin-top: 1px; }

.split-content .eyebrow { margin-bottom: 14px; }
.split-content h2 { font-size: clamp(26px, 3.6vw, 34px); }
.split-content p.lead { font-size: 16.5px; color: var(--gray-600); }

/* ---------- Service Area ---------- */
.area-section { position: relative; overflow: hidden; }
.area-watermark {
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.area-watermark svg { width: 100%; height: 100%; }
.area-section .container { position: relative; z-index: 1; }

.area-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .area-wrap { grid-template-columns: 1fr; } }

.cr-badge {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px 8px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.cr-flag { width: 26px; height: auto; border-radius: 3px; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(255,255,255,0.25); }
.cr-flag-sm { width: 18px; }
.area-chip svg.cr-flag-sm { color: initial; box-shadow: 0 0 0 1px rgba(255,255,255,0.35); }

.cr-pride {
  font-weight: 700;
  color: var(--navy-800);
  font-size: 16px;
  margin-bottom: 6px;
}

.area-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.area-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700;
  color: var(--navy-800);
}
.area-chip.primary { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }
.area-chip svg { width: 15px; height: 15px; color: var(--yellow-600); }
.area-chip.primary svg:not(.cr-flag-sm) { color: var(--yellow-500); }

.area-map-card {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 30px;
  color: var(--white);
}
.area-map-card svg { width: 100%; height: auto; }
.area-map-card .caption { margin-top: 16px; font-size: 13.5px; color: rgba(255,255,255,0.7); text-align: center; }

/* ---------- Booking / Appointment ---------- */
.booking-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 980px) { .booking-wrap { grid-template-columns: 1fr; } }

.booking-intro .eyebrow { margin-bottom: 14px; }
.booking-steps { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.booking-step { display: flex; gap: 14px; }
.booking-step-num {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--yellow-500);
  color: var(--navy-900);
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.booking-step h4 { font-size: 15px; margin-bottom: 2px; color: var(--white); }
.booking-step p { font-size: 13.5px; margin: 0; color: rgba(255,255,255,0.72); }

.booking-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  color: var(--gray-900);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--navy-800); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  background: var(--gray-50);
  color: var(--gray-900);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 80px; }

/* Calendar widget */
.calendar-field { margin-bottom: 16px; }
.calendar-box {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px;
  background: var(--gray-50);
}
.calendar-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.calendar-head strong { font-size: 14.5px; color: var(--navy-900); text-transform: capitalize; }
.calendar-nav {
  display: flex; gap: 6px;
}
.calendar-nav button {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.calendar-nav button:hover { border-color: var(--navy-700); }
.calendar-nav svg { width: 16px; height: 16px; color: var(--navy-800); }

.calendar-weekdays, .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.calendar-weekdays span {
  font-size: 11px; font-weight: 700; color: var(--gray-400);
  text-transform: uppercase; padding-bottom: 6px;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 13.5px; font-weight: 600;
  border-radius: 8px;
  color: var(--gray-700);
  background: transparent;
  border: none;
}
.calendar-day.is-empty { visibility: hidden; }
.calendar-day.is-past { color: var(--gray-400); opacity: 0.4; pointer-events: none; }
.calendar-day.is-sunday { color: var(--gray-400); opacity: 0.5; pointer-events: none; }
.calendar-day:not(.is-past):not(.is-sunday):hover { background: var(--gray-100); }
.calendar-day.is-selected { background: var(--navy-900); color: var(--white); }
.calendar-day.is-today:not(.is-selected) { box-shadow: inset 0 0 0 1.5px var(--yellow-600); }

.time-slots { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.time-slot {
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700;
  color: var(--gray-700);
}
.time-slot:hover { border-color: var(--navy-700); }
.time-slot.is-selected { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }

.selected-summary {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-700);
  min-height: 18px;
}

.form-note { font-size: 12.5px; color: var(--gray-500); margin-top: 10px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #ecfdf5;
  border: 1.5px solid #34d873;
  color: #0f5132;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; color: #16a34a; }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.review-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.review-stars svg { width: 16px; height: 16px; color: var(--yellow-600); }
.review-card p { font-size: 14.5px; color: var(--gray-700); margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy-900); color: var(--yellow-500);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.review-name { font-size: 13.5px; font-weight: 700; color: var(--navy-900); }
.review-meta { font-size: 12px; color: var(--gray-500); display: flex; align-items: center; gap: 5px; }
.review-meta svg { width: 13px; height: 13px; }

.reviews-cta {
  text-align: center;
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.google-rating-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.google-rating-pill .stars { display: flex; gap: 2px; }
.google-rating-pill svg.star { width: 15px; height: 15px; color: var(--yellow-600); }

/* ---------- Emergency CTA ---------- */
.emergency {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.emergency::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(244,234,74,0.15), transparent 60%);
}
.emergency-inner { position: relative; z-index: 1; }
.emergency h2 { color: var(--white); font-size: clamp(26px, 4vw, 36px); margin-bottom: 12px; }
.emergency p { color: rgba(255,255,255,0.82); font-size: 16px; max-width: 480px; margin: 0 auto 28px; }
.emergency .cta-row { justify-content: center; }

@media (max-width: 560px) {
  .emergency { padding: 40px 22px; }
  .emergency .cta-row { flex-direction: column; }
  .emergency .btn { width: 100%; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-logo { display: flex; align-items: center; margin-bottom: 14px; }
.footer-logo .logo-mark { height: 30px; }
.footer p.desc { font-size: 14px; max-width: 280px; }
.footer h5 {
  color: var(--white); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px;
}
.footer ul li { margin-bottom: 12px; }
.footer ul a { font-size: 14px; transition: color 0.15s ease; }
.footer ul a:hover { color: var(--yellow-500); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; margin-bottom: 12px; }
.footer-contact-item svg { width: 17px; height: 17px; color: var(--yellow-500); flex-shrink: 0; }

.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--yellow-500); color: var(--navy-900); }
.footer-social svg { width: 17px; height: 17px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  padding-top: 24px;
  font-size: 12.5px;
}

/* ---------- Floating WhatsApp + sticky mobile CTA ---------- */
.floating-whatsapp {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,0.45);
  z-index: 90;
  transition: transform 0.15s ease;
}
.floating-whatsapp:hover { transform: scale(1.06); }
.floating-whatsapp svg { width: 30px; height: 30px; color: var(--white); }

@media (max-width: 720px) {
  .floating-whatsapp { bottom: 84px; right: 16px; width: 54px; height: 54px; }
  .floating-whatsapp svg { width: 26px; height: 26px; }
}

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -6px 20px rgba(15,36,56,0.12);
}
.sticky-cta-inner { display: flex; }
.sticky-cta a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 10px;
  font-weight: 700; font-size: 14.5px;
}
.sticky-cta a.call { background: var(--navy-900); color: var(--white); }
.sticky-cta a.whatsapp { background: #25d366; color: var(--white); }
.sticky-cta svg { width: 18px; height: 18px; }

@media (max-width: 720px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 58px; }
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Misc ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--yellow-500); color: var(--navy-900);
  padding: 10px 16px; font-weight: 700; z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Hiding is additive-only (a class i18n.js toggles on the inactive
   language's elements, in both directions), never a blanket
   [lang-el]{display:none}+revert pair — revert jumps straight to the UA
   default and ignores component rules like `.mobile-menu a{display:block}`,
   breaking their layout. i18n.js runs synchronously before first paint,
   so there's no separate no-JS default needed (and one previously caused
   a bug: it suppressed English permanently since nothing ever un-hid it). */
.lang-hidden { display: none !important; }
