/* ==========================================================================
   CA Wellpoints and Boreholes — Site Stylesheet
   Modern, dependency-free design system (no Bootstrap / Mobirise)
   ========================================================================== */

:root {
  --navy: #0b2545;
  --navy-dark: #071829;
  --blue: #12468f;
  --blue-light: #1d6fc7;
  --teal: #0ea5b7;
  --teal-light: #4fd1de;
  --sand: #e08e2d;
  --ink: #142433;
  --grey-700: #4a5a68;
  --grey-500: #7a8894;
  --grey-200: #e6ebef;
  --grey-100: #f4f7f9;
  --white: #ffffff;

  --font-body: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(11, 37, 69, 0.08);
  --shadow-md: 0 10px 30px rgba(11, 37, 69, 0.14);
  --shadow-lg: 0 20px 50px rgba(11, 37, 69, 0.22);

  --gradient-brand: linear-gradient(120deg, var(--navy) 0%, var(--blue) 55%, var(--teal) 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0 0 0.6em; line-height: 1.2; font-weight: 700; color: var(--navy); }
p { margin: 0 0 1em; }
button { font-family: inherit; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }

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

.section { padding: 76px 0; }
.section-tight { padding: 48px 0; }
.section-alt { background: var(--grey-100); }
.section-dark {
  background: var(--gradient-brand);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-dark .eyebrow { color: var(--teal-light); }

.section-head { max-width: 720px; margin: 0 0 40px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--grey-700); font-size: 1.08rem; }
.section-dark .section-head p { color: rgba(255,255,255,0.85); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--sand); color: var(--navy-dark); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #f0a039; box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-dark); }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

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

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(11, 37, 69, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 14px rgba(0,0,0,0.15);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.08rem;
  line-height: 1.15;
}
.brand img { height: 46px; width: auto; border-radius: 8px; }
.brand span { display: block; }
.brand small { display: block; font-weight: 500; font-size: 0.72rem; color: var(--teal-light); letter-spacing: 0.06em; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--white);
  padding: 8px;
  cursor: pointer;
}
.nav-toggle svg { width: 28px; height: 28px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li { position: relative; }
.nav-links a {
  display: block;
  padding: 10px 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links > li > a:hover,
.nav-links > li > a:focus-visible,
.nav-links > li.open > a { background: rgba(255,255,255,0.1); color: var(--teal-light); }

.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 8px;
  translate: 0 -2px;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a { color: var(--navy); padding: 10px 14px; border-radius: 6px; }
.dropdown a:hover, .dropdown a:focus-visible { background: var(--grey-100); color: var(--blue); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 10px 18px; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(7,24,41,0.92) 10%, rgba(11,37,69,0.75) 45%, rgba(14,165,183,0.35) 100%);
  z-index: -1;
}
.hero-inner { max-width: 720px; padding: 90px 0 70px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  margin-bottom: 0.4em;
}
.hero .lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
}
.hero-stats div { min-width: 120px; }
.hero-stats strong { display: block; font-size: 1.9rem; color: var(--teal-light); }
.hero-stats span { font-size: 0.85rem; color: rgba(255,255,255,0.8); }

.page-hero { min-height: 46vh; }
.page-hero .hero-inner { padding: 130px 0 60px; }
.breadcrumbs { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.breadcrumbs a { color: var(--teal-light); }
.breadcrumbs a:hover { text-decoration: underline; }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--grey-200);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card .thumb { aspect-ratio: 4/3; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card .body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card p { color: var(--grey-700); font-size: 0.94rem; flex: 1; }
.service-card .link {
  margin-top: 10px;
  font-weight: 700;
  color: var(--blue);
  font-size: 0.92rem;
}
.service-card .link::after { content: " \2192"; }

/* ---------- About / Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.split .content h2 { margin-bottom: 0.5em; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--grey-700);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 9px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.affiliations { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }
.affiliations a {
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
}
.affiliations a:hover { background: var(--grey-100); }

/* ---------- Content page body copy ---------- */
.prose { max-width: 780px; }
.prose h2 { margin-top: 1.4em; }
.prose p { color: var(--grey-700); font-size: 1.03rem; }
.prose ul { margin: 0 0 1.2em; }
.prose ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--grey-700);
}
.prose ul li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--teal);
}
.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0;
}
.fact-strip .fact {
  background: var(--grey-100);
  border-radius: var(--radius-sm);
  padding: 20px;
  border-left: 4px solid var(--teal);
}
.fact-strip strong { display: block; color: var(--navy); font-size: 1.3rem; }
.fact-strip span { color: var(--grey-700); font-size: 0.9rem; }

