/* ============================================================
   W&B LANDSCAPING & CLEANING SERVICE — Main Stylesheet
   Clean & Earthy Design — Raleway + Source Sans 3
   ============================================================ */

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

:root {
  --green:       #2D5016;
  --green-light: #3d6b1e;
  --green-dark:  #1a2f0d;
  --terra:       #C1440E;
  --terra-light: #d95c28;
  --terra-dark:  #943310;
  --cream:       #FAFAF7;
  --cream-dark:  #F0EFE8;
  --dark:        #1C1C1A;
  --dark2:       #2C2C28;
  --gray:        #6b7062;
  --gray-light:  #EFEFEA;
  --white:       #ffffff;
  --shadow:      0 4px 24px rgba(28,28,26,.10);
  --shadow-lg:   0 8px 40px rgba(28,28,26,.16);
  --radius:      10px;
  --radius-lg:   18px;
  --transition:  .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 { font-family: 'Raleway', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terra);
  font-family: 'Raleway', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--terra);
  border-radius: 2px;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.section-header .section-tag { justify-content: center; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--gray); font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,.75); }
.section-header.light .section-tag { color: #e88a60; }
.section-header.light .section-tag::before { background: #e88a60; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  letter-spacing: .02em;
}
.btn-primary {
  background: var(--terra);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(193,68,14,.35);
}
.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(45,80,22,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-outline-terra {
  background: transparent;
  color: var(--terra);
  border-color: var(--terra);
}
.btn-outline-terra:hover {
  background: var(--terra);
  color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR — Right side shows phone number
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--transition);
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.navbar .nav-logo { color: var(--white); }
.navbar .nav-logo img { border-color: rgba(255,255,255,.2); }
.navbar .nav-links a { color: rgba(255,255,255,.85); }
.navbar .nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.navbar .nav-links a.active:not(.nav-cta) { color: var(--white); background: rgba(255,255,255,.08); }
.navbar .nav-phone { color: var(--white); }
.navbar .nav-toggle span { background: var(--white); }
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.nav-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}
.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.25);
}
.nav-logo span {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: .92rem;
  line-height: 1.3;
  letter-spacing: .01em;
}
.nav-logo small {
  font-weight: 500;
  font-size: .78rem;
  opacity: .7;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-family: 'Raleway', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  letter-spacing: .02em;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-links a.active:not(.nav-cta) { color: var(--white); background: rgba(255,255,255,.1); }
.nav-links .nav-cta {
  background: var(--terra);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 6px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--terra-dark); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--white); }
