/* =================================================================
   Blue Waves Pool & Spa — styles.css
   Single font (Poppins) · Teal + Coral palette · Light scroll-aware nav
   ================================================================= */

/* === DESIGN TOKENS ====================================================== */
:root {
  /* brand */
  --brand: #0e7490;
  --brand-dark: #155e75;
  --brand-darker: #164e63;
  --brand-light: #22d3ee;
  --brand-lighter: #67e8f9;
  --brand-bg: #ecfeff;
  --brand-bg-soft: #cffafe;

  /* CTA / accent */
  --cta: #f97316;
  --cta-dark: #ea580c;
  --cta-light: #fb923c;
  --cta-bg: #fff7ed;

  /* neutral */
  --ink: #0f172a;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-tint: #f1f5f9;

  --border: #e2e8f0;
  --border-soft: #f1f5f9;

  /* shadow */
  --shadow-sm: 0 1px 3px rgba(15,23,42,.06);
  --shadow-md: 0 4px 16px rgba(15,23,42,.08);
  --shadow-lg: 0 16px 48px rgba(15,23,42,.12);
  --shadow-cta: 0 8px 24px rgba(249,115,22,.32);
  --shadow-cta-hover: 0 12px 32px rgba(249,115,22,.45);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;

  --container: 1200px;
  --container-narrow: 880px;

  --header-h: 68px;
  --nav-top: 18px;
  --nav-max: 1140px;
}

/* === RESET ============================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  /* match the hero's gradient start so the area behind the floating pill nav blends seamlessly */
  background: var(--brand-bg);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-dark); }
