/* =========================================================
   Brockton Home Health Transportation — Stylesheet
   ========================================================= */

:root {
  --navy: #0f2a47;
  --blue-deep: #123a63;
  --blue: #1b5fa6;
  --blue-mid: #2e7fc4;
  --blue-light: #eaf3fb;
  --sky: #f4f8fc;
  --ink: #1b2430;
  --gray: #57636e;
  --line: #dce6ee;
  --white: #ffffff;
  --orange: #f0a24a;
  --green: #3e8f62;
  --display: "Poppins", sans-serif;
  --body: "Inter", sans-serif;
  --gold: #fbbc04;
  --star-empty: #dcdfe4;
  --verify-blue: #1a73e8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  color: var(--navy);
  line-height: 1.16;
  letter-spacing: -0.01em;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

.eyebrow {
  font-family: var(--body);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--blue);
  display: inline-block;
}
.eyebrow--light {
  color: #fff;
}
.eyebrow--light::before {
  background: #fff;
}

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

/* ---------- HEADER ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(15, 42, 71, 0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg {
  width: 20px;
  height: 20px;
}
.brand-text {
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy);
  font-size: 14.5px;
  line-height: 1.15;
}
.brand-text span {
  display: block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--blue);
  text-transform: uppercase;
  margin-top: 2px;
}
.header-call {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.header-call:hover {
  background: var(--blue-deep);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(rgba(0, 80, 150, 0.55), rgba(0, 80, 150, 0.55)),
    url("../image/hero-bg.webp") top center / cover no-repeat;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 40px 0 34px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.hero h1 {
  color: var(--white);
  font-size: 30px;
  margin: 14px 0 12px;
}
.hero p.lede {
  color: #c9dcec;
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 22px;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 9px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    background 0.12s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--orange);
  color: var(--navy);
}
.btn-primary:hover {
  background: #e2913a;
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}
.btn-full {
  width: 100%;
}
.hero-trustline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9fbbd3;
  font-size: 13px;
  font-weight: 600;
}
.hero-trustline svg {
  width: 15px;
  height: 15px;
  stroke: var(--orange);
  flex-shrink: 0;
}
.hero-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

/* ---------- NOT A TAXI BANNER ---------- */
.taxi-banner {
  background: var(--orange);
  padding: 18px 0;
}
.taxi-banner .wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.taxi-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.taxi-banner p {
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.4;
}
.taxi-banner p b {
  display: block;
  font-size: 16.5px;
}
.taxi-banner p span {
  font-family: var(--body);
  font-weight: 500;
  font-size: 13.5px;
  color: #5a3f14;
}

/* ---------- FEATURE STRIP ---------- */
.features {
  background: var(--sky);
  padding: 38px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 20px;
  text-align: center;
}
.feature-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
}
.feature-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.feature-card p {
  color: var(--gray);
  font-size: 13.5px;
}

/* ---------- SECTION SHELL ---------- */
section {
  padding: 44px 0;
}
.section-head {
  max-width: 600px;
  margin-bottom: 26px;
}
.section-head h2 {
  font-size: 24px;
  margin-top: 8px;
}
.section-head p {
  color: var(--gray);
  font-size: 14.5px;
  margin-top: 8px;
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
}
.service-card h3 {
  font-size: 15.5px;
  margin-bottom: 4px;
}
.service-card p {
  color: var(--gray);
  font-size: 13.5px;
}

/* ---------- COVERAGE ---------- */
.coverage {
  background: var(--sky);
}
.coverage-map-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 13px 16px;
  margin-bottom: 18px;
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 600;
}
.coverage-map-note svg {
  width: 19px;
  height: 19px;
  stroke: var(--blue);
  flex-shrink: 0;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue-deep);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 7px 12px;
  border-radius: 20px;
}
.chip.hub {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.coverage-far {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--gray);
}
.coverage-far b {
  color: var(--navy);
}

/* ---------- WHY / TRUST ---------- */
.why {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.why-card {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-card:first-child {
  border-top: none;
}
.why-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--blue);
}
.why-card h3 {
  font-size: 15px;
  margin-bottom: 3px;
}
.why-card p {
  color: var(--gray);
  font-size: 13.5px;
}

