/* ============================================================
   Gonzalez Landscaping & Concrete — Main Stylesheet
   Visually matches live concretogonzalez.com structure
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  line-height: 1.55;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 .6em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

:root {
  --green-dark: #073419;        /* matches logo dark green — sampled from live site */
  --green-darker: #052511;
  --green: #2e7d32;
  --green-bright: #4fb356;
  --olive: #b7b66d;
  --olive-dark: #7d7d42;
  --accent: #ffb300;
  --yellow: #ffde2e;
  --dark: #0d141a;
  --black: #000;
  --gray-800: #1e1e1e;
  --gray-700: #3b4149;
  --gray-500: #7a8088;
  --gray-300: #d9dcdf;
  --gray-100: #f5f6f7;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,.18);
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.site-header__inner {
  max-width: 1400px; margin: 0 auto;
  padding: 6px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.site-header__logo img {
  height: 72px; width: auto; object-fit: contain;
}
.site-header__menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 44px;
}
.site-header__menu a {
  color: #fff; font-weight: 500; font-size: 1.1rem;
  padding: 6px 2px;
  position: relative;
  transition: color .2s;
}
.site-header__menu a:hover { color: var(--green-bright); }
.site-header__menu a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: #fff;
}
.dropdown-arrow { font-size: .7em; opacity: .85; margin-left: 2px; }
.site-header__menu .has-dropdown { position: relative; }
.site-header__menu .dropdown {
  position: absolute; top: 100%; left: -18px;
  list-style: none; margin: 0; padding: 10px 0;
  min-width: 240px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 50;
}
.site-header__menu .has-dropdown:hover > .dropdown,
.site-header__menu .has-dropdown:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.site-header__menu .dropdown li { border: none; }
.site-header__menu .dropdown a {
  display: block; padding: 10px 20px;
  color: var(--dark) !important;
  font-size: .95rem; font-weight: 500;
}
.site-header__menu .dropdown a:hover {
  background: var(--gray-100);
  color: var(--green-dark) !important;
}
.site-header__menu .dropdown__divider {
  height: 1px; background: var(--gray-300);
  margin: 6px 0;
}
.site-header__hamburger {
  display: none;
  background: none; border: none; cursor: pointer; padding: 10px;
  flex-direction: column; gap: 5px;
}
.site-header__hamburger span {
  width: 26px; height: 3px; background: #fff; border-radius: 2px;
}