.nav-phone svg { color: var(--terra); flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO ENTRANCE ANIMATIONS
   ============================================================ */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hero-line-grow {
  from { width: 0; opacity: 0; }
  to   { width: 40px; opacity: 1; }
}
@keyframes hero-img-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

.hero-eyebrow      { animation: hero-fade-up 1.1s cubic-bezier(.22,1,.36,1) both; animation-delay: .15s; }
.hero-content h1   { animation: hero-fade-up 1.1s cubic-bezier(.22,1,.36,1) both; animation-delay: .35s; }
.hero-tagline      { animation: hero-fade-up 1.1s cubic-bezier(.22,1,.36,1) both; animation-delay: .52s; }
.hero-sub          { animation: hero-fade-up 1.1s cubic-bezier(.22,1,.36,1) both; animation-delay: .68s; }
.hero-buttons      { animation: hero-fade-up 1.1s cubic-bezier(.22,1,.36,1) both; animation-delay: .84s; }
.hero-trust        { animation: hero-fade-in 1.1s ease both; animation-delay: 1.05s; }
.hero-eyebrow-line { animation: hero-line-grow .8s ease both; animation-delay: .18s; }
.hero-right img    { animation: hero-img-zoom 1.6s ease both; animation-delay: 0s; }

/* ============================================================
   HERO — Split layout: text left, image right
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-left {
  background: var(--cream);
  display: flex;
  align-items: center;
  padding: 120px 60px 80px calc((100vw - 1200px)/2 + 24px);
  position: relative;
  z-index: 2;
}
.hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: -60px; bottom: 0;
  width: 80px;
  background: var(--cream);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 3;
}
.hero-content { color: var(--dark); max-width: 540px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 40px; height: 2px;
  background: var(--terra);
  border-radius: 2px;
}
.hero-eyebrow-text {
  font-family: 'Raleway', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terra);
}
.hero-content h1 {
  margin-bottom: 10px;
  line-height: 1.1;
  color: var(--dark);
}
.hero-content h1 .accent { color: var(--green); }
.hero-tagline {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #ddddd5;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
}
.hero-trust-item svg { color: var(--green); flex-shrink: 0; }

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,250,247,.18) 0%, transparent 40%);
  z-index: 2;
}
/* Slide counter dots */
.hero-slide-dots {
  position: absolute;
  bottom: 28px;
  right: 28px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}
.hero-slide-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children inside a reveal-group */
.reveal-group > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal-group.visible > *:nth-child(1) { transition-delay: .05s; opacity: 1; transform: none; }
.reveal-group.visible > *:nth-child(2) { transition-delay: .15s; opacity: 1; transform: none; }
.reveal-group.visible > *:nth-child(3) { transition-delay: .25s; opacity: 1; transform: none; }
.reveal-group.visible > *:nth-child(4) { transition-delay: .35s; opacity: 1; transform: none; }
.reveal-group.visible > *:nth-child(5) { transition-delay: .45s; opacity: 1; transform: none; }
.reveal-group.visible > *:nth-child(6) { transition-delay: .55s; opacity: 1; transform: none; }
.reveal-group.visible > *:nth-child(7) { transition-delay: .60s; opacity: 1; transform: none; }
.reveal-group.visible > *:nth-child(8) { transition-delay: .65s; opacity: 1; transform: none; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--green);
  padding: 22px 20px;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.trust-item svg { color: #9dd469; flex-shrink: 0; }

/* ============================================================
   SERVICES — Horizontal scroll cards with accent strip
   ============================================================ */
.services {
  padding: 100px 0;
  background: var(--cream);
}
.services-scroll-wrapper {
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--terra) var(--cream-dark);
}
.services-scroll-wrapper::-webkit-scrollbar { height: 4px; }
.services-scroll-wrapper::-webkit-scrollbar-track { background: var(--cream-dark); }
.services-scroll-wrapper::-webkit-scrollbar-thumb { background: var(--terra); border-radius: 4px; }
.services-track {
  display: flex;
  gap: 20px;
  min-width: max-content;
  padding: 8px 4px 8px;
}
.service-card {
  width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 190px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
  position: relative;
  overflow: hidden;
}
.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--terra);
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 1.05rem;
}
.service-card-body ul {
  margin-bottom: 18px;
  flex: 1;
}
.service-card-body ul li {
  padding: 3px 0;
  color: var(--gray);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card-body ul li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--terra);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-link {
  color: var(--green);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 8px; color: var(--green-dark); }
.service-icon {
  width: 46px; height: 46px;
  background: rgba(193,68,14,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--terra);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 14px;
}
.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-img-side img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-content .section-tag { margin-bottom: 12px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.85;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 28px 32px;
  background: var(--cream-dark);
  border-radius: var(--radius);
  border-left: 4px solid var(--terra);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  color: var(--gray);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
  display: block;
}
.about-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--gray);
  font-size: .9rem;
}
.about-hours svg { color: var(--green); flex-shrink: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 100px 0;
  background: var(--cream-dark);
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 24px;
  border-radius: 6px;
  border: 2px solid #d8d7cf;
  background: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--gray);
  text-transform: uppercase;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform var(--transition), opacity var(--transition);
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,26,.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28,28,26,.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-content p {
  color: rgba(255,255,255,.7);
  margin-top: 12px;
  font-size: .9rem;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  border-radius: 6px;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  line-height: 1;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.22); }
