/* =====================================================
   DeepWell Drillers — Borehole Demo Template
   Aesthetic: Technical precision, trust-first, grounded
   Fonts: Plus Jakarta Sans (headings) + DM Sans (body)
   Primary: #25D366 (WhatsApp green)
   Secondary: #1D4ED8 (deep blue — technical reliability)
   ===================================================== */

:root {
  --green:        #25D366;
  --green-dark:   #128C7E;
  --green-light:  #DCFCE7;
  --blue:         #1D4ED8;
  --blue-dark:    #1E3A8A;
  --blue-light:   #DBEAFE;
  --blue-deep:    #0F172A;
  --text:         #111827;
  --text-2:       #374151;
  --text-3:       #6B7280;
  --bg:           #FFFFFF;
  --bg-2:         #F9FAFB;
  --bg-3:         #F3F4F6;
  --border:       #E5E7EB;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow:       0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.10);
  --radius:       10px;
  --radius-lg:    16px;
  --radius-pill:  999px;
  --t:            220ms ease;
  --section-py:   5rem;
  --font-head:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (max-width: 991px) { body { padding-bottom: 76px; } }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--text); }

a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

/* === Typography === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text);
}
h1 { font-size: clamp(1.85rem, 4.2vw, 2.85rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); }

.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 0.28rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}
.label-tag-blue {
  color: #1E3A8A;
  background: var(--blue-light);
}

.section-intro {
  color: var(--text-3);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.75;
}

/* === Demo banner === */
.demo-banner {
  background: #111827;
  color: rgba(255,255,255,.8);
  font-size: 0.77rem;
  font-weight: 500;
  text-align: center;
  padding: 0.5rem 1rem;
  position: relative;
  z-index: 1050;
}

/* === Top bar === */
.top-bar {
  background: var(--blue-deep);
  color: rgba(255,255,255,.65);
  font-size: 0.78rem;
  padding: 0.45rem 0;
}
.top-bar a { color: rgba(255,255,255,.8); }
.top-bar a:hover { color: #fff; }
.top-bar .sep { opacity: .3; margin: 0 0.6rem; }

/* === Navbar === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  padding: 0.8rem 0;
  transition: border-color var(--t), box-shadow var(--t);
}
.site-nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
}
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--blue);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.navbar-nav .nav-link {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-2) !important;
  padding: 0.4rem 0.7rem !important;
  border-radius: 6px;
  transition: background var(--t), color var(--t);
}
.navbar-nav .nav-link:hover { background: var(--bg-3); color: var(--text) !important; }

/* === Buttons === */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--t);
  letter-spacing: 0.01em;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.15) 50%, transparent 70%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.btn:hover::after { opacity: 1; }

.btn-wa {
  background: var(--green);
  color: #fff !important;
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
  box-shadow: 0 2px 8px rgba(37,211,102,.22);
}
.btn-wa:hover {
  background: #1db954;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37,211,102,.32);
}
.btn-blue {
  background: var(--blue);
  color: #fff !important;
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
  box-shadow: 0 2px 8px rgba(29,78,216,.2);
}
.btn-blue:hover {
  background: #1E40AF;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(29,78,216,.3);
}
.btn-dark {
  background: var(--text);
  color: #fff !important;
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
}
.btn-dark:hover {
  background: #1F2937;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-2) !important;
  padding: 0.63rem 1.35rem;
  font-size: 0.92rem;
}
.btn-outline:hover {
  border-color: var(--text);
  color: var(--text) !important;
  background: var(--bg-3);
}
.btn-outline-green {
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green-dark) !important;
  padding: 0.63rem 1.35rem;
  font-size: 0.92rem;
}
.btn-outline-green:hover { background: var(--green-light); }

.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.82rem; }