/* Mobile nav */
.mobile-nav {
  position: fixed; top: 0; right: -100%;
  width: 85%; max-width: 340px; height: 100vh;
  background: var(--green-dark); color: #fff;
  padding: 90px 28px 28px; overflow-y: auto;
  transition: right .3s ease;
  z-index: 99;
}
.mobile-nav.open { right: 0; }
.mobile-nav__menu { list-style: none; margin: 0; padding: 0; }
.mobile-nav__menu li { border-bottom: 1px solid rgba(255,255,255,.15); }
.mobile-nav__menu a {
  display: block; padding: 14px 0; color: #fff; font-weight: 500;
}
.mobile-nav__cta {
  background: var(--green-bright); color: #fff !important;
  text-align: center; border-radius: 8px;
  margin-top: 16px; padding: 14px !important;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
  z-index: 50;
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ===== HERO SPLIT (2-column: left = title + city picker, right = banner + info) ===== */
.hero-split {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  color: #fff;
  min-height: 620px;
  display: flex; align-items: center;
}
.hero-split__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: center;
  width: 100%;
}
.hero-split__left h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.hero-split__sub {
  color: #fff; font-size: 1.3rem;
  margin: 0 0 10px; font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.hero-split__links {
  color: #fff; font-size: 1.05rem;
  margin: 0 0 28px;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.hero-split__links a {
  color: #fff; text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.hero-split__links a:hover { color: var(--accent); }

/* City picker card */
.city-picker-card {
  background: rgba(247, 243, 234, 0.97);
  border-radius: 14px;
  padding: 26px 28px;
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
  max-width: 460px;
  color: var(--dark);
}
.city-picker-card h3 {
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  margin: 0 0 14px; text-align: center;
}
.city-picker-card select {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: #fff; font-size: 1rem;
  font-family: inherit;
  color: var(--dark); cursor: pointer;
}
.city-picker-card select:focus {
  outline: none; border-color: var(--green);
}
.city-picker-card__hint {
  margin: 12px 0 0; text-align: center; font-size: .95rem;
}
.city-picker-card__hint a {
  color: var(--green-dark); font-weight: 600;
  text-decoration: underline;
}

/* Right column */
.hero-split__right {
  display: flex; flex-direction: column;
  gap: 24px; align-items: center;
}
.quote-banner--hero {
  display: block; text-align: center; width: 100%;
  transition: transform .2s;
}
.quote-banner--hero:hover { transform: scale(1.03); }
.quote-banner--hero img {
  width: 100%; height: auto;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.4));
}
.hero-split__right,
.svc-hero__right { align-items: stretch !important; }
.info-card {
  background: #fff;
  color: var(--dark);
  padding: 32px 36px;
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(0,0,0,.2);
  max-width: 560px;
}
.info-card h2 {
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  margin: 0 0 14px;
  line-height: 1.2;
}
.info-card p {
  color: var(--gray-700);
  margin: 0 0 12px;
  font-size: 1rem;
}
.info-card p:last-child { margin-bottom: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (max-width: 900px) {
  .hero-split__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-split { padding: 40px 20px; min-height: auto; }
  .hero-split__right { align-items: stretch; }
  .info-card { padding: 24px; }
}

/* ===== SERVICES-HERO (dark green band above services grid) ===== */
.services-hero {
  background:
    linear-gradient(rgba(7,52,25,.92), rgba(7,52,25,.92)),
    url('/images/concrete-texture.png') center/cover no-repeat;
  color: #fff;
  padding: 56px 20px;
  text-align: center;
  border-bottom: 4px solid var(--accent);
}
.services-hero h2 {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 800;
  margin: 0;
}

/* ===== SERVICES OVERLAY GRID (image + green "Learn More →" overlay button) ===== */
.services-overlay-grid {
  padding: 64px 20px 80px;
  background: #fff;
}
.svc-overlay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
  max-width: 1240px; margin: 0 auto;
}
@media (max-width: 900px) { .svc-overlay-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-overlay-grid { grid-template-columns: 1fr; } }

.svc-overlay {
  text-align: center;
}
.svc-overlay__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
  margin-bottom: 18px;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}