button { font: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY ========================================================= */
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.2; color: var(--ink); letter-spacing: -0.015em; }
h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; margin-bottom: 0.4em; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.3rem); font-weight: 600; }
h4 { font-size: 0.92rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
p { color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
  padding: 6px 14px;
  background: var(--brand-bg);
  border-radius: var(--radius-pill);
}

/* === LAYOUT ============================================================= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head p { font-size: 1.05rem; }

/* === BUTTONS ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 0;
  line-height: 1.2;
}
.btn-cta { background: var(--cta); color: white; box-shadow: var(--shadow-cta); }
.btn-cta:hover { background: var(--cta-dark); transform: translateY(-2px); box-shadow: var(--shadow-cta-hover); color: white; }
.btn-brand { background: var(--brand); color: white; }
.btn-brand:hover { background: var(--brand-dark); color: white; transform: translateY(-1px); }
.btn-outline { background: white; color: var(--brand); border: 1.5px solid var(--brand); }
.btn-outline:hover { background: var(--brand); color: white; }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: var(--bg-tint); color: var(--brand); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn-lg { padding: 17px 34px; font-size: 16px; }

.btn-row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* === NAV (floating pill) ============================================== */
.nav {
  position: fixed;
  top: var(--nav-top);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: var(--nav-max);
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: box-shadow var(--transition-slow), background var(--transition), top var(--transition-slow), border-radius var(--transition);
  height: var(--header-h);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1), 0 1px 3px rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.08);
}
.nav-inner {
  position: relative;
  height: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-left {
  display: flex; align-items: center; gap: 10px;
  flex: 0 0 auto;
}
.nav-brand { display: flex; align-items: center; }
.nav-logo { height: 40px; width: auto; }
.nav-links {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex; gap: 6px; align-items: center;
  pointer-events: auto;
}
.nav-link {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.nav-link:hover { color: var(--brand); background: rgba(14, 116, 144, 0.08); }
.nav-link.active { color: var(--brand); background: var(--brand-bg); }

.nav-actions { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.nav-phone:hover { color: var(--brand); background: var(--brand-bg); }
.nav-phone svg { width: 15px; height: 15px; color: var(--brand); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-left: 4px;
}
.lang-toggle a {
  color: var(--text-light);
  font-weight: 500;
  padding: 2px 0;
  transition: color var(--transition);
}
.lang-toggle a:hover { color: var(--brand); }
.lang-toggle a.active {
  color: var(--brand);
  font-weight: 700;
}
.lang-toggle .sep {
  color: var(--border);
  font-weight: 300;
  user-select: none;
}
@media (max-width: 480px) {
  .lang-toggle { font-size: 11px; gap: 6px; margin-left: 2px; }
}

.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 0; border-radius: 50%;
  background: var(--bg-tint);
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: all var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed; top: calc(var(--nav-top) + var(--header-h) + 8px);
  left: 16px; right: 16px;
  background: white;
  padding: 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: all var(--transition);
  max-height: calc(100vh - var(--nav-top) - var(--header-h) - 30px);
  overflow-y: auto;
}
.nav-mobile.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-mobile ul { display: grid; gap: 6px; }
.nav-mobile a {
  display: block;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 15.5px; font-weight: 500;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}
.nav-mobile a:hover { background: var(--brand-bg); }
.nav-mobile a.btn { margin-top: 8px; padding: 14px; }

.nav--minimal .nav-actions .btn-cta { display: none; }

/* push everything below the floating nav */
body { padding-top: calc(var(--nav-top) + var(--header-h) + 12px); }

/* === HERO =============================================================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--brand-bg) 0%, white 60%);
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: -20%;
  width: 70%; height: 100%;
  background: radial-gradient(ellipse at center, var(--brand-bg-soft), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center;
}
.hero-badges-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 12px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: white;
  border: 1px solid var(--brand-bg-soft);
  color: var(--brand-dark);
  padding: 7px 14px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.hero-badge-area {
  margin-bottom: 20px;
}
.hero-badge-area::before { content: '●'; font-size: 8px; color: var(--cta); margin-right: 2px; }

.hero-badge.badge-premium {
  background: var(--brand);
  border-color: var(--brand-dark);
  color: white;
}
.hero-badge.badge-premium svg { color: #fde047; } /* gold star */

.hero-badge.badge-affordable {
  background: var(--cta);
  border-color: var(--cta-dark);
  color: white;
}
.hero-badge.badge-affordable svg { color: white; }
.hero h1 {
  color: var(--ink);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  margin-bottom: 18px;
  font-weight: 700;
}
.hero h1 .accent { color: var(--brand); position: relative; }
.hero h1 .accent::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 6px; background: rgba(34, 211, 238, 0.35);
  z-index: -1;
}
.hero-sub {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 400;
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-bullets {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px;
  margin-bottom: 28px;
}
.hero-bullets li {
  color: var(--text);
  font-size: 14.5px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.hero-bullets li::before {
  content: ''; flex: 0 0 22px; height: 22px;
  background: var(--brand-bg);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230e7490'%3E%3Cpath d='M6.5 11.5L3 8l1-1 2.5 2.5L12 4l1 1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  background-size: 14px;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-trust-mini {
  margin-top: 28px;
  display: flex; gap: 18px; flex-wrap: wrap; align-items: center;
  color: var(--text-muted);
  font-size: 13px; font-weight: 500;
}
.hero-trust-mini span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust-mini span::before { content: '✓'; color: var(--cta); font-weight: 700; }

/* hero visual right column */
.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  background: var(--bg-tint);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual-card {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-md);
}
.hero-visual-card-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cta); color: white;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 40px;
}
.hero-visual-card-icon svg { width: 20px; height: 20px; }
.hero-visual-card .lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.hero-visual-card .val { font-size: 15px; font-weight: 600; color: var(--ink); }

/* === HERO FORM (alternative if used) ==================================== */
.hero-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-lg);
}
.form-title { font-size: 1.4rem; color: var(--ink); margin-bottom: 4px; font-weight: 600; }
.form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }

/* === FORMS ============================================================== */
.field { margin-bottom: 14px; }
.field label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--text); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}
.field textarea {
  height: auto;
  min-height: 96px;
  padding: 12px 14px;
  line-height: 1.5;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  cursor: pointer;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: white;
  box-shadow: 0 0 0 3px rgba(14,116,144,0.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-error { color: #c0392b; font-size: 12px; margin-top: 4px; display: none; }
.field.invalid .field-error { display: block; }
.field.invalid input, .field.invalid select { border-color: #c0392b; background: #fef5f5; }
.honeypot { position: absolute; left: -9999px; }
.form-fineprint {
  font-size: 11.5px; color: var(--text-light);
  text-align: center; margin-top: 10px;
}

/* === TRUST STRIP ======================================================== */
.trust {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 24px 0;
}
.trust-row {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 38px;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text);
  font-size: 13.5px; font-weight: 500;
}
.trust-item svg { width: 18px; height: 18px; color: var(--cta); flex: 0 0 18px; }

/* === SERVICES =========================================================== */
.services { background: var(--bg-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
}
.service-card {
  position: relative;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px 34px 34px;
  transition: border-color var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  overflow: hidden;
  min-height: 260px;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
}
.service-card .num {
  position: absolute; top: 18px; right: 22px;
  font-size: 44px; font-weight: 700;
  color: var(--brand-bg-soft);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color var(--transition);
  pointer-events: none;
}
.service-card:hover .num { color: var(--cta-bg); }
.service-card .ico {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: white;
  box-shadow: 0 8px 18px rgba(14, 116, 144, 0.25);
  transition: transform var(--transition);
}
.service-card:hover .ico { transform: rotate(-4deg) scale(1.05); }
.service-card .ico svg { width: 26px; height: 26px; }
.service-card h3 {
  color: var(--ink);
  margin-bottom: 10px;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 600;
}
.service-card p {
  font-size: 14.5px; line-height: 1.6;
  flex: 1;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.service-card .service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600;
  color: var(--cta);
  transition: gap var(--transition), color var(--transition);
}
.service-card .service-link::after {
  content: '→';
  transition: transform var(--transition);
}
.service-card:hover .service-link { color: var(--cta-dark); gap: 10px; }
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--cta), var(--cta-light));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition-slow);
}
.service-card:hover::before { transform: scaleX(1); }

/* === REAL RESULTS (before/after) ======================================= */
.results { background: var(--bg-soft); }
.pair-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}
.pair-block + .pair-block { margin-top: 56px; }
.pair-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brand-bg);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}
.pair-img img { width: 100%; height: 100%; object-fit: cover; }
.pair-tag {
  position: absolute; top: 14px; left: 14px;
  background: white;
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.pair-tag.tag-before { color: #b54836; }
.pair-tag.tag-after { color: var(--brand); }
.pair-meta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 0 4px;
}
.pair-caption {
  font-size: 15px; color: var(--text); font-weight: 500;
  max-width: 620px; line-height: 1.5;
}
.pair-stats {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-muted);
}
.pair-stats strong { color: var(--ink); font-weight: 600; }

.owner-quote {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-top: 44px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.owner-quote::before {
  content: '"';
  position: absolute; top: -38px; right: 28px;
  font-size: 220px; line-height: 1; font-weight: 700;
  color: rgba(255,255,255,0.08);
  font-family: Georgia, serif;
}
.owner-quote-text {
  color: white;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  font-weight: 500;
  flex: 1; min-width: 260px;
  position: relative; z-index: 1;
}
.owner-quote-attr {
  font-size: 12px; color: rgba(255,255,255,0.92);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  position: relative; z-index: 1;
  white-space: nowrap;
}

/* === GALLERY (Pinterest-style masonry + Load More + Lightbox) ========== */
.gallery { background: white; }
.gallery-grid {
  column-count: 4;
  column-gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0 0 14px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
  break-inside: avoid;
  display: block;
  cursor: zoom-in;
  background: var(--brand-bg);
}
.gallery-item:hover { box-shadow: var(--shadow-md); }
.gallery-item img {
  width: 100%; height: auto;
  display: block;
  transition: filter var(--transition);
}
.gallery-item:hover img { filter: brightness(1.04); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,23,42,0.55));
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 16px;
  color: white; font-size: 13px; font-weight: 500;
  pointer-events: none;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .zoom-icon {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(-4px);
  transition: all var(--transition);
}
.gallery-item:hover .zoom-icon { opacity: 1; transform: translateY(0); }
.gallery-item .zoom-icon svg { width: 16px; height: 16px; color: var(--brand); }
.gallery-item.is-hidden { display: none; }