.lightbox-close { top: 24px; right: 24px; font-size: 1.6rem; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  padding: 100px 0;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(193,68,14,.08);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 3px solid var(--terra);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: background var(--transition), transform var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
}
.why-icon {
  width: 54px; height: 54px;
  background: rgba(193,68,14,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #e88a60;
}
.why-card h4 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-family: 'Raleway', sans-serif;
}
.why-card p {
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  line-height: 1.75;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  padding: 100px 0;
  background: var(--cream);
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}
.area-card {
  background: var(--white);
  border-radius: 8px;
  padding: 11px 20px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: var(--dark);
  border: 2px solid #ddddd5;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.area-card:hover {
  border-color: var(--green);
  color: var(--green-dark);
}
.area-card.primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  padding: 13px 24px;
  font-size: .95rem;
}
.areas-note {
  text-align: center;
  color: var(--gray);
  font-size: .92rem;
}
.areas-note a { color: var(--terra); font-weight: 700; }
.areas-note a:hover { text-decoration: underline; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 100px 0;
  background: var(--cream-dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 12px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--gray); margin-bottom: 36px; line-height: 1.85; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--terra);
}
.contact-method.no-link { cursor: default; }
.contact-method.no-link:hover {
  transform: none;
  box-shadow: var(--shadow);
  border-color: transparent;
}
.contact-method.whatsapp:hover { border-color: #25d366; }
.cm-icon {
  width: 44px; height: 44px;
  background: rgba(193,68,14,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  flex-shrink: 0;
}
.cm-icon.whatsapp-icon { background: rgba(37,211,102,.1); color: #25d366; }
.contact-method div strong {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.contact-method div span {
  font-size: .88rem;
  color: var(--gray);
}
.social-links { display: flex; gap: 10px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .03em;
  transition: all var(--transition);
}
.social-btn.facebook { background: #1877f2; color: var(--white); }
.social-btn.facebook:hover { background: #0f65d4; transform: translateY(-2px); }
.social-btn.tiktok { background: var(--dark); color: var(--white); }
.social-btn.tiktok:hover { background: #000; transform: translateY(-2px); }
.social-btn.google { background: var(--dark2); color: var(--white); }
.social-btn.google:hover { background: #000; transform: translateY(-2px); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 44px;
  border-top: 4px solid var(--terra);
}
.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #ddddd5;
  border-radius: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(193,68,14,.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; }
.form-note {
  text-align: center;
  color: var(--gray);
  font-size: .8rem;
  margin-top: 12px;
}

/* ============================================================
   FOOTER — Two-tone: deep green top + terra strip bottom
   ============================================================ */
.footer {
  background: var(--green-dark);
  color: var(--white);
}
.footer-top {
  padding: 72px 0 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand img {
  width: 54px;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 2px solid rgba(255,255,255,.15);
}
.footer-brand p {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 6px;
  line-height: 1.3;
}
.footer-slogan {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  font-style: italic;
  display: block;
  margin-bottom: 18px;
}
.footer-links h5,
.footer-contact h5 {
  font-family: 'Raleway', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact a,
.footer-contact p {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 0;
}

/* Terra strip at bottom */
.footer-bottom {
  background: var(--terra);
  padding: 16px 20px;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  letter-spacing: .03em;
}
.footer-bottom a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* Footer social */
.footer-social { display: flex; gap: 8px; margin-top: 4px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 6px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: all var(--transition);
}
.footer-social a:hover { background: var(--terra); color: var(--white); }

/* ============================================================
   FLOATING WHATSAPP CTA
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px; height: 58px;
  background: var(--terra);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(193,68,14,.5);
  z-index: 999;
  transition: all var(--transition);
  animation: pulse-call 2.5s infinite;
}
.float-cta:hover {
  background: var(--terra-dark);
  transform: scale(1.1);
  animation: none;
}
@keyframes pulse-call {
  0%   { box-shadow: 0 6px 24px rgba(193,68,14,.5); }
  50%  { box-shadow: 0 6px 32px rgba(193,68,14,.8), 0 0 0 10px rgba(193,68,14,.12); }
  100% { box-shadow: 0 6px 24px rgba(193,68,14,.5); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  /* Stack hero: image behind, text on top */
  .hero {
    grid-template-columns: 1fr;
    position: relative;
    display: block;
    height: 100vh;
    min-height: 600px;
  }

  /* Image panel: absolute inside hero only */
  .hero-right {
    display: block;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  /* Dark overlay */
  .hero-right-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(28,28,26,.45) 0%,
      rgba(28,28,26,.65) 50%,
      rgba(28,28,26,.82) 100%
    );
    z-index: 1;
  }

  /* Text panel floats over the fixed image */
  .hero-left {
    position: relative;
    z-index: 2;
    background: transparent;
    flex: 1;
    display: flex;
    align-items: flex-start;
    padding: 100px 24px 60px;
    /* Fallback color while image loads — matches overlay tone */
    background-color: rgba(28,28,26,.01);
  }
  .hero-left::after { display: none; }

  /* Switch all text to white since we now have a dark overlay */
  .hero-content { color: var(--white); max-width: 100%; }
  .hero-content h1 { color: var(--white); }
  .hero-content h1 .accent { color: #7ebd4e; }
  .hero-tagline { color: rgba(255,255,255,.7); }
  .hero-sub { color: rgba(255,255,255,.85); }
  .hero-trust { border-top-color: rgba(255,255,255,.15); }
  .hero-trust-item { color: rgba(255,255,255,.7); }
  .hero-trust-item svg { color: #9dd469; }

  /* Dots stay visible in bottom-right */
  .hero-slide-dots { bottom: 24px; right: 20px; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-container { grid-template-columns: auto 1fr auto; }
  /* Mobile navbar: always dark, no transparency */
  .navbar { background: var(--dark) !important; box-shadow: 0 2px 12px rgba(0,0,0,.3); }
  .navbar .nav-logo { color: var(--white) !important; }
  .navbar .nav-logo img { border-color: rgba(255,255,255,.25) !important; }
  .navbar .nav-toggle span { background: var(--white) !important; }
  .navbar .nav-phone { color: var(--white) !important; }

  .nav-container { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark); padding: 16px; gap: 4px; z-index: 100; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 6px; color: rgba(255,255,255,.85) !important; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }

  .hero-left { padding: 90px 20px 60px; }
  .hero-content { width: 100%; }
  .hero-content h1 { font-size: 2rem; }
  .hero-sub { font-size: .97rem; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 32px; }


  .about-grid { grid-template-columns: 1fr; }
  .about-images { grid-template-columns: 1fr; }
  .about-img-side { flex-direction: row; }
  .about-img-side img { height: 160px; }
  .about-stats { flex-direction: column; gap: 20px; }
  .about-stats .stat { display: flex; align-items: center; gap: 16px; text-align: left; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .trust-bar .container { gap: 20px; }
  .trust-item { font-size: .78rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .float-cta { bottom: 20px; right: 20px; }
}

/* ============================================================
   MULTI-PAGE ADDITIONS
   ============================================================ */

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding-top: 72px;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,26,.8) 0%, rgba(28,28,26,.4) 60%, rgba(28,28,26,.2) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 24px 48px calc((100vw - 1200px)/2 + 24px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.page-hero-content p {
  font-size: 1.05rem;
  opacity: .9;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  letter-spacing: .04em;
}
.breadcrumb a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.4); }
.breadcrumb span:last-child { color: var(--white); }

/* ---------- PAGE SECTIONS ---------- */
.page-section { padding: 80px 0; }
.page-section.bg-light { background: var(--cream-dark); }
.page-section.bg-dark-green { background: var(--green-dark); }

/* ---------- SEO INTRO (Home) ---------- */
.seo-intro { padding: 100px 0; background: var(--white); }
.seo-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.seo-intro-text .section-tag { margin-bottom: 12px; }
.seo-intro-text h2 { margin-bottom: 20px; }
.seo-intro-text p { color: var(--gray); margin-bottom: 16px; line-height: 1.85; }
.seo-intro-ctas { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--terra); font-family: 'Raleway', sans-serif;
  font-weight: 700; font-size: .95rem;
  padding: 14px 8px; transition: gap var(--transition);
}
.btn-ghost:hover { gap: 10px; }
.seo-intro-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.seo-intro-imgs img {
  width: 100%; height: 280px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.seo-intro-imgs img:first-child {
  grid-column: span 2; height: 220px;
}

/* ---------- SERVICES CTA ---------- */
.services-cta { text-align: center; margin-top: 48px; }

/* ---------- HOME GALLERY PREVIEW ---------- */
.gallery-preview { padding: 100px 0; background: var(--white); }
.gallery-grid.home-gallery { grid-template-columns: repeat(4, 1fr); }

/* ---------- AREAS TEASER (Home) ---------- */
.areas-teaser { padding: 100px 0; background: var(--cream-dark); }
.areas-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.areas-teaser-text .section-tag { margin-bottom: 12px; }
.areas-teaser-text h2 { margin-bottom: 20px; }
.areas-teaser-text p { color: var(--gray); margin-bottom: 16px; line-height: 1.85; }
.areas-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chip {
  background: var(--white); border: 2px solid #ddddd5;
  border-radius: 6px; padding: 8px 16px;
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: .82rem; color: var(--dark);
  transition: all var(--transition);
  letter-spacing: .02em;
}
.area-chip:hover { border-color: var(--green); color: var(--green-dark); }
.area-chip.primary { background: var(--green); color: var(--white); border-color: var(--green); }

/* ---------- REVIEWS ---------- */
.reviews-section { padding: 80px 0; background: var(--white); }
.overall-rating { display: flex; align-items: center; gap: 12px; justify-content: center; margin-top: 8px; flex-wrap: wrap; }
.rating-score { font-size: 2rem; font-weight: 800; color: var(--dark); font-family: 'Raleway', sans-serif; }
.overall-rating .stars { font-size: 1.4rem; color: #f5a623; }
.review-count { font-size: 0.9rem; color: var(--terra); text-decoration: underline; font-weight: 600; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.review-card {
  background: var(--cream-dark); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
  border-bottom: 3px solid var(--terra);
}
.review-header { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; font-family: 'Raleway', sans-serif; }
.review-header strong { display: block; font-size: 0.95rem; font-family: 'Raleway', sans-serif; }
.review-date { font-size: 0.8rem; color: var(--gray); }
.review-stars { color: #f5a623; font-size: 1rem; }
.review-text { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

/* ---------- CTA BANNER ---------- */
.cta-banner { padding: 72px 0; background: var(--cream); }
.cta-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
}
.cta-banner-inner h2 { font-size: clamp(1.3rem, 2.5vw, 2rem); margin-bottom: 8px; color: var(--white); }
.cta-banner-inner p { color: rgba(255,255,255,.75); }
.cta-banner-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: .95rem;
  border: 2px solid rgba(255,255,255,.5); color: var(--white);
  transition: all var(--transition);
}
.btn-outline-dark:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

/* ---------- NAV ACTIVE LINK ---------- */
.nav-links a.active:not(.nav-cta) {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

/* ---------- ABOUT PAGE VALUES ---------- */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; box-shadow: var(--shadow);
  border-top: 4px solid var(--terra);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-num {
  font-family: 'Raleway', sans-serif; font-size: 2.5rem;
  font-weight: 800; color: rgba(193,68,14,.12); line-height: 1;
  margin-bottom: 8px;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.value-card p { color: var(--gray); font-size: .92rem; line-height: 1.75; }

/* ---------- CREDENTIALS GRID ---------- */
.creds-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.cred-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  transition: background var(--transition);
}
.cred-card:hover { background: rgba(255,255,255,.12); }
.cred-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(193,68,14,.25); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 18px; color: #e88a60;
}
.cred-card h4 { color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.cred-card p { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.7; }

/* ---------- SEO TEXT BLOCK ---------- */
.seo-text-block { max-width: 860px; margin: 0 auto; }
.seo-text-block .section-tag { margin-bottom: 12px; }
.seo-text-block h2 { margin-bottom: 20px; }
.seo-text-block p { color: var(--gray); margin-bottom: 16px; line-height: 1.9; font-size: 1rem; }
.seo-text-block a { color: var(--terra); font-weight: 600; }
.seo-text-block a:hover { text-decoration: underline; }

/* ---------- SERVICES DETAIL (Services Page) ---------- */
.services-detail-grid { display: flex; flex-direction: column; gap: 72px; }
.service-detail-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }
.service-detail-card > img {
  width: 100%; height: 380px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.sdc-body h3 { font-size: 1.4rem; margin-bottom: 16px; }
.sdc-body p { color: var(--gray); line-height: 1.85; margin-bottom: 14px; }
.service-bullets { margin: 18px 0 24px; }
.service-bullets li {
  padding: 5px 0; color: var(--gray); font-size: .92rem;
  display: flex; align-items: center; gap: 10px;
}
.service-bullets li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--terra); border-radius: 50%; flex-shrink: 0;
}
.btn-sm { padding: 10px 22px; font-size: .88rem; }

/* ---------- SERVICES MINI CARDS ---------- */
.services-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-mini-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid var(--terra);
}
.service-mini-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-mini-card img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform .5s ease;
}
.service-mini-card:hover img { transform: scale(1.04); }
.service-mini-card h3 {
  font-size: 1.05rem; padding: 20px 24px 8px; color: var(--dark);
}
.service-mini-card p {
  padding: 0 24px 24px; color: var(--gray); font-size: .9rem; line-height: 1.7;
}

/* ---------- CITY CARDS GRID (Service Areas) ---------- */
.city-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.city-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.city-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.city-card.featured {
  grid-column: span 3; display: grid;
  grid-template-columns: 1fr 1.5fr; gap: 0;
  border-left: 4px solid var(--terra);
}
.city-card img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform .5s ease;
}
.city-card:hover img { transform: scale(1.04); }
.city-card.featured img { height: 100%; min-height: 260px; }
.city-card-body {
  padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 10px;
}
.city-badge { display: inline-block; padding: 4px 12px; border-radius: 4px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-family: 'Raleway', sans-serif; }
.city-badge.primary { background: rgba(193,68,14,.1); color: var(--terra); }
.city-card-body h3 { font-size: 1.1rem; }
.city-card-body p { color: var(--gray); font-size: .9rem; line-height: 1.7; flex: 1; }
.city-link { color: var(--terra); font-weight: 700; font-size: .88rem; margin-top: auto; font-family: 'Raleway', sans-serif; }
.city-link:hover { color: var(--terra-dark); }

/* ---------- COUNTIES GRID ---------- */
.counties-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.county-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
  border-left: 4px solid var(--terra);
}
.county-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--dark); }
.county-card p { color: var(--gray); font-size: .88rem; line-height: 1.6; }

/* ---------- CONTACT PAGE ---------- */
.contact-page-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-page-info .section-tag { margin-bottom: 12px; }
.contact-page-info h2 { margin-bottom: 16px; }
.contact-page-info > p { color: var(--gray); line-height: 1.85; margin-bottom: 14px; }
.contact-social-row { display: flex; gap: 10px; margin-top: 24px; margin-bottom: 36px; flex-wrap: wrap; }

/* Contact FAQ */
.contact-faq { margin-top: 36px; }
.contact-faq h3 { font-size: 1.2rem; margin-bottom: 20px; }
.faq-item {
  border-bottom: 1px solid #ddddd5; padding: 16px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { font-size: .95rem; margin-bottom: 8px; color: var(--dark); font-family: 'Raleway', sans-serif; }
.faq-item p { color: var(--gray); font-size: .9rem; line-height: 1.7; }
.faq-item a { color: var(--terra); font-weight: 600; }

/* Form additions */
.form-intro { color: var(--gray); font-size: .9rem; margin-bottom: 24px; }

/* ---------- PRIVACY POLICY ---------- */
.privacy-content {
  max-width: 860px; margin: 0 auto; padding: 80px 24px;
}
.privacy-content h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 8px; }
.privacy-content .meta { color: var(--gray); font-size: .9rem; margin-bottom: 48px; }
.privacy-content h2 { font-size: 1.4rem; margin: 40px 0 14px; color: var(--dark); }
.privacy-content h3 { font-size: 1.1rem; margin: 28px 0 10px; color: var(--dark); }
.privacy-content p { color: var(--gray); line-height: 1.9; margin-bottom: 14px; }
.privacy-content ul { margin: 0 0 16px 24px; list-style: disc; }
.privacy-content ul li { color: var(--gray); line-height: 1.8; margin-bottom: 6px; }
.privacy-content a { color: var(--terra); font-weight: 600; }
.privacy-content a:hover { text-decoration: underline; }
.privacy-toc {
  background: var(--cream-dark); border-radius: var(--radius);
  padding: 28px 32px; margin-bottom: 48px;
  border-left: 4px solid var(--terra);
}
.privacy-toc h3 { margin: 0 0 14px; font-size: 1rem; }
.privacy-toc ol { margin-left: 20px; }
.privacy-toc ol li { margin-bottom: 8px; }
.privacy-toc ol li a { color: var(--terra); font-size: .95rem; }

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1024px) {
  .creds-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .counties-grid { grid-template-columns: repeat(2, 1fr); }
  .city-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .city-card.featured { grid-column: span 2; }
  .seo-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .areas-teaser-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-card { grid-template-columns: 1fr; gap: 28px; }
  .service-detail-card.reverse { direction: ltr; }
  .service-detail-card > img { height: 280px; }
  .services-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-grid { grid-template-columns: 1fr; }
  .gallery-grid.home-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-hero { height: 300px; }
  .page-hero-content { padding: 0 20px 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr 1fr; }
  .city-cards-grid { grid-template-columns: 1fr; }
  .city-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .city-card.featured img { height: 200px; }
  .counties-grid { grid-template-columns: 1fr 1fr; }
  .services-cards-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; padding: 36px 28px; }
  .cta-banner-btns { justify-content: center; }
  .seo-intro-imgs { grid-template-columns: 1fr; }
  .seo-intro-imgs img { height: 200px !important; }
  .seo-intro-imgs img:first-child { grid-column: span 1; }
  .footer-top { padding: 56px 0 40px; }
}

@media (max-width: 480px) {
  .creds-grid { grid-template-columns: 1fr; }
  .counties-grid { grid-template-columns: 1fr; }
  .areas-chips { justify-content: center; }
}
