/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:    #C8581A;
  --orange-dk: #a8461a;
  --blue:      #4AA8D8;
  --blue-dk:   #2d8ab8;
  --blue-xdk:  #1a5a7a;
  --gray-bg:   #f5f7fa;
  --border:    #dde3ed;
  --text:      #1a2332;
  --muted:     #5a6478;
  --white:     #fff;
  --font: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; padding: 0; }


/* ============================================================
   LAYOUT
============================================================ */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}


/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: .8rem 1.6rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background .15s, box-shadow .15s, transform .1s;
  white-space: nowrap;
}

.btn:active { transform: scale(.97); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover { background: var(--orange-dk); border-color: var(--orange-dk); }

.btn-white {
  background: var(--white);
  color: var(--blue-xdk);
  border-color: var(--white);
}
.btn-white:hover { background: #eef3f8; }

.btn-blue {
  background: var(--blue-xdk);
  color: var(--white);
  border-color: var(--blue-xdk);
}
.btn-blue:hover { background: #143f57; border-color: #143f57; }

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); }

.btn-big  { font-size: 1.1rem; padding: .95rem 2rem; }
.btn-full { width: 100%; display: block; text-align: center; }


/* ============================================================
   HEADER & NAV
============================================================ */
.header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .6rem;
  padding-bottom: .6rem;
  gap: 1rem;
}

.header-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.header-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

@media (max-width: 600px) {
  .header-name { display: none; }
}

.header-phone {
  font-size: .95rem;
  padding: .6rem 1.2rem;
  background: var(--white);
  color: var(--text);
  border-color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.header-phone:hover { background: #f0f0f0; border-color: var(--text); }


/* ============================================================
   HERO
============================================================ */
.hero {
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), url('hero test.webp') center/cover no-repeat;
  color: var(--white);
  padding: 0;
  min-height: calc(100vh - 72px - 62px);
  display: flex;
  align-items: center;
}

.hero-wrap {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-text { flex: 1 1 320px; }

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: .75rem;
}

.hero-text > p {
  font-size: 1.1rem;
  opacity: .88;
  margin-bottom: 1.5rem;
}

.hero-text .btn { margin-right: .6rem; margin-bottom: .6rem; }

.checks {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .75rem;
}

.checks li {
  font-size: .9rem;
  opacity: .85;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.hero-img {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img img {
  width: min(420px, 88vw);
  object-fit: contain;
  clip-path: inset(0 0 0 30px);
}


/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--blue-xdk);
  color: var(--white);
  padding: 1.25rem 0;
}

.trust-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 2.5rem;
}

.trust-item {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  padding: 4rem 0 2rem;
  background: var(--gray-bg);
}

.services h2,
.why h2,
.quote h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2rem;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin-top: -.75rem;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) { .service-list { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.service-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.service-card:hover .service-img-wrap img { transform: scale(1.04); }

.service-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-xdk);
  margin-bottom: .6rem;
}

.service-body p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.service-link {
  font-size: .9rem;
  font-weight: 700;
  color: var(--orange);
  transition: color .15s;
}

.service-link:hover { color: var(--orange-dk); }

.service-cta { text-align: center; }


/* ============================================================
   WHY US
============================================================ */
.why {
  padding: 4rem 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-item {
  padding: 1.5rem;
  border-left: 4px solid var(--orange);
  background: var(--gray-bg);
  border-radius: 0 8px 8px 0;
}

.why-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: .35rem;
}

.why-item p {
  font-size: .9rem;
  color: var(--muted);
}


/* ============================================================
   REVIEWS
============================================================ */
.reviews {
  background: var(--gray-bg);
  padding: 2rem 0 4rem;
}

.reviews h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 2rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

/* Google summary bar */
.google-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 1.75rem;
}

.g-score {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}

.google-summary .g-stars {
  color: #f5a623;
  font-size: 1.2rem;
  letter-spacing: .05em;
}

.g-count {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 600;
}

/* Review cards */
.review-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
}

.review-header {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

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

.reviewer-meta {
  font-size: .78rem;
  color: var(--muted);
}

.g-badge { flex-shrink: 0; }

.review-stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: .05em;
}

.review-card p {
  font-size: .93rem;
  color: #3c3c3c;
  line-height: 1.65;
  flex: 1;
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.whychoose {
  padding: 4rem 0;
  background: var(--white);
}

.whychoose-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 700px) {
  .whychoose-wrap { grid-template-columns: 1fr; gap: 2rem; }
}

.whychoose-logo-img {
  width: 70%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.whychoose-text h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.whychoose-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.whychoose-list li {
  list-style: none;
}

.whychoose-list strong {
  display: inline-block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 2px solid var(--orange);
  padding-bottom: .15rem;
  margin-bottom: .3rem;
}

.whychoose-list p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   CONTACT / QUOTE
============================================================ */
.quote {
  padding: 4rem 0;
  background: var(--gray-bg);
}

.quote-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 700px) {
  .quote-wrap { grid-template-columns: 1fr; gap: 2rem; }
}

.quote-text h2 { text-align: left; margin-bottom: .75rem; }

.quote-text > p {
  font-size: .97rem;
  color: var(--muted);
  margin-bottom: .5rem;
}

.quote-phone a {
  font-size: .97rem;
  font-weight: 600;
  color: var(--orange);
  display: block;
}