.gallery-loadmore {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-top: 40px;
}
.gallery-loadmore .count {
  font-size: 13px; color: var(--text-muted);
  letter-spacing: 0.06em;
}

@media (max-width: 1024px) { .gallery-grid { column-count: 3; } }
@media (max-width: 720px)  { .gallery-grid { column-count: 2; column-gap: 10px; } .gallery-item { margin-bottom: 10px; } }
@media (max-width: 420px)  { .gallery-grid { column-count: 2; } }

/* === LIGHTBOX =========================================================== */
.lb {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(15, 23, 42, 0.92);
  display: none; align-items: center; justify-content: center;
  padding: 60px 24px 24px;
  opacity: 0;
  transition: opacity var(--transition-slow);
}
.lb.open { display: flex; }
.lb.visible { opacity: 1; }
.lb-img-wrap {
  position: relative;
  max-width: min(1400px, 100%);
  max-height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.lb-img {
  max-width: 100%; max-height: calc(100vh - 130px);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  background: #000;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(255,255,255,0.12);
  color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; line-height: 1;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background var(--transition);
  cursor: pointer;
  z-index: 9001;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.22); }
.lb-close { top: 18px; right: 18px; }
.lb-prev  { top: 50%; left: 18px;  transform: translateY(-50%); }
.lb-next  { top: 50%; right: 18px; transform: translateY(-50%); }
.lb-counter {
  position: fixed; top: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em;
  z-index: 9001;
}
.lb-caption {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: rgba(15,23,42,0.7);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  max-width: 90%;
  text-align: center;
  z-index: 9001;
}
@media (max-width: 720px) {
  .lb-prev, .lb-next { width: 42px; height: 42px; font-size: 22px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-close { top: 12px; right: 12px; width: 42px; height: 42px; }
}

/* === INCLUDED (what you get) =========================================== */
.included { background: var(--brand-bg); }
.included-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
.included-list { display: grid; gap: 12px; margin-top: 22px; }
.included-list li {
  display: flex; align-items: flex-start; gap: 14px;
  background: white;
  padding: 16px 18px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: 14.5px; color: var(--text); font-weight: 500;
  transition: transform var(--transition);
}
.included-list li:hover { transform: translateX(4px); }
.included-list li::before {
  content: '';
  flex: 0 0 22px; height: 22px;
  background: var(--cta);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath d='M6.5 11.5L3 8l1-1 2.5 2.5L12 4l1 1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  background-size: 14px;
  margin-top: 1px;
}
.included-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.included-visual img,
.included-visual video { width: 100%; height: 100%; object-fit: cover; }

/* === PROCESS ============================================================ */
.process { background: white; }
.section-logo-wrap {
  text-align: center;
  margin-bottom: 28px;
}
.section-logo {
  display: inline-block;
  height: 110px; width: auto;
  margin: 0;
  filter: drop-shadow(0 8px 24px rgba(14, 116, 144, 0.18));
  animation: section-logo-float 5s ease-in-out infinite;
}
@keyframes section-logo-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@media (max-width: 720px) {
  .section-logo { height: 80px; }
  .section-logo-wrap { margin-bottom: 20px; }
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.process-step {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.process-step:hover { background: var(--brand-bg); transform: translateY(-2px); }
.process-step .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: white;
  border-radius: 50%;
  font-size: 22px; font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(14,116,144,0.3);
}
.process-step h3 { color: var(--ink); margin-bottom: 6px; }
.process-step p { font-size: 14px; }

/* === TESTIMONIALS ====================================================== */
.testimonials { background: var(--bg-soft); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.testi-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-bg-soft);
}
.testi-stars {
  display: inline-flex; gap: 2px;
  color: var(--cta);
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
}
.testi-q {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
  margin: 0;
}
.testi-q::before { content: '\201C'; color: var(--brand-bg-soft); font-size: 32px; line-height: 0; vertical-align: -8px; margin-right: 2px; font-weight: 700; }
.testi-q::after  { content: '\201D'; color: var(--brand-bg-soft); font-size: 32px; line-height: 0; vertical-align: -16px; margin-left: 2px; font-weight: 700; }
.testi-attr {
  display: flex; flex-direction: column; gap: 2px;
  border-top: 1px solid var(--border-soft);
  padding-top: 14px;
}
.testi-attr strong { color: var(--ink); font-size: 14px; font-weight: 600; }
.testi-attr span { color: var(--text-muted); font-size: 12.5px; letter-spacing: 0.02em; }

/* === FAQ ================================================================ */
.faq { background: white; }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid; gap: 12px;
}
.faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}
.faq-item[open] {
  background: white;
  border-color: var(--brand-bg-soft);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  user-select: none;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex: 0 0 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230e7490' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
  background-color: var(--cta-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23f97316' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
}
.faq-item summary:hover { color: var(--brand); }
.faq-answer {
  padding: 0 22px 22px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* === ABOUT ============================================================== */
.about {
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: ''; position: absolute; inset: 0;
  background: url('../img/gallery-2.jpg') center / cover no-repeat;
  opacity: 0.18;
}
.about::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(14,116,144,0.7) 100%);
}
.about-inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; text-align: center; padding: 0 24px; }
.about .eyebrow { background: rgba(255,255,255,0.1); color: var(--brand-light); }
.about h2 { color: white; }
.about p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem; line-height: 1.75;
  margin: 16px auto;
}
.about p strong { color: white; font-weight: 600; }
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 44px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
@media (max-width: 720px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
.about-stat .num {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  color: var(--brand-light); font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.1;
}
.about-stat .lbl {
  font-size: 12px; color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
}

/* === SERVICE AREA + FINAL CTA =========================================== */
.area {
  background: white;
  text-align: center;
  padding: 64px 0;
}
.area h3 { color: var(--text-muted); font-weight: 500; font-size: 13.5px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 14px; }
.area-cities {
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  color: var(--ink);
  font-weight: 500;
  max-width: 760px; margin: 0 auto;
  line-height: 1.5;
}

.final-cta {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 50%, var(--brand-darker) 100%);
  color: white;
  text-align: center;
  padding: 88px 24px;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(34,211,238,0.18), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(249,115,22,0.12), transparent 50%);
}
.final-cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.final-cta h2 { color: white; }
.final-cta p {
  color: rgba(255,255,255,0.85);
  margin: 14px auto 28px;
  font-size: 1.05rem;
}
.final-cta .btn-row { gap: 14px; }
.final-cta-or {
  display: block;
  margin: 22px auto 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  width: max-content;
}
.final-cta-or::before,
.final-cta-or::after {
  content: '';
  position: absolute; top: 50%;
  width: 36px; height: 1px;
  background: rgba(255, 255, 255, 0.25);
}
.final-cta-or::before { right: calc(100% + 14px); }
.final-cta-or::after  { left:  calc(100% + 14px); }