/* === Section layout === */
.section-py    { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.section-py-sm { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.bg-alt  { background: var(--bg-2); }
.bg-dark { background: var(--text); }
.bg-deep { background: var(--blue-deep); }

/* === Hero === */
.hero {
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 30%, rgba(29,78,216,.05) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 5% 90%, rgba(37,211,102,.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-light);
  border: 1px solid rgba(29,78,216,.2);
  color: #1E3A8A;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.32rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse-blue 2.4s ease-in-out infinite;
}
@keyframes pulse-blue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(29,78,216,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(29,78,216,0); }
}

.hero h1 em {
  font-style: italic;
  color: var(--blue);
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 2rem;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 0.28rem 0;
}
.bullet-icon {
  width: 20px; height: 20px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}

.hero-responsible-note {
  font-size: 0.78rem;
  color: var(--text-3);
  background: var(--bg-2);
  border-left: 3px solid var(--blue);
  padding: 0.55rem 0.85rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.2rem 0 1.6rem;
  line-height: 1.55;
}

.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }

.hero-meta {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-3);
}
.hero-meta-dot { width: 4px; height: 4px; background: var(--text-3); border-radius: 50%; }

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img { width: 100%; display: block; }

/* === Trust strip === */
.trust-strip {
  background: var(--blue-deep);
  color: #fff;
  padding: 2.5rem 0;
}
.trust-item { text-align: center; }
.trust-value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.trust-label { font-size: 0.8rem; color: rgba(255,255,255,.55); font-weight: 500; }

/* === Service cards === */
.service-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  height: 100%;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(37,211,102,.07), var(--shadow);
  transform: translateY(-3px);
}
.service-icon {
  width: 50px; height: 50px;
  background: var(--bg-3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  margin-bottom: 1rem;
  transition: background var(--t), color var(--t);
}
.service-card:hover .service-icon {
  background: var(--green-light);
  color: var(--green-dark);
}
.service-card h3 { font-size: 1.02rem; margin-bottom: 0.45rem; }
.service-card p { font-size: 0.87rem; color: var(--text-3); margin-bottom: 1rem; }
.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--t), color var(--t);
}
.service-link:hover { color: var(--text); gap: 0.55rem; }

/* === Process steps === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.process-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  position: relative;
  transition: border-color var(--t), box-shadow var(--t);
}
.process-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.process-num {
  width: 34px; height: 34px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.process-icon-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}
.process-icon-wrap {
  color: var(--blue);
  flex-shrink: 0;
}
.process-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; }
.process-card p  { font-size: 0.84rem; color: var(--text-3); line-height: 1.6; }

/* === Scope section === */
.scope-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
  border: 1.5px solid var(--border);
}
.scope-card-included { border-color: var(--green); background: #FAFFFE; }
.scope-card-variable  { border-color: #D97706; background: #FFFEF7; }
.scope-card-excluded  { background: var(--bg-2); }
.scope-head {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1.5px solid var(--border);
}
.scope-head-green  { color: var(--green-dark); }
.scope-head-amber  { color: #92400E; }
.scope-head-muted  { color: var(--text-3); }
.scope-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.scope-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: var(--text-2);
  padding: 0.38rem 0;
  border-bottom: 1px solid var(--bg-3);
  line-height: 1.5;
}
.scope-list li:last-child { border-bottom: none; }
.scope-icon-green { color: var(--green-dark); font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }
.scope-icon-amber { color: #D97706; font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }
.scope-icon-muted { color: var(--text-3); font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }

/* === Equipment section === */
.equipment-list-grid {
  columns: 2;
  column-gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 576px) { .equipment-list-grid { columns: 1; } }
.equipment-list-grid li {
  break-inside: avoid;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-2);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--bg-3);
}
.equipment-dot { color: var(--blue); font-size: 0.65rem; flex-shrink: 0; margin-top: 4px; }

.equipment-note {
  background: var(--blue-light);
  border-left: 3px solid var(--blue);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.84rem;
  color: #1E3A8A;
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* === Gallery === */
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: box-shadow var(--t), transform var(--t);
}
.gallery-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,23,42,.8));
  color: #fff;
  font-size: 0.75rem;
  padding: 1.2rem 0.75rem 0.65rem;
  transform: translateY(100%);
  transition: transform var(--t);
}
.gallery-item:hover .gallery-caption { transform: none; }

/* === Reviews === */
.review-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t), transform var(--t);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.review-text {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0.7rem 0 1rem;
  flex: 1;
}
.reviewer-avatar {
  width: 36px; height: 36px;
  background: var(--bg-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-2);
  flex-shrink: 0;
}
.reviewer-name { font-size: 0.87rem; font-weight: 700; }
.reviewer-loc  { font-size: 0.74rem; color: var(--text-3); }
.stars { display: inline-flex; gap: 2px; }