.svc-overlay__media img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.svc-overlay:hover .svc-overlay__media img { transform: scale(1.04); }
.svc-overlay__btn {
  position: absolute; left: 18px; bottom: 18px;
  background: var(--green); color: #fff !important;
  padding: 10px 22px; border-radius: 999px;
  font-weight: 700; font-size: .92rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: background .15s, transform .15s;
}
.svc-overlay__btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
.svc-overlay h3 {
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.svc-overlay p {
  color: var(--gray-700);
  font-size: .95rem;
  max-width: 340px;
  margin: 0 auto;
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║  SUB-SERVICE PAGE SECTIONS (mirror Palmstone structure)      ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* Section 1 — split hero with form card */
.svc-hero {
  background-size: cover; background-position: center;
  padding: 64px 20px; color: #fff;
  min-height: 620px; display: flex; align-items: center;
}
.svc-hero__grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: start; width: 100%;
}
.svc-hero__left h1 {
  color: #fff; font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.1; font-weight: 800;
  margin: 0 0 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.svc-hero__sub {
  color: #fff; font-size: 1.25rem; font-weight: 500;
  margin: 0 0 10px; text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.svc-hero__links {
  color: #fff; font-size: 1rem; margin: 0 0 22px;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.svc-hero__links a {
  color: #fff; text-decoration: underline;
  text-decoration-thickness: 2px; text-underline-offset: 3px;
}
.svc-hero__links a:hover { color: var(--accent); }

.svc-hero__form {
  background: rgba(247, 243, 234, 0.97);
  padding: 26px 28px; border-radius: 14px;
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
  max-width: 500px; color: var(--dark);
}
.svc-hero__form label {
  display: block; font-weight: 700; font-size: .92rem;
  color: var(--dark); margin: 10px 0 6px;
}
.svc-hero__form label:first-of-type { margin-top: 0; }
.svc-hero__form input,
.svc-hero__form textarea {
  width: 100%; padding: 11px 14px;
  background: #fff; color: var(--dark);
  border: 1px solid var(--gray-300); border-radius: 8px;
  font-size: .98rem; font-family: inherit;
}
.svc-hero__form input:focus, .svc-hero__form textarea:focus {
  outline: none; border-color: var(--green);
}
.svc-hero__form textarea { resize: vertical; min-height: 90px; }
.svc-hero__form button {
  background: var(--dark); color: #fff;
  border: none; border-radius: 999px;
  padding: 12px 32px; font-weight: 700; font-size: 1rem;
  cursor: pointer; margin-top: 14px;
  transition: background .2s;
}
.svc-hero__form button:hover { background: #000; }
.svc-hero__success {
  background: #e8f5e9; color: var(--green-dark);
  padding: 12px; border-radius: 8px; margin: 12px 0 0;
  font-size: .95rem;
}

.svc-hero__right {
  display: flex; flex-direction: column; gap: 24px;
  align-items: center;
}
@media (max-width: 900px) {
  .svc-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-hero { padding: 40px 20px; min-height: auto; }
  .svc-hero__right { align-items: stretch; }
}

/* Section 2 — mosaic */
.svc-mosaic {
  background:
    linear-gradient(rgba(13,20,26,.55), rgba(13,20,26,.65)),
    url('/images/concrete-texture.png') center/cover no-repeat;
  padding: 72px 20px; text-align: center; color: #fff;
}
.svc-mosaic h2 {
  color: #fff; font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800;
  margin: 0 0 40px;
}
.svc-mosaic__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.svc-mosaic__grid img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
@media (max-width: 720px) {
  .svc-mosaic__grid { grid-template-columns: 1fr; }
}

/* Section 3 — neighborhoods */
.svc-neighborhoods { padding: 72px 20px; background: #fff; }
.svc-neighborhoods h2 {
  color: var(--dark); text-align: center;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin: 0 0 8px;
}
.svc-neighborhoods__intro {
  text-align: center; color: var(--gray-700);
  max-width: 780px; margin: 0 auto 36px;
  border-bottom: 1px solid var(--gray-300); padding-bottom: 28px;
}
.svc-neighborhoods__grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 40px; max-width: 1280px; margin: 0 auto;
}
.svc-neighborhoods__map iframe {
  width: 100%; border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.svc-neighborhoods__cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
}
.svc-neighborhoods__col h3 {
  color: var(--dark); font-size: 1.1rem; font-weight: 700;
  margin: 0 0 10px;
}
.svc-neighborhoods__col ul {
  list-style: disc; padding-left: 20px;
  color: var(--gray-700); margin: 0;
}
.svc-neighborhoods__col li { padding: 3px 0; font-size: .95rem; }
@media (max-width: 900px) {
  .svc-neighborhoods__grid { grid-template-columns: 1fr; }
  .svc-neighborhoods__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .svc-neighborhoods__cols { grid-template-columns: 1fr; }
}

.svc-schedule {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 40px; align-items: center;
  max-width: 1280px; margin: 48px auto 0;
  padding-top: 40px; border-top: 1px solid var(--gray-300);
}
.svc-schedule h3 { color: var(--dark); margin: 0 0 12px; }
.svc-schedule__text p { color: var(--gray-700); }
.svc-schedule__text ul {
  color: var(--gray-700); padding-left: 20px;
}
.svc-schedule__callout {
  text-align: center; padding: 18px;
  background: var(--gray-100); border-radius: 10px;
  margin-top: 20px !important;
}
.svc-schedule__banner img {
  width: 100%; max-width: 360px; height: auto;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.15));
}
@media (max-width: 820px) { .svc-schedule { grid-template-columns: 1fr; } }

/* Section 4 — service detail sub-sections */
.svc-detail { background: var(--gray-100); padding: 72px 20px; }
.svc-detail h2 {
  color: var(--dark); font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 28px;
}
.svc-detail h3 {
  color: var(--dark); font-size: 1.25rem;
  margin: 28px 0 8px; font-weight: 700;
}
.svc-detail p, .svc-detail ul {
  color: var(--gray-700); max-width: 980px; margin: 0 0 12px;
}
.svc-detail ul { padding-left: 22px; }
.svc-detail li { padding: 4px 0; }

/* Section 5 — service plans */
.svc-plans { padding: 72px 20px; background: #fff; }
.svc-plans h2 {
  color: var(--dark); font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 6px;
}
.svc-plans__intro { color: var(--gray-700); margin: 0 0 32px; }
.svc-plans__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; max-width: 1280px; margin: 0 auto;
}
@media (max-width: 820px) { .svc-plans__grid { grid-template-columns: 1fr; } }
.plan-card {
  background: #fff; border: 1px solid var(--gray-300);
  border-radius: 14px; padding: 28px 26px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.plan-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}
.plan-card h3 {
  color: var(--green-dark); font-family: 'Outfit', sans-serif;
  font-size: 1.35rem; margin: 0 0 8px;
}
.plan-card__price {
  color: var(--accent); font-weight: 700;
  font-size: 1.1rem; margin: 0 0 12px;
}
.plan-card p { color: var(--gray-700); font-size: .95rem; }

/* Section 6 — why choose us */
.svc-why { background: var(--gray-100); padding: 72px 20px; }
.svc-why h2 {
  color: var(--dark); font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 32px;
}
.svc-why__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px; max-width: 1280px; margin: 0 auto;
}
@media (max-width: 720px) { .svc-why__grid { grid-template-columns: 1fr; } }
.why-card {
  background: #fff; padding: 24px 26px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.why-card h3 {
  color: var(--dark); margin: 0 0 8px;
  font-size: 1.15rem; font-weight: 700;
}
.why-card p { color: var(--gray-700); margin: 0; font-size: .95rem; }

/* Section 7 — FAQ (reuses .faq styles, add section container) */
.svc-faq { padding: 72px 20px; background: #fff; }
.svc-faq h2 {
  color: var(--dark); font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 32px;
}

/* ===== HERO — Home ===== */
.hero-home {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 60px 20px 48px;
  text-align: center;
}
.hero-home__inner {
  max-width: 1280px; margin: 0 auto;
}
.hero-home__title-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 32px;
}
.hero-home__line {
  flex: 1; max-width: 200px; height: 3px;
  background: var(--yellow);
}
.hero-home h1 {
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 3rem);
  margin: 0; text-shadow: 0 2px 8px rgba(0,0,0,.5);
  font-weight: 700;
}
.quote-banner {
  display: inline-block; margin: 0 auto 32px;
  transition: transform .2s;
}
.quote-banner:hover { transform: scale(1.04); }
.quote-banner img {
  max-width: 100%; height: auto;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.4));
}
.hero-home .quote-banner { display: inline-block; max-width: 420px; }
.hero-home .quote-banner img { width: 100%; }
.quote-banner--small img { max-width: 260px; }