.final-cta-phone {
  display: inline-block;
  color: var(--brand-light);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  text-decoration: underline;
  text-decoration-color: rgba(34, 211, 238, 0.35);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}
.final-cta-phone:hover { color: white; text-decoration-color: rgba(255,255,255,0.8); }

/* === CTA STRIP (above footer, phone-first) ============================ */
.cta-strip {
  background: linear-gradient(135deg, var(--brand-bg) 0%, white 100%);
  border-top: 1px solid var(--border-soft);
  padding: 56px 0;
}
.cta-strip-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}
.cta-strip-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cta);
  background: var(--cta-bg);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.cta-strip-text p {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  max-width: 540px;
}
.cta-strip-actions {
  display: flex; flex-direction: column; gap: 10px;
  align-items: flex-start;
}
.cta-strip-mail {
  font-size: 13.5px;
  color: var(--text-muted);
}
.cta-strip-mail:hover { color: var(--brand); }

/* === FOOTER ============================================================= */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 44px;
}
.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  /* logo PNG already transparent — no BG needed */
  filter: brightness(0) invert(1) opacity(0.92); /* render logo white on dark footer */
}
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 13.5px; line-height: 1.65; max-width: 280px; }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--cta); color: white; }
.footer-social svg { width: 16px; height: 16px; }
.footer h4 {
  font-size: 12px; color: var(--brand-light);
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 16px;
}
.footer ul { display: grid; gap: 8px; }
.footer a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer a:hover { color: var(--brand-light); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact svg { width: 16px; height: 16px; flex: 0 0 16px; margin-top: 3px; color: var(--brand-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: rgba(255,255,255,0.45);
}

/* === STICKY MOBILE CTA ================================================== */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(15, 23, 42, 0.1);
  padding: 10px 14px;
  gap: 10px;
}
.sticky-cta a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px 12px;
  border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600;
}
.sticky-cta .sticky-call { background: var(--brand); color: white; }
.sticky-cta .sticky-quote { background: var(--cta); color: white; }
.sticky-cta svg { width: 16px; height: 16px; }

