/* ==========================================================================
   The Pool Guardian — Houston Pool Cleaning & Maintenance
   Stylesheet
   ========================================================================== */

:root {
  --primary: #0a4d8c;
  --primary-dark: #083a6b;
  --accent: #00b4d8;
  --accent-light: #e0f7fb;
  --ink: #14263a;
  --muted: #5b6b7c;
  --bg: #ffffff;
  --bg-soft: #f2f7fb;
  --border: #e3ebf2;
  --gold: #ffb703;
  --danger: #d62828;
  --success: #2a9d8f;
  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(10, 40, 80, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 40, 80, 0.12);
  --shadow-lg: 0 16px 48px rgba(10, 40, 80, 0.18);
  --container: 1120px;
  --header-h: 72px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: "Poppins", "Inter", sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary-dark);
}

h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--accent);
  color: #062a3a;
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover { background: #0096b7; color: #062a3a; }

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-light {
  background: #fff;
  color: var(--primary);
}

.btn-light:hover { background: var(--accent-light); color: var(--primary); }

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}

.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.logo span em { font-style: normal; color: var(--accent); }

.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 6px 2px;
  position: relative;
}

.main-nav a:hover { color: var(--primary); }

.main-nav a[aria-current="page"] {
  color: var(--primary);
  font-weight: 600;
}

.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.header-phone small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1;
}

.btn-header {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.2s;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 16px 4%;
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }

  .main-nav.open { transform: translateY(0); }

  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }

  .main-nav a {
    display: block;
    padding: 12px 8px;
    font-size: 1.05rem;
    border-radius: 8px;
  }

  .main-nav a:hover { background: var(--bg-soft); }
  .main-nav a[aria-current="page"]::after { display: none; }
  .main-nav a[aria-current="page"] { background: var(--accent-light); }

  .header-phone { display: none; }

  .btn-header { padding: 10px 16px; font-size: 0.85rem; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  color: #fff;
  background: var(--primary-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 42, 76, 0.92) 0%, rgba(8, 42, 76, 0.55) 55%, rgba(8, 42, 76, 0.25) 100%);
}

.hero-inner {
  position: relative;
  padding: 110px 0 130px;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: #fff;
  margin-bottom: 18px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.hero-trust svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-badge {
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px 28px;
  max-width: 300px;
}

.hero-badge h3 { font-size: 1.05rem; margin-bottom: 4px; }
.hero-badge p { font-size: 0.9rem; color: var(--muted); margin: 0; }
.hero-badge .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 8px; }

@media (max-width: 1240px) {
  .hero-badge { display: none; }
}

/* ---------- Sections ---------- */

.section { padding: 84px 0; }

.section-alt { background: var(--bg-soft); }

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}

.section-head .eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Services cards ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card .thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .thumb img { transform: scale(1.05); }

.service-card .body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.service-card .body h3 { font-size: 1.15rem; }

.service-card .body p {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.service-card .learn-more {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Features (why us) ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.feature .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: var(--accent-light);
  color: var(--primary);
  display: grid;
  place-items: center;
}

.feature h3 { font-size: 1rem; margin-bottom: 8px; }
.feature p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ---------- 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);
  width: 100%;
  object-fit: cover;
}

.split .text h2 { margin-bottom: 18px; }
.split .text p { color: var(--muted); }

.checklist {
  list-style: none;
  margin: 20px 0 28px;
  display: grid;
  gap: 12px;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
}

.checklist svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---------- Testimonials ---------- */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial .stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 3px; }

.testimonial blockquote {
  font-size: 0.98rem;
  color: var(--ink);
  flex: 1;
}

.testimonial figcaption {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial figcaption small {
  font-weight: 500;
  color: var(--muted);
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, 0.88); max-width: 640px; margin: 0 auto 30px; }

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: #0a2033;
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
}

.site-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.site-footer p, .site-footer li { font-size: 0.9rem; }