.hero-home__preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; max-width: 1200px; margin: 0 auto 16px;
}
.preview-card {
  position: relative; display: block;
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  transition: transform .2s, box-shadow .2s;
}
.preview-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,.4); }
.preview-card img {
  width: 100%; height: 260px; object-fit: cover; display: block;
}
.preview-card__label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: rgba(30,30,30,.8);
  color: #fff; font-weight: 600; font-size: 1rem;
  text-align: center;
}
.hero-home__ratings {
  display: flex; justify-content: space-between;
  max-width: 1100px; margin: 16px auto 0;
  padding: 0 40px;
}
.hero-home__ratings .stars {
  color: var(--yellow); font-size: 1.5rem; letter-spacing: 3px;
  text-shadow: 0 2px 4px rgba(0,0,0,.5);
}

/* ===== SERVICES WE MANAGE (dark concrete-texture bg + olive cards) ===== */
.svc-manage {
  background-size: cover;
  background-position: center;
  padding: 72px 24px;
  color: #fff;
}
.svc-manage__header {
  display: grid;
  grid-template-columns: 260px 1fr 220px;
  gap: 32px; align-items: center;
  max-width: 1280px; margin: 0 auto 48px;
}
.svc-manage__title h2 {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: 1px;
  margin: 0 0 10px;
}
.svc-manage__title p {
  font-size: 1rem; line-height: 1.5; opacity: .92; margin: 0;
}
.svc-manage__stat {
  text-align: right; color: var(--accent);
  line-height: 1;
}
.svc-manage__stat-num {
  display: block; font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 4.5rem; color: var(--accent);
}
.svc-manage__stat-lbl {
  font-size: .95rem; color: var(--accent);
}