/* ---------- TESTIMONIALS ---------- */
/* .testimonials{background:var(--navy);}
.testimonials .section-head h2{color:var(--white);}
.testimonials .section-head p{color:#9FBBD3;}
.test-carousel-wrapper{position:relative; overflow:hidden;}
.test-carousel{overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:8px; scroll-behavior:smooth;}
.test-carousel::-webkit-scrollbar{height:10px;}
.test-carousel::-webkit-scrollbar-thumb{background:rgba(255,255,255,0.22); border-radius:999px;}
.test-grid{display:flex; gap:18px; padding:0; margin:0; align-items:stretch;}
.test-card{background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); border-radius:13px; padding:24px 20px; flex:0 0 100%; max-width:100%; scroll-snap-align:start; scroll-snap-stop:always; box-shadow:0 10px 30px rgba(0,0,0,0.1);}
.stars{color:var(--orange); font-size:13px; letter-spacing:2px; margin-bottom:10px;}
.test-card p{color:#D7E5EF; font-size:14px; margin-bottom:14px;}
.test-name{font-size:12.5px; color:#8FAEC9; font-weight:600;}
.carousel-arrow{position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; border:none; border-radius:50%; background:rgba(255,255,255,0.14); color:#fff; font-size:22px; cursor:pointer; transition:background .2s ease, transform .2s ease; display:flex; align-items:center; justify-content:center; z-index:2;}
.carousel-arrow:hover{background:rgba(255,255,255,0.24); transform:translateY(-50%) scale(1.05);}
.carousel-arrow:focus{outline:3px solid rgba(255,255,255,0.55); outline-offset:3px;}
.carousel-arrow--prev{left:6px;}
.carousel-arrow--next{right:6px;}
@media (max-width:760px){
  .carousel-arrow{width:38px; height:38px; font-size:20px;}
}
@media (min-width:760px){
  .test-card{flex:0 0 calc(50% - 9px); max-width:calc(50% - 9px);}
}
@media (min-width:1000px){
  .test-card{flex:0 0 calc(33.333% - 12px); max-width:calc(33.333% - 12px);}
} */

.testimonials-section {
  background: var(--page-bg);
  padding: 72px 20px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
}

.testimonials-heading {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 40px;
  letter-spacing: -0.02em;
}

.testimonials-panel {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(20, 30, 60, 0.08);
  padding: 44px 60px 40px;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 33.3333%;
  padding: 0 14px;
  display: flex;
  justify-content: center;
}

.testimonial-inner {
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
}

.review-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 14px 14px 4px 4px;
  padding: 20px 20px 44px;
  box-shadow: 0 2px 10px rgba(20, 30, 60, 0.05);
  min-height: 190px;
  display: flex;
  flex-direction: column;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.stars svg {
  width: 16px;
  height: 16px;
}
.star-filled {
  fill: var(--gold);
}
.star-empty {
  fill: var(--star-empty);
}

.verified-badge {
  width: 15px;
  height: 15px;
  margin-left: 6px;
  flex-shrink: 0;
}

.google-g {
  width: 18px;
  height: 18px;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-body);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 6px;
}

.read-more {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  margin-top: auto;
  align-self: flex-start;
}
.read-more:hover {
  color: var(--verify-blue);
}

.reviewer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -26px;
  padding-left: 16px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--card-border);
  background: #eee;
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Arrow */
.carousel-arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--card-border);
  box-shadow: 0 4px 14px rgba(20, 30, 60, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
  z-index: 5;
}
.carousel-arrow:hover {
  background: #f5f7fa;
  transform: translateY(-50%) scale(1.05);
}
.carousel-arrow svg {
  width: 18px;
  height: 18px;
}

.carousel-arrow.prev {
  left: 14px;
  right: auto;
}

/* Tablet: 2 cards */
@media (max-width: 1024px) {
  .testimonial-slide {
    flex: 0 0 50%;
  }
  .testimonials-panel {
    padding: 40px 10px 36px;
  }
}

/* Mobile: 1 card, centered */
@media (max-width: 640px) {
  .testimonial-slide {
    flex: 0 0 100%;
  }
  .testimonials-panel {
    padding: 36px 10px 30px;
    border-radius: 18px;
  }
  .testimonials-heading {
    font-size: 1.6rem;
    margin-bottom: 28px;
  }
  .carousel-arrow {
    width: 32px;
    height: 32px;
    right: 6px;
  }
  .carousel-arrow.prev {
    left: 6px;
  }
}