/* === Quote form === */
.quote-section { background: var(--bg-2); }
.form-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.38rem;
  display: block;
}
.form-control, .form-select {
  width: 100%;
  padding: 0.63rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
  -webkit-appearance: none;
}
.form-control:focus, .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(37,211,102,.1);
  outline: none;
}
.form-control.error  { border-color: #DC2626; }
.form-error { color: #DC2626; font-size: 0.74rem; margin-top: 0.28rem; display: none; }
.form-error.show     { display: block; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}
textarea.form-control { resize: vertical; min-height: 85px; }

.form-check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.form-check-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.form-check-pill input[type="checkbox"] { accent-color: var(--green); width: 14px; height: 14px; }
.form-check-pill label {
  font-size: 0.82rem;
  color: var(--text-2);
  cursor: pointer;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.7rem;
  transition: background var(--t), border-color var(--t);
}
.form-check-pill input:checked + label {
  background: var(--green-light);
  border-color: var(--green);
  color: var(--green-dark);
}

.honeypot { display: none !important; visibility: hidden; }

.form-privacy { font-size: 0.74rem; color: var(--text-3); text-align: center; margin-top: 0.75rem; }

.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.visible { display: block; }
.success-icon {
  width: 56px; height: 56px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.next-steps {
  text-align: left;
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin: 1rem 0 1.5rem;
}
.next-steps li { font-size: 0.87rem; color: var(--text-2); padding: 0.25rem 0; }
.next-steps li::before { content: "→ "; color: var(--green-dark); font-weight: 700; }

/* === Checklist strip === */
.checklist-strip {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #1E3A8A 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
}
.checklist-strip h3 { color: #fff; font-size: 1.3rem; }
.checklist-strip p  { color: rgba(255,255,255,.65); font-size: 0.92rem; margin: 0.5rem 0 1.5rem; }

/* === FAQ === */
.faq-item { border-bottom: 1.5px solid var(--border); }
.faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 0;
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color var(--t);
}
.faq-btn:hover { color: var(--blue); }
.faq-icon {
  width: 22px; height: 22px;
  background: var(--bg-3);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), transform var(--t);
}
.faq-btn[aria-expanded="true"] .faq-icon {
  background: var(--blue-light);
  transform: rotate(45deg);
}
.faq-body { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-body-inner {
  padding-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-3);
  line-height: 1.75;
}

/* === CTA band === */
.cta-band {
  background: var(--blue-deep);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-band p  { color: rgba(255,255,255,.6); margin-bottom: 2rem; font-size: 1rem; }

/* === Footer === */
.site-footer {
  background: #060D17;
  color: rgba(255,255,255,.55);
  padding: 3.5rem 0 2rem;
}
.footer-head {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.28);
  margin-bottom: 0.8rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.42rem; }
.footer-links a { color: rgba(255,255,255,.45); font-size: 0.85rem; }
.footer-links a:hover { color: #fff; }
.footer-meta { font-size: 0.8rem; color: rgba(255,255,255,.35); line-height: 1.6; }
.footer-hr { border-color: rgba(255,255,255,.07); margin: 2.5rem 0 1.5rem; }
.footer-bottom { font-size: 0.76rem; color: rgba(255,255,255,.26); }

/* === Mobile sticky bar === */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1040;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 0.65rem 0.75rem;
  display: flex;
  gap: 0.45rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.mobile-cta-bar .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.79rem;
  padding: 0.55rem 0.5rem;
}
@media (min-width: 992px) { .mobile-cta-bar { display: none !important; } }

/* === Scroll reveal === */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

/* === Lightbox === */
.lightbox-img { max-width: 100%; border-radius: var(--radius); display: block; margin: 0 auto; }
.modal-caption { font-size: 0.85rem; color: var(--text-3); text-align: center; margin-top: 0.75rem; }

/* === Map embed === */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe { display: block; width: 100%; }

/* === Utility === */
.text-green { color: var(--green-dark); }
.text-blue  { color: var(--blue); }
.text-muted { color: var(--text-3); }