.quote-email a {
  color: var(--blue);
  font-weight: 600;
  word-break: break-all;
}

.quote-addr {
  margin-top: .4rem;
  font-size: .9rem;
  color: var(--muted);
}

/* Form */
.form {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  padding: 2rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-bottom: 1rem;
}

.field label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
}

.field input,
.field textarea {
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: .7rem .9rem;
  width: 100%;
  transition: border-color .15s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.field input.invalid,
.field textarea.invalid { border-color: #c0392b; }

.field textarea { resize: vertical; min-height: 100px; }

.field-check { margin-bottom: .75rem; }

.check-label {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  cursor: pointer;
}

.check-label input[type="checkbox"] {
  margin-top: .2rem;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.check-label span {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}

.err {
  font-size: .78rem;
  color: #c0392b;
  font-weight: 600;
  min-height: 1em;
}

.form-note {
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
  margin-top: .6rem;
}

.success {
  margin-top: 1rem;
  padding: 1rem;
  background: #eafaf0;
  border: 1.5px solid #93d4ae;
  border-radius: 6px;
  color: #1a7a40;
  font-weight: 700;
  text-align: center;
}


/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--blue-xdk);
  color: rgba(255,255,255,.75);
  padding: 2.5rem 0;
  text-align: center;
}

.footer p { font-size: .88rem; line-height: 2; }

.footer strong { color: var(--white); }

.footer a { color: #7ec8e8; }
.footer a:hover { color: var(--white); text-decoration: underline; }

.copy { margin-top: .5rem; font-size: .78rem; opacity: .5; }

.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 1.25rem;
}


/* ============================================================
   NAV
============================================================ */
.nav-list {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  transition: color .15s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active { color: var(--orange); }

.header-right {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* Hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .2s;
}

@media (max-width: 820px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
  }
  .nav.open { display: block; }
  .nav-list { flex-direction: column; gap: .85rem; }
  .nav-toggle { display: flex; }
}


/* ============================================================
   PAGE BANNER (inner pages)
============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--blue-xdk) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 1.75rem 0;
  text-align: center;
}

.page-banner h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: .4rem;
}

.page-banner p {
  font-size: 1.05rem;
  opacity: .88;
}


/* ============================================================
   CTA BANNER (inner pages)
============================================================ */
.cta-banner {
  background: var(--blue-xdk);
  color: var(--white);
  padding: 3rem 0;
}

.cta-banner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .3rem;
}

.cta-banner p {
  font-size: .97rem;
  opacity: .85;
}

.cta-banner-btns {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 6px;
  font-weight: 700;
  padding: .8rem 1.6rem;
  display: inline-block;
  transition: background .15s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); }


/* ============================================================
   SERVICES PAGE
============================================================ */
.svc-section {
  padding: 4rem 0;
  background: var(--white);
}

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

.svc-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .svc-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-section.svc-alt .svc-img { order: -1; }
}

.svc-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}

.svc-text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--blue-xdk);
  margin-bottom: 1rem;
}

.svc-text p { font-size: .97rem; color: var(--muted); margin-bottom: .85rem; line-height: 1.65; }

.svc-list {
  list-style: none;
  margin: .5rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.svc-list li {
  font-size: .95rem;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
}

.svc-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: .85rem;
}


/* ============================================================
   ABOUT PAGE
============================================================ */
.about-section {
  padding: 4rem 0;
  background: var(--white);
}

.about-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.about-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.about-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.about-block h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-xdk);
  margin-bottom: 1rem;
}

.about-block p {
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: .85rem;
}

.about-block p:last-child { margin-bottom: 0; }

.about-faith {
  background: var(--gray-bg);
  border-radius: 10px;
  padding: 2rem;
  border-left: 4px solid var(--orange);
  border-bottom: none;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.about-feature {
  background: var(--gray-bg);
  border-radius: 8px;
  padding: 1.25rem;
  border-top: 3px solid var(--orange);
}

.about-feature strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .4rem;
}

.about-feature p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
}

.area-grid {
  display: flex;
  gap: 3rem;
  margin: 1rem 0 1.25rem;
}

.area-col strong {
  display: block;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}

.area-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.area-col ul li {
  font-size: .95rem;
  color: var(--muted);
}

.about-closer {
  font-style: italic;
  font-weight: 600;
  color: var(--blue-xdk) !important;
}


/* ============================================================
   CONTACT PAGE EXTRAS
============================================================ */
.contact-details {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail-item strong {
  display: block;
  font-size: .88rem;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 2px solid var(--orange);
  padding-bottom: .15rem;
  margin-bottom: .4rem;
  display: inline-block;
}

.contact-detail-item p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.6;
}


/* ============================================================
   MAP
============================================================ */
.map-inline {
  margin-top: 1.25rem;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
}

/* ============================================================
   TERMS PAGE
============================================================ */
.terms-section {
  padding: 4rem 0;
  background: var(--white);
}

.terms-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.terms-intro {
  background: var(--gray-bg);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
}

.terms-intro a { color: var(--blue); }

.terms-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.terms-block:last-child { border-bottom: none; }

.terms-block h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-xdk);
  margin-bottom: 1rem;
}

.terms-block p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: .85rem;
}

.terms-block p:last-child { margin-bottom: 0; }

.terms-closing {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--gray-bg);
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  font-size: .95rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
}