/* ---------- FORM ---------- */
.lead-section {
  background: var(--sky);
}
.lead-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
.lead-info {
  background: var(--navy);
  padding: 28px 22px;
  color: var(--white);
}
.lead-info .eyebrow {
  color: #9fbbd3;
}
.lead-info .eyebrow::before {
  background: var(--orange);
}
.lead-info h2 {
  color: var(--white);
  font-size: 21px;
  margin: 10px 0 10px;
}
.lead-info p {
  color: #b7cbdd;
  font-size: 13.5px;
  margin-bottom: 18px;
}
.lead-info-call {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(240, 162, 74, 0.16);
  border: 1px solid rgba(240, 162, 74, 0.4);
  padding: 13px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.lead-info-call a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  text-decoration: none;
}
.lead-info-call span {
  display: block;
  font-size: 10.5px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 2px;
}
.lead-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.lead-info-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 13px;
  color: #c6d9e9;
}
.lead-info-list svg {
  width: 15px;
  height: 15px;
  stroke: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.lead-form {
  padding: 26px 22px;
}

/* Form status banner (shown after PHP redirect with ?status=success|error) */
.form-banner {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 9px;
  margin-bottom: 16px;
  line-height: 1.4;
}
.form-banner--success {
  background: #e8f4ed;
  color: #2a6b49;
  border: 1px solid #b7ddc6;
}
.form-banner--error {
  background: #fbeaea;
  color: #9b2c2c;
  border: 1px solid #f1b6b6;
}
.form-row {
  margin-bottom: 13px;
}
.form-row.two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
}
label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
input,
select,
textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--sky);
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: none;
  background: var(--white);
}
textarea {
  resize: vertical;
  min-height: 64px;
}
.form-note {
  font-size: 12px;
  color: #8792a0;
  margin-top: 10px;
  text-align: center;
}

/* Form success message (replaces the form after submit) */
.form-success {
  padding: 18px 6px;
  text-align: center;
}
.form-success .check {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success .check svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
}
.form-success h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.form-success p {
  color: var(--gray);
  font-size: 14px;
  max-width: 380px;
  margin: 0 auto;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-plus {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 14px;
}
.faq-item[open] .faq-plus {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.faq-item p {
  color: var(--gray);
  font-size: 13.5px;
  margin-top: 10px;
  max-width: 640px;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  padding: 38px 0;
  text-align: center;
}
.final-cta h2 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 8px;
}
.final-cta p {
  color: #cfe1f0;
  font-size: 14px;
  margin-bottom: 20px;
}
.final-cta .btn-secondary {
  background: var(--white);
  color: var(--blue-deep);
  border: none;
}
.final-cta-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  margin: 0 auto;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy);
  color: #9fbbd3;
  padding: 34px 0 18px;
  font-size: 13px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.foot-brand {
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 15.5px;
  margin-bottom: 8px;
}
footer h4 {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
footer ul {
  list-style: none;
}
footer li {
  margin-bottom: 7px;
}
footer a {
  text-decoration: none;
}
footer a:hover {
  color: var(--white);
}
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
  font-size: 11.5px;
  color: #6e8ca6;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ---------- DESKTOP ---------- */
@media (min-width: 760px) {
  .wrap {
    padding: 0 40px;
  }
  .hero-inner {
    padding: 56px 0 60px;
  }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 46px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-ctas {
    flex-direction: row;
  }
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 36px;
  }
  .lead-panel {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
  .final-cta-ctas {
    flex-direction: row;
    max-width: none;
    justify-content: center;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .foot-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  section {
    padding: 64px 0;
  }
  .section-head h2 {
    font-size: 28px;
  }
}

.foot-logo {
  background: var(--white);
  overflow: hidden;
  border-radius: 5px;
}
@media (min-width: 1000px) {
  .hero h1 {
    font-size: 46px;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 676px) {
  .header-inner {
    justify-content: center;
  }
  .header-call {
    display: none;
  }
  .hero {
    padding: 0px 20px;
  }
}