.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1280px; margin: 0 auto;
}
.svc-card {
  background: var(--olive);
  padding: 22px 22px 18px;
  color: var(--dark);
  display: flex; flex-direction: column;
  position: relative;
  min-height: 420px;
  border-radius: 2px;
}
.svc-card h3 {
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem; font-weight: 700;
  margin: 0 0 10px;
}
.svc-card p {
  color: var(--dark); font-size: .95rem;
  margin: 0 0 14px;
}
.svc-card img {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: 2px;
}
.svc-card__btn {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  background: rgba(40,40,40,.85);
  color: #fff !important;
  padding: 8px 22px; border-radius: 999px;
  font-weight: 600; font-size: .92rem;
  transition: background .2s;
  white-space: nowrap;
}
.svc-card__btn:hover { background: var(--dark); }

/* ===== OUR EXPERTISE ===== */
.expertise {
  background: #4b4b4d;
  padding: 72px 24px;
  color: #fff;
}
.expertise__head { text-align: center; max-width: 780px; margin: 0 auto 40px; }
.expertise__head h2 {
  color: var(--green-bright);
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin: 0 0 8px;
}
.expertise__head p { color: #fff; opacity: .92; }
.expertise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1280px; margin: 0 auto;
}
.exp-card {
  background: #fff; overflow: hidden;
  border-radius: 2px;
  color: var(--dark);
  transition: transform .2s, box-shadow .2s;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.exp-card img {
  width: 100%; height: 250px; object-fit: cover;
}
.exp-card__body { padding: 24px 24px 28px; }
.exp-card h3 {
  color: var(--dark); margin: 0 0 10px;
  font-size: 1.2rem; font-weight: 700;
}
.exp-card p { color: var(--gray-700); margin: 0; font-size: .95rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-sec {
  background: var(--black);
  padding: 72px 24px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1280px; margin: 0 auto;
}
.tcard {
  background: #7a7a7a;
  padding: 32px 24px 28px;
  text-align: center; color: #fff;
  border-radius: 2px;
  min-height: 300px;
}
.tcard__avatar {
  width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover; margin: -48px auto 12px;
  border: 3px solid #7a7a7a;
  background: #ccc;
}
.tcard h4 {
  color: #fff; font-size: 1.05rem;
  font-weight: 500; margin: 0 0 10px;
}
.tcard__stars {
  color: var(--yellow); font-size: 1.25rem;
  letter-spacing: 3px; margin-bottom: 14px;
}
.tcard p {
  color: #fff; font-size: 1.05rem;
  font-family: 'Outfit', sans-serif; font-weight: 500;
  line-height: 1.4; margin: 0;
}

/* ===== Footer ===== */
.site-footer {
  background: #4b4b4d;
  color: #fff;
  padding: 56px 24px 0;
  font-size: .95rem;
}
.site-footer__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}
.site-footer__col h4 {
  color: #fff; font-size: 1.15rem; font-weight: 700;
  letter-spacing: .5px; margin: 0 0 14px;
  font-family: 'Outfit', sans-serif;
}
.site-footer__col p { margin: 0 0 10px; color: #ddd; }
.site-footer__col a { color: #ddd; }
.site-footer__col a:hover { color: var(--green-bright); }
.site-footer__phone {
  font-size: 1.05rem;
}
.site-footer__social {
  display: flex; gap: 16px; margin-top: 14px;
}
.site-footer__social a {
  color: #fff;
  transition: color .2s;
}
.site-footer__social a:hover { color: var(--green-bright); }
.site-footer__form label {
  display: block; margin-bottom: 8px; font-size: .95rem; color: #ddd;
}
.site-footer__form input {
  width: 100%; padding: 12px 16px;
  border: none; border-radius: 8px;
  background: #fff; color: var(--dark);
  font-size: .95rem; font-family: inherit;
  margin-bottom: 12px;
}
.site-footer__form button {
  background: var(--dark); color: #fff;
  border: none; border-radius: 999px;
  padding: 12px 28px;
  font-weight: 600; font-size: .95rem;
  cursor: pointer;
  transition: background .2s;
}
.site-footer__form button:hover { background: #000; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 44px;
  padding: 20px 0;
  text-align: left;
  max-width: 1280px; margin-left: auto; margin-right: auto;
  color: #ddd; font-size: .88rem;
}
.site-footer__bottom a { color: #ddd; text-decoration: underline; }

/* ===== Top CTA strip (auto-injected on all sub-pages — BLUE banner) ===== */
.cta-strip {
  background:
    linear-gradient(rgba(10,20,14,.78), rgba(10,20,14,.82)),
    url('/images/concrete-texture.png') center/cover no-repeat;
  padding: 28px 20px;
  text-align: center;
}
.cta-strip__inner { max-width: 980px; margin: 0 auto; }
.quote-banner--strip { display: inline-block; transition: transform .18s; }
.quote-banner--strip:hover { transform: scale(1.03); }
.quote-banner--strip img {
  width: 100%; max-width: 720px; height: auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.45));
}
@media (max-width: 540px) {
  .cta-strip { padding: 20px 12px; }
}

/* ===== Generic / Shared page styles (kept for city & service pages) ===== */
.breadcrumbs {
  max-width: 1280px; margin: 0 auto;
  padding: 16px 24px; font-size: .88rem; color: var(--gray-500);
}
.breadcrumbs a { color: var(--gray-500); }
.breadcrumbs a:hover { color: var(--green); }

.page-hero {
  background: linear-gradient(rgba(13,20,26,.65), rgba(13,20,26,.7)), url('/images/concrete-texture.png') center/cover no-repeat;
  color: #fff;
  padding: 90px 24px 70px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { opacity: .94; font-size: 1.1rem; max-width: 720px; margin: 0 auto; }

section.block { padding: 72px 24px; }
section.block--alt { background: var(--gray-100); }
.section-head { text-align: center; max-width: 820px; margin: 0 auto 44px; }
.section-head h2 { margin-bottom: 10px; }
.section-head p { color: var(--gray-500); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 1280px; margin: 0 auto;
}
.service-card {
  background: #fff; border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card__body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--gray-700); font-size: .95rem; flex: 1; }
.service-card__link { display: inline-block; margin-top: 14px; color: var(--green); font-weight: 600; font-size: .92rem; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px; max-width: 1280px; margin: 0 auto;
}
.gallery-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 6px; cursor: zoom-in;
  transition: transform .2s;
}
.gallery-grid img:hover { transform: scale(1.02); }

.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff; text-align: center;
  padding: 56px 20px;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner .btn { background: #fff; color: var(--green-dark); }
.btn {
  display: inline-block; padding: 13px 28px;
  border-radius: 999px; font-weight: 600;
  text-decoration: none; transition: all .2s;
  border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--dark); }
.btn-accent { background: var(--accent); color: var(--dark); }

.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  max-width: 1280px; margin: 0 auto;
}
.contact-info h2 { color: var(--green-dark); margin-bottom: 28px; }
.info-block { margin-bottom: 28px; }
.info-block h3 {
  font-size: 1rem; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.info-phone { font-size: 1.6rem; font-weight: 700; margin: 0; }
.info-phone a { color: var(--green-dark); }
.info-hours { list-style: none; padding: 0; margin: 0; }
.info-hours li {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--gray-300);
  font-size: .95rem;
}
.info-hours li:last-child { border-bottom: none; }

.contact-form {
  background: #fff; padding: 32px;
  border-radius: 12px; box-shadow: var(--shadow-md);
}
.contact-form .field { margin-bottom: 16px; }
.contact-form label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--gray-700); }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--gray-300); border-radius: 8px;
  font-size: 1rem; font-family: inherit;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  width: 100%; padding: 14px;
  background: var(--green); color: #fff;
  border: none; border-radius: 8px;
  font-size: 1rem; font-weight: 600; cursor: pointer;
}
.contact-form button:hover { background: var(--green-dark); }
.contact-form .success {
  background: #e8f5e9; color: #1b5e20;
  padding: 14px; border-radius: 8px; margin-bottom: 16px;
}