/* === QUOTE PAGE ========================================================= */
.quote-page {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--brand-bg) 0%, white 50%);
  position: relative;
  padding-bottom: 80px;
}
.quote-page::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 420px;
  background: url('../img/hero.jpg') center / cover no-repeat;
  opacity: 0.18;
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}
.quote-card {
  position: relative; z-index: 2;
  max-width: 560px; margin: 40px auto 0;
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 30px 80px rgba(15,23,42,0.2);
  border: 1px solid var(--border-soft);
}
@media (max-width: 480px) {
  .quote-card { margin: 24px auto 0; padding: 28px 22px; }
}
.quote-card h1 {
  font-size: clamp(1.5rem, 3.2vw, 1.95rem);
  color: var(--ink);
  margin-bottom: 8px;
}
.quote-card .lead {
  font-size: 15px; color: var(--text-muted); margin-bottom: 24px;
}
.quote-trust {
  margin-top: 26px; padding-top: 22px;
  border-top: 1px solid var(--border-soft);
  display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center;
}
.quote-trust span {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.quote-trust span::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--cta);
}
.quote-step { display: none; }
.quote-step.active { display: block; }
.quote-progress { display: flex; gap: 6px; margin-bottom: 22px; }
.quote-progress span {
  flex: 1; height: 4px; border-radius: 2px;
  background: var(--border);
  transition: background var(--transition);
}
.quote-progress span.active { background: var(--cta); }

.quote-mini {
  position: relative; z-index: 2;
  max-width: 560px; margin: 28px auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px; padding: 0 24px;
}
.quote-mini strong { color: var(--brand); }

/* === THANK YOU ========================================================== */
.thank {
  min-height: 100vh;
  background: linear-gradient(165deg, white 0%, var(--brand-bg) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 60px 24px;
}
.thank-card {
  max-width: 600px; width: 100%;
  background: white;
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--border-soft);
}
.thank-card .check {
  width: 80px; height: 80px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-dark) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.3);
}
.thank-card .check svg { width: 38px; height: 38px; color: white; }
.thank-card img.thank-logo { height: 48px; margin: 0 auto 24px; }
.thank-card h1 { color: var(--ink); margin-bottom: 8px; font-size: clamp(1.7rem, 3.5vw, 2.2rem); }
.thank-card .lead { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; }
.thank-call {
  background: var(--brand-bg);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 22px;
}
.thank-call .lbl {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand-dark); margin-bottom: 6px;
}
.thank-call a {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink);
}
.thank-back {
  font-size: 14px; color: var(--text-muted);
  display: inline-block; margin-top: 18px;
}