.site-footer ul { list-style: none; display: grid; gap: 10px; }

.site-footer a { color: rgba(255, 255, 255, 0.8); }
.site-footer a:hover { color: var(--accent); }

.footer-brand .logo { color: #fff; margin-bottom: 14px; }

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}

.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: rgba(255, 255, 255, 0.88); max-width: 640px; margin: 0 auto; }

.breadcrumbs {
  margin-bottom: 18px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a { color: rgba(255, 255, 255, 0.7); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { margin: 0 8px; }

/* ---------- Service detail blocks ---------- */

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-of-type { border-bottom: none; }

.service-detail .text h2 { margin-bottom: 14px; }
.service-detail .text p { color: var(--muted); }

.service-detail .text .pricing {
  margin-top: 20px;
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
}

.service-detail img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 16px 12px;
  background: linear-gradient(transparent, rgba(8, 30, 55, 0.85));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover figcaption { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 30, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: min(1000px, 94vw);
  max-height: 84vh;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.lightbox button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
}

.lightbox button:hover { background: rgba(255, 255, 255, 0.3); }

/* ---------- FAQ ---------- */

.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-answer {
  padding: 0 24px 22px;
  color: var(--muted);
}

.faq-item .faq-answer p { margin: 0; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.form-group .req { color: var(--danger); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.18);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-status {
  display: none;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.form-status.success { display: block; background: #e6f6f3; color: var(--success); border: 1px solid #b8e6de; }
.form-status.error { display: block; background: #fdeaea; color: var(--danger); border: 1px solid #f5c6c6; }

.contact-side {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 24px;
}

.contact-block { display: flex; gap: 14px; align-items: flex-start; }

.contact-block .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-block h3 { font-size: 1rem; margin-bottom: 2px; }
.contact-block p, .contact-block a { font-size: 0.92rem; color: var(--muted); }
.contact-block a { color: var(--primary); font-weight: 600; }

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.service-area-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-dark);
}

/* ---------- Blog ---------- */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.blog-card .thumb { aspect-ratio: 16 / 9; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }

.blog-card .body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.blog-card .meta { font-size: 0.78rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px; }

.blog-card h3 { font-size: 1.05rem; }
.blog-card p { font-size: 0.9rem; color: var(--muted); flex: 1; margin: 0; }
.blog-card .read-more { font-weight: 600; font-size: 0.88rem; }

/* Article page */
.article { max-width: 760px; margin: 0 auto; }

.article .meta { color: var(--muted); font-size: 0.85rem; margin-bottom: 24px; }

.article h2 { margin: 36px 0 14px; font-size: 1.5rem; }
.article h3 { margin: 28px 0 10px; }
.article p, .article li { color: var(--muted); }

.article ul { padding-left: 22px; margin-bottom: 1rem; }
.article ul li { margin-bottom: 8px; }

.article .callout {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 28px 0;
}

.article .callout p { margin: 0; color: var(--primary-dark); font-weight: 500; }

.article img.hero-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin: 24px 0 8px;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ---------- Stats ---------- */

.stats-band {
  background: var(--primary-dark);
  color: #fff;
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat .num {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat .label { font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); }

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .services-grid, .testimonial-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .split, .service-detail, .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  .services-grid, .testimonial-grid, .blog-grid, .gallery-grid, .features-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat .num { font-size: 1.7rem; }

  .hero-inner { padding: 72px 0 90px; }

  .contact-form { padding: 24px; }

  .header-cta .btn-header { display: none; }

  .sticky-call {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: var(--accent);
    color: #062a3a;
    font-weight: 700;
    text-align: center;
    padding: 14px;
    font-size: 1rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
    display: block;
  }
}

@media (min-width: 721px) {
  .sticky-call { display: none; }
}

/* ---------- Skip link & a11y ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
  z-index: 300;
}

.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Print ---------- */

@media print {
  .site-header, .site-footer, .cta-band, .sticky-call, .nav-toggle { display: none; }
}