.faq { max-width: 880px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--gray-300);
  border-radius: 10px; padding: 18px 24px; margin-bottom: 12px;
}
.faq summary { cursor: pointer; font-weight: 600; font-size: 1.05rem; list-style: none; position: relative; padding-right: 28px; }
.faq summary::after {
  content: '+'; position: absolute; right: 0; top: 0;
  font-size: 1.4rem; color: var(--green);
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 12px; color: var(--gray-700); }

.city-picker {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px; max-width: 1000px; margin: 0 auto;
}
.city-card {
  background: #fff; padding: 28px 24px;
  border-radius: 12px; box-shadow: var(--shadow-sm);
  text-align: center;
}
.city-card h3 { color: var(--green); margin-bottom: 6px; }
.city-card a {
  display: inline-block; padding: 9px 18px; background: var(--green);
  color: #fff; border-radius: 6px; font-weight: 600; font-size: .88rem;
}

.content-2col {
  display: grid; grid-template-columns: 2fr 1fr; gap: 40px;
  max-width: 1280px; margin: 0 auto;
}
.sidebar-card {
  background: var(--gray-100); padding: 26px; border-radius: 12px;
  position: sticky; top: 100px;
}
.sidebar-card h3 { color: var(--green-dark); margin-bottom: 14px; }
.sidebar-card ul { list-style: none; padding: 0; }
.sidebar-card li { padding: 8px 0; border-bottom: 1px solid var(--gray-300); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-home__preview-cards { grid-template-columns: repeat(2, 1fr); }
  .svc-manage__header { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .svc-manage__stat { text-align: center; }
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
  .expertise__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { gap: 40px; }
}
@media (max-width: 820px) {
  .site-header__nav { display: none; }
  .site-header__hamburger { display: flex; }
  .hero-home__preview-cards { grid-template-columns: 1fr; }
  .hero-home__ratings { display: none; }
  .svc-cards { grid-template-columns: 1fr; }
  .expertise__grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .content-2col, .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .site-header__logo img { height: 56px; }
  .hero-home h1 { font-size: 1.4rem; }
  .quote-banner img { width: 280px; }
  .svc-manage__stat-num { font-size: 3rem; }
  section.block { padding: 48px 18px; }
}