/* === RESPONSIVE ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-bullets { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; gap: 36px; }
  .included-visual { aspect-ratio: 16 / 10; max-width: 540px; margin: 0 auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-strip-inner { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .cta-strip-actions { align-items: center; }
  .cta-strip-text p { margin: 0 auto; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-mobile { display: block; }
  .nav-phone span { display: none; }
  section { padding: 64px 0; }
  .field-row { grid-template-columns: 1fr; }
  .ba { aspect-ratio: 4 / 3; max-height: 460px; }
}

@media (max-width: 768px) {
  body { padding-bottom: 72px; }
  .sticky-cta { display: flex; }
  .pair-row { grid-template-columns: 1fr; gap: 12px; }
  .about-stats { grid-template-columns: 1fr; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-row { gap: 10px 24px; }
  .trust-item { font-size: 12.5px; }
  .nav-inner { padding: 0 16px; }
  .nav-logo { height: 38px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

/* Desktop: show text, hide icon */
.nav-cta-icon { display: none; }

@media (max-width: 600px) {
  /* Mobile: shrink nav CTA to a circular icon button (matches phone icon style) */
  .nav-actions > .nav-cta {
    width: 38px; height: 38px;
    padding: 0;
    border-radius: 50%;
    gap: 0;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  }
  .nav-cta-text { display: none; }
  .nav-cta-icon { display: block; }
  .nav-phone {
    width: 38px; height: 38px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    background: var(--brand-bg);
  }
}

@media (max-width: 480px) {
  .container, .hero-grid { padding: 0 16px; }
  section { padding: 52px 0; }
  .quote-card { padding: 30px 22px; }
  .thank-card { padding: 38px 22px; }
  .nav-actions { gap: 6px; }
  .nav-phone { font-size: 0; padding: 6px 8px; }
  .nav-phone svg { width: 18px; height: 18px; }
}

/* === LOADER (page intro) =============================================== */
body.is-loading { overflow: hidden; }
.loader-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, var(--brand-bg) 0%, white 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 22px;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.loader-screen.hide { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  height: 130px; width: auto;
  animation: loader-pulse 1.6s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(14, 116, 144, 0.2));
}
@media (max-width: 480px) {
  .loader-logo { height: 96px; }
}
.loader-wave {
  position: relative;
  width: 200px; height: 6px;
  border-radius: 3px;
  background: var(--brand-bg-soft);
  overflow: hidden;
}
.loader-wave::after {
  content: ''; position: absolute; top: 0; left: -40%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--cta), var(--brand), transparent);
  border-radius: 3px;
  animation: loader-slide 1.4s ease-in-out infinite;
}
.loader-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-dark);
}
@keyframes loader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.06); opacity: 0.85; }
}
@keyframes loader-slide {
  0%   { left: -40%; }
  100% { left: 100%; }
}

/* === BEFORE/AFTER SLIDER (custom, no library) ========================= */
.ba {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 560px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brand-bg);
  box-shadow: var(--shadow-md);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
}
.ba img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-after { position: absolute; inset: 0; }
.ba-before-wrap {
  position: absolute; inset: 0;
  clip-path: inset(0 50% 0 0);
  -webkit-clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}
.ba-before-wrap img { position: absolute; inset: 0; }
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: white;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.15);
  will-change: left;
}
.ba-handle::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.25), 0 1px 3px rgba(15, 23, 42, 0.15);
}
.ba-handle::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 14' fill='%230e7490'%3E%3Cpath d='M7 7L11 3v3h6V3l4 4-4 4V8h-6v3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.ba-label {
  position: absolute; top: 14px;
  background: white;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  pointer-events: none;
  z-index: 3;
}
.ba-label-before { left: 14px; color: #b54836; }
.ba-label-after  { right: 14px; color: var(--brand); }

/* === UTILS ============================================================== */
.sr-only { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.text-center { text-align: center; }