.brand-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 30px; }
.brand-pills span {
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
}

.video-block { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16/9; }
.video-block iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.gallery-filters button {
  border: 1px solid var(--grey-200);
  background: var(--white);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--grey-700);
  cursor: pointer;
  transition: all 0.15s ease;
}
.gallery-filters button:hover { background: var(--grey-100); }
.gallery-filters button.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: zoom-in;
  border: 0;
  padding: 0;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .tag {
  position: absolute; left: 10px; bottom: 10px;
  background: rgba(11,37,69,0.85);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(4, 12, 22, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 0;
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; translate: 0 -50%; }
.lightbox-next { right: 24px; top: 50%; translate: 0 -50%; }

/* ---------- Testimonials ---------- */
.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: thin;
}
.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 min(420px, 86vw);
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
}
.testimonial-card .stars { color: var(--sand); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card p { color: var(--grey-700); font-style: italic; }
.testimonial-card .who { font-weight: 700; color: var(--navy); font-style: normal; margin-top: 14px; }
.testimonial-card a { color: var(--blue); font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--gradient-brand);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 24px; }
.cta-band .btn-row { justify-content: center; margin-top: 22px; }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 820px; }
.faq-item {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: 0;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-question:hover { background: var(--grey-100); }
.faq-question .icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--grey-100);
  position: relative;
}
.faq-question .icon::before, .faq-question .icon::after {
  content: "";
  position: absolute;
  background: var(--blue);
  border-radius: 2px;
}
.faq-question .icon::before { left: 6px; right: 6px; top: 11px; height: 2px; }
.faq-question .icon::after { top: 6px; bottom: 6px; left: 11px; width: 2px; transition: opacity 0.15s ease; }
.faq-item.open .faq-question .icon::after { opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background: var(--white);
}
.faq-answer p { padding: 0 24px 22px; color: var(--grey-700); margin: 0; }
.faq-item.open .faq-answer { max-height: 480px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info .b { margin-bottom: 22px; }
.contact-info h3 { color: var(--teal-light); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.08em; margin-bottom: 6px; }
.contact-info p { color: rgba(255,255,255,0.92); margin: 0; }
.contact-info a { color: var(--white); font-weight: 700; }
.contact-info a:hover { color: var(--teal-light); }

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; color: var(--navy); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.96rem;
  background: var(--grey-100);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--teal); background: var(--white); }
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a5a68' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 40px;
  color: var(--ink);
}
.field select:invalid { color: var(--grey-500); }
.form-note { font-size: 0.82rem; color: var(--grey-500); margin-top: 10px; }

.form-status {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.form-status.success { background: #e3f7ee; color: #0f6b45; border: 1px solid #b6e6cf; }
.form-status.error { background: #fdeeee; color: #a3231f; border: 1px solid #f5c6c4; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.85); padding: 60px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { height: 50px; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-col h3 { color: var(--white); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.72); font-size: 0.92rem; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.social-list { display: flex; gap: 10px; }
.social-list a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.social-list a:hover { background: var(--teal); }
.social-list svg { width: 18px; height: 18px; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, background 0.2s ease;
  z-index: 400;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--teal); }
.back-to-top svg { width: 20px; height: 20px; }

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed;
  left: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 401;
  transition: transform 0.15s ease, background 0.15s ease;
}
.whatsapp-float:hover { background: #1ebe5b; transform: scale(1.06); }
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: whatsapp-pulse 2.4s ease-out infinite;
}
@keyframes whatsapp-pulse {
  0% { opacity: 0.55; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.7); }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::before { animation: none; }
}
@media (max-width: 640px) {
  .whatsapp-float { left: 16px; bottom: 16px; width: 52px; height: 52px; }
  .back-to-top { right: 16px; bottom: 16px; }
}

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .image { order: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .fact-strip { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links, .nav-cta .btn-outline { display: none; }
  .navbar { flex-wrap: wrap; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background: var(--navy-dark);
    border-radius: var(--radius-sm);
    padding: 10px;
    margin-top: 10px;
    gap: 2px;
  }
  .nav-links.open .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.04);
    display: none;
  }
  .nav-links.open li.open .dropdown { display: block; }
  .dropdown a { color: rgba(255,255,255,0.85); }
  .dropdown a:hover { background: rgba(255,255,255,0.08); color: var(--teal-light); }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 70px 0 50px; }
  .page-hero .hero-inner { padding: 110px 0 46px; }
  .section { padding: 52px 0; }
}
