/* ============================================================
   B&C PAVERS & LANDSCAPING INC. — MAIN STYLESHEET
   ============================================================ */

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Brand palette — matched to existing BC Landscapes color scheme */
  --green-dark:   #2A4014;   /* Color 7 — deep forest green (primary) */
  --green-mid:    #538027;   /* Color 8 — medium green (buttons/accents) */
  --green-light:  #84A068;   /* Color 6 — sage green */
  --green-pale:   #CCDFB8;   /* Color 9 — light sage */
  --green-soft:   #A9C093;   /* Color 10 — soft green */
  --gold:         #D4A017;   /* Gold — CTA / highlights */
  --gold-light:   #F0C040;
  --white:        #FFFFFF;
  --off-white:    #F7F9F5;   /* Slight green tint to off-white */
  --gray-light:   #E6EDE0;   /* Green-tinted light gray */
  --gray-mid:     #999999;   /* Color 2 */
  --gray-dark:    #666666;   /* Color 3 */
  --black:        #333333;   /* Color 4 — not pure black, softer */
  --shadow-sm:    0 2px 8px rgba(0,0,0,.12);
  --shadow-md:    0 6px 24px rgba(0,0,0,.15);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.18);
  --radius:       6px;
  --radius-lg:    12px;
  --transition:   .25s ease;
  --max-width:    1240px;
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--green-dark);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }
.lead { font-size: 1.15rem; color: var(--gray-dark); line-height: 1.75; }
.text-gold   { color: var(--gold); }
.text-green  { color: var(--green-mid); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }

/* ── UTILITY ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 110px 0; }
.section--dark { background: var(--green-dark); }
.section--off  { background: var(--off-white); }
.section--gray { background: var(--gray-light); }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-green {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn-outline-green:hover {
  background: var(--green-mid);
  color: var(--white);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1.25rem; font-size: .88rem; }

/* ── TOP BAR ──────────────────────────────────────────────── */
.topbar {
  background: var(--green-dark);
  color: var(--white);
  padding: .5rem 0;
  font-size: .85rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.topbar a { color: var(--gold-light); font-weight: 600; }
.topbar a:hover { color: var(--white); }
.topbar-phone { display: flex; align-items: center; gap: .4rem; font-weight: 700; font-size: 1rem; }

/* ── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo { display: flex; align-items: center; gap: .75rem; }
.logo img { height: 80px; width: auto; } /* full logo mark — already contains company name */
.logo-text { display: none; } /* logo image includes company name — hide duplicate text */
/* Keep logo-text as accessible fallback when image fails to load */
.logo img[src=""] ~ .logo-text,
.logo img:not([src]) ~ .logo-text { display: block; line-height: 1.2; }
.logo-text strong { display: block; font-family: var(--font-head); font-size: 1.2rem; color: var(--green-dark); }
.logo-text span { font-size: .75rem; color: var(--gray-mid); text-transform: uppercase; letter-spacing: .06em; }

.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: .6rem .9rem;
  font-weight: 600;
  font-size: .88rem;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--green-mid); }
.nav-link.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 2px;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: .5rem 0;
  z-index: 999;
}
.dropdown-menu a {
  display: block;
  padding: .6rem 1.25rem;
  font-size: .88rem;
  color: var(--gray-dark);
  font-weight: 500;
  transition: all var(--transition);
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--green-mid); padding-left: 1.6rem; }
.nav-item:hover .dropdown-menu { display: block; }
.has-dropdown > .nav-link::after {
  content: ' ▾';
  font-size: .7rem;
}

.nav-cta { margin-left: 1rem; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--green-dark);
  transition: all var(--transition);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .45;
  transition: opacity .5s;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,42,.92) 40%, rgba(45,106,79,.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(212,160,23,.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold); }
.hero .lead { color: rgba(255,255,255,.85); font-size: 1.15rem; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-size: 2.2rem;
  font-family: var(--font-head);
  color: var(--gold);
  line-height: 1;
}
.hero-stat span { font-size: .85rem; color: rgba(255,255,255,.7); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.scroll-dot {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100% { opacity:.4; transform:scaleY(1); } 50% { opacity:1; transform:scaleY(.6); } }

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header.text-center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: .6rem;
}
.section-title { margin-bottom: .75rem; }
.section-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: .75rem;
}
.section-header.text-center .section-line { margin: .75rem auto 0; }
.section-sub { font-size: 1rem; color: var(--gray-mid); max-width: 560px; margin: .5rem 0 0; }
.section-header.text-center .section-sub { margin: .5rem auto 0; }

/* Dark section overrides */
.section--dark .section-label { color: var(--gold-light); }
.section--dark .section-title { color: var(--white); }
.section--dark .section-sub { color: rgba(255,255,255,.65); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.8); }

/* ── TRUST STRIP ──────────────────────────────────────────── */
.trust-strip {
  background: var(--gold);
  padding: 1rem 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--green-dark);
  font-weight: 700;
  font-size: .9rem;
}
.trust-item svg { flex-shrink: 0; }

/* ── SERVICE CARDS ────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--gray-light);
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-img .card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--green-dark);
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--green-mid);
  font-size: 1.4rem;
}
.service-card h3 { margin-bottom: .5rem; font-size: 1.2rem; }
.service-card p { font-size: .9rem; color: var(--gray-mid); flex: 1; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--green-mid);
  font-weight: 600;
  font-size: .88rem;
  margin-top: 1rem;
  transition: gap var(--transition);
}
.service-card-link:hover { gap: .6rem; color: var(--green-dark); }

/* ── ICON BOXES ───────────────────────────────────────────── */
.icon-box {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
}
.icon-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}
.icon-box-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.icon-box h4 { margin-bottom: .5rem; }
.icon-box p { font-size: .9rem; color: var(--gray-mid); margin: 0; }

/* ── PROCESS STEPS ────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; }
.process-step { text-align: center; position: relative; }
.process-step::after {
  content: '→';
  position: absolute;
  top: 1.5rem;
  right: -1rem;
  color: var(--gold);
  font-size: 1.2rem;
}
.process-step:last-child::after { display: none; }
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 8px rgba(212,160,23,.15);
}
.process-step h4 { margin-bottom: .4rem; }
.process-step p { font-size: .88rem; color: var(--gray-mid); }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.testimonial-text { font-style: italic; color: var(--gray-dark) !important; font-size: .95rem; margin-bottom: 1.25rem; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green-mid);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: .9rem; color: var(--green-dark); }
.author-info span { font-size: .8rem; color: var(--gray-mid); }

/* ── PROJECT GALLERY ──────────────────────────────────────── */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--gray-light);
  cursor: pointer;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,42,.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-info h4 { color: var(--white); margin-bottom: .25rem; }
.project-info span { font-size: .82rem; color: var(--gold-light); }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: var(--green-dark);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: .5rem; }
.cta-band p { color: rgba(255,255,255,.8); margin: 0; font-size: 1.05rem; }
.cta-band-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-details { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--green-mid);
}
.contact-detail-text strong { display: block; font-size: .85rem; color: var(--gray-mid); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .2rem; }
.contact-detail-text a, .contact-detail-text p { color: var(--green-dark); font-weight: 600; font-size: 1rem; margin: 0; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--gold);
}
.form-title { font-size: 1.4rem; margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .25rem; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--gray-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .95rem;
  color: var(--gray-dark);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,106,79,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: .5rem; justify-content: center; }
.form-note { font-size: .78rem; color: var(--gray-mid); text-align: center; margin-top: .75rem; margin-bottom: 0; }

/* ── SERVICE AREA MAP GRID ────────────────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.area-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--gray-light);
}
.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.area-card:hover img { transform: scale(1.1); }
.area-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,42,.88) 30%, rgba(26,58,42,.2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.25rem;
  text-align: center;
  transition: background var(--transition);
}
.area-card:hover .area-card-overlay { background: linear-gradient(to top, rgba(26,58,42,.95) 50%, rgba(26,58,42,.4) 100%); }
.area-card-overlay h4 { color: var(--white); font-size: 1rem; margin-bottom: .2rem; }
.area-card-overlay span { font-size: .78rem; color: var(--gold-light); }
.area-card-overlay .area-link {
  display: inline-block;
  margin-top: .6rem;
  padding: .3rem .85rem;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 100px;
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}
.area-card:hover .area-link { opacity: 1; transform: translateY(0); }

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--green-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .3;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: var(--gold-light); }
.page-hero .breadcrumb span { color: rgba(255,255,255,.4); }
.page-hero p { color: rgba(255,255,255,.8); max-width: 600px; font-size: 1.05rem; }

/* ── LEGAL PAGES ──────────────────────────────────────────── */
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}
.legal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}
.legal-card h2,
.legal-card h3 {
  margin-bottom: .75rem;
}
.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}
.legal-card ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}
.legal-note {
  font-size: .92rem;
  color: var(--gray-mid);
}

/* ── SIDEBAR LAYOUT ───────────────────────────────────────── */
.page-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }
.sidebar { position: sticky; top: 100px; }
.sidebar-nav {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.sidebar-nav-title {
  background: var(--green-dark);
  color: var(--white);
  padding: 1rem 1.25rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
}
.sidebar-nav a {
  display: block;
  padding: .75rem 1.25rem;
  border-bottom: 1px solid var(--gray-light);
  font-size: .9rem;
  color: var(--gray-dark);
  font-weight: 500;
  transition: all var(--transition);
}
.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: var(--off-white); color: var(--green-mid); padding-left: 1.6rem; }
.sidebar-cta {
  background: var(--green-dark);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
}
.sidebar-cta h4 { color: var(--white); margin-bottom: .5rem; }
.sidebar-cta p { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.sidebar-cta .phone-big { font-size: 1.3rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 1rem; }

/* ── FEATURES LIST ────────────────────────────────────────── */
.features-list { display: flex; flex-direction: column; gap: .75rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
}
.feature-check {
  width: 22px;
  height: 22px;
  background: var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.feature-item p { margin: 0; font-size: .92rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.footer-logo img { height: 80px; width: auto; filter: brightness(0) invert(1); } /* always render white on dark footer */
.footer-logo-text { display: none; } /* white logo image already contains company name */
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-phone-big {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold-light);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 1.25rem 0;
}
.footer-col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-legal-links {
  margin: 0;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,.6);
}
.footer-legal-links a {
  color: rgba(255,255,255,.72);
}
.footer-legal-links a:hover {
  color: var(--gold-light);
}
.footer-legal-links span {
  color: rgba(255,255,255,.25);
}

/* ── ACCORDION (FAQ) ──────────────────────────────────────── */
.accordion-item {
  border-bottom: 1px solid var(--gray-light);
}
.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  transition: color var(--transition);
}
.accordion-btn:hover { color: var(--green-mid); }
.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--green-mid);
}
.accordion-item.open .accordion-icon { background: var(--gold); color: var(--green-dark); transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding: 0 0 1.25rem;
  font-size: .95rem;
  color: var(--gray-dark);
  line-height: 1.7;
}
.accordion-item.open .accordion-body { display: block; }

/* ── NOTIFICATION BANNER ──────────────────────────────────── */
.notice-bar {
  background: var(--gold);
  text-align: center;
  padding: .65rem 1rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--green-dark);
}
.notice-bar a { text-decoration: underline; }

/* ── BACK TO TOP ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--green-mid);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--green-dark); transform: translateY(-3px); }

/* ── LOCATION PAGE SPECIFIC ───────────────────────────────── */
.location-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: var(--radius-lg);
}
.location-services {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: .75rem;
  margin: 1.5rem 0;
}
.location-service-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--gray-dark);
}
.location-service-item::before {
  content: '✓';
  color: var(--green-mid);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-light);
}
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 1.5rem; }
.team-card h4 { margin-bottom: .25rem; }
.team-card span { font-size: .85rem; color: var(--gold); font-weight: 600; }

/* ── STATS BAND ───────────────────────────────────────────── */
.stats-band { background: var(--green-mid); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-item strong span { color: var(--gold-light); }
.stat-item p { color: rgba(255,255,255,.75); font-size: .9rem; margin: 0; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-step:nth-child(2)::after { display: none; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .area-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  :root { --max-width: 100%; }
  .section { padding: 56px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-3.services-grid { grid-template-columns: repeat(2,1fr); }
  .project-grid { grid-template-columns: repeat(2,1fr); }
  .area-grid { grid-template-columns: repeat(2,1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-items { gap: 1.5rem; }
  .nav-menu { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 300px; background: var(--white); box-shadow: var(--shadow-lg); flex-direction: column; align-items: flex-start; padding: 5rem 2rem 2rem; gap: 0; overflow-y: auto; z-index: 1001; transition: transform var(--transition); transform: translateX(100%); }
  .nav-menu.open { transform: translateX(0); display: flex; }
  .nav-link { font-size: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--gray-light); width: 100%; }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: var(--off-white); border-radius: var(--radius); margin-bottom: .5rem; padding: .25rem 0; }
  .dropdown-menu a { padding: .5rem 1rem; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; z-index: 1002; }
  .hero { min-height: 75vh; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat strong { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .grid-3.services-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .trust-items { flex-direction: column; gap: 1rem; }
  .footer-legal-links { width: 100%; justify-content: center; }
  .legal-card { padding: 1.5rem; }
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }

/* ── PHONE PULSE BUTTON ───────────────────────────────────── */
.phone-pulse {
  animation: phonePulse 2s infinite;
}
@keyframes phonePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,160,23,.5); }
  50% { box-shadow: 0 0 0 12px rgba(212,160,23,0); }
}

/* ── PAGE HERO — CENTERED VARIANT ────────────────────────── */
/* Used on About, Projects, Contact inner pages */
.page-hero-centered {
  text-align: center;
}
.page-hero-centered > .hero-content {
  margin: 0 auto;
  text-align: center;
  padding-inline: 1rem;
}
.page-hero-centered h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero-centered p  { color: rgba(255,255,255,.8); font-size: 1.05rem; margin: 0 auto; max-width: 640px; }
.page-hero-centered .breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 1rem;
}
.page-hero-centered .breadcrumb a { color: var(--gold-light); }

/* Location page hero + CTA alignment */
.location-content + .cta-band .container {
  text-align: center;
}
.location-content + .cta-band p {
  margin: 0 auto;
  max-width: 720px;
}
.location-content + .cta-band .btn-large {
  margin-top: 1.5rem;
}

/* ── ABOUT PAGE STYLES ────────────────────────────────────── */
.section-intro {
  font-size: 1.05rem; color: var(--gray-mid);
  max-width: 600px; margin: 0 auto 2.5rem; text-align: center;
}
.story-section { padding: 80px 0; background: var(--white); }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.story-text h2 { margin-bottom: 1.25rem; }
.story-text p { color: var(--gray-dark); line-height: 1.75; }
.story-image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }

/* stats inside about page use the .stats-band + .stats-grid already defined */
/* — but agent used .stat-card so add compat: */
.stat-card { text-align: center; }
.stat-number {
  font-family: var(--font-head); font-size: 3rem; font-weight: 700;
  color: var(--white); line-height: 1; margin-bottom: .4rem; display: block;
}
.stat-label { color: rgba(255,255,255,.75); font-size: .9rem; }

.values-section { padding: 80px 0; background: var(--off-white); text-align: center; }
.values-section h2 { margin-bottom: .5rem; }
.values-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.value-card {
  background: var(--white); padding: 2rem 1.5rem;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: all var(--transition); border-bottom: 3px solid transparent;
  text-align: center;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-bottom-color: var(--gold); }
.value-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.value-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.value-card p { font-size: .9rem; color: var(--gray-mid); margin: 0; }

.team-section { padding: 80px 0; background: var(--white); text-align: center; }
.team-section h2 { margin-bottom: .5rem; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2.5rem; }
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition); text-align: center;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  background: var(--gray-light);
}
.team-card h3 { padding: 1.25rem 1.25rem .25rem; font-size: 1.1rem; }
.team-card .team-title { color: var(--gold); font-weight: 600; font-size: .85rem; padding: 0 1.25rem; display: block; margin-bottom: .4rem; }
.team-card p { color: var(--gray-mid); font-size: .88rem; padding: 0 1.25rem 1.25rem; }

.why-choose-us { padding: 80px 0; background: var(--off-white); }
.why-choose-us h2 { text-align: center; margin-bottom: 2.5rem; }
.why-choose-us .features-list { max-width: 800px; margin: 0 auto; }
.why-choose-us .feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  width: 36px; height: 36px; background: var(--green-mid);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem; font-weight: 700; flex-shrink: 0;
}
.feature-content h3 { font-size: 1rem; margin-bottom: .3rem; }
.feature-content p { font-size: .9rem; color: var(--gray-mid); margin: 0; }

/* ── PROJECTS PAGE STYLES ─────────────────────────────────── */
.projects-filters { background: var(--off-white); padding: 1.5rem 0; border-bottom: 1px solid var(--gray-light); }
.filter-tabs {
  display: flex; align-items: center; justify-content: center;
  gap: .75rem; flex-wrap: wrap;
}
.filter-tab {
  padding: .55rem 1.4rem; border-radius: 100px;
  border: 1.5px solid var(--gray-light); background: var(--white);
  font-size: .88rem; font-weight: 600; color: var(--gray-dark);
  cursor: pointer; transition: all var(--transition);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--green-mid); color: var(--white);
  border-color: var(--green-mid);
}
.projects-section { padding: 60px 0 80px; }

/* Project card overlay info positioning */
.project-card .project-overlay .project-info h4 { font-size: 1rem; }
/* Inline project-info for non-overlay layout */
.project-info { padding: 1rem 1.25rem; }
.project-info h3 { font-size: 1rem; margin-bottom: .25rem; color: var(--green-dark); }
.project-location { font-size: .82rem; color: var(--gray-mid); margin: 0; }
.project-type {
  display: inline-block; margin-top: .4rem;
  background: var(--off-white); color: var(--green-mid);
  padding: .2rem .7rem; border-radius: 100px;
  font-size: .75rem; font-weight: 600;
}

/* ── CTA BAND — CENTERED VARIANT ─────────────────────────── */
.cta-band .text-center-cta {
  text-align: center;
}
.cta-band .text-center-cta h2 { color: var(--white); margin-bottom: .6rem; }
.cta-band .text-center-cta p { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; font-size: 1.05rem; }
.cta-band .text-center-cta .btn-large,
.cta-band .btn-large { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ── RESPONSIVE ADDITIONS ─────────────────────────────────── */
@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ── SERVICE PHOTO GALLERY ────────────────────────────────── */
.service-gallery { margin-top: 2.5rem; }
.service-gallery h3 { margin-bottom: 1.25rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  background: var(--off-white);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  padding: .6rem .9rem;
  font-size: .82rem;
  color: var(--gray-dark);
  font-weight: 500;
  background: var(--white);
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 200px; }
}

/* ============================================================
   MOBILE RESPONSIVENESS & UX AUDIT — ALL 11 CHANGES
   ============================================================ */

/* ── CHANGE 1 — DOUBLE HEADER / TOPBAR ───────────────────── */
@media (max-width: 767px) {
  .topbar { display: none; }
  .site-header { padding: .6rem 0; }
  .nav-inner { padding: 0 1rem; }
  /* Compact logo on mobile */
  .logo img { height: 56px; }
}

/* ── CHANGE 2 — HERO TYPOGRAPHY & CTA ───────────────────── */
.hero h1 {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  line-height: 1.2;
}
@media (max-width: 639px) {
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 52px;
    font-size: 1rem;
    justify-content: center;
    display: flex;
    align-items: center;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .hero-stat {
    text-align: center;
  }
  .hero-content {
    padding: 1rem 0 5rem;
  }
}

/* ── CHANGE 3 — TRUST BADGE STRIP ────────────────────────── */
@media (max-width: 767px) {
  .trust-items {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: .5rem;
    scroll-snap-type: x mandatory;
  }
  .trust-item {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
    padding: .6rem 1rem;
  }
}

/* ── CHANGE 4 — SERVICE CARDS ─────────────────────────────── */
.service-card {
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.service-card-img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  display: block;
}
.service-card-img .card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  bottom: auto;
}
.service-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Mobile: 1 col */
@media (max-width: 639px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Tablet: 2 col */
@media (min-width: 640px) and (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
/* Desktop: 3 col */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* ── CHANGE 5 — SECTION CATEGORY DIVIDERS ────────────────── */
.services-category-heading {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: .6rem;
  border-left: 4px solid var(--green-mid);
  padding-left: 1rem;
  border-bottom: 1px solid var(--green-pale);
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .services-category-heading {
    font-size: 1.05rem;
    margin-top: 32px;
    margin-bottom: 16px;
  }
}

/* ── CHANGE 6 — HOW IT WORKS / PROCESS STEPS ─────────────── */
.process-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-mid);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .process-steps {
    grid-template-columns: 1fr !important;
    gap: 0;
  }
  .process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--green-pale);
  }
  .process-step:last-child { border-bottom: none; }
  .process-step::after { display: none !important; }
  /* Target the actual class used in HTML: .step-number */
  .process-step .step-number {
    margin: 0;            /* override desktop margin: 0 auto 1rem */
    min-width: 52px;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    align-self: flex-start;
  }
  .process-step-content {
    flex: 1;
  }
  .process-step h4 {
    margin-top: .1rem;
    margin-bottom: .35rem;
  }
}

/* ── CHANGE 7 — PROJECTS GRID ─────────────────────────────── */
.project-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.project-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.project-card img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  height: auto !important;
}
@media (max-width: 639px) {
  .project-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (min-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* ── CHANGE 8 — TESTIMONIALS ──────────────────────────────── */
.testimonial-card {
  padding: 24px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.author-avatar {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  border-radius: 50%;
  background: var(--green-mid) !important;
  color: var(--white) !important;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
@media (max-width: 639px) {
  .grid-3:has(.testimonial-card) {
    grid-template-columns: 1fr !important;
  }
  .testimonial-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .grid-3:has(.testimonial-card) {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── CHANGE 9 — LOCATION CARDS ────────────────────────────── */
.area-grid {
  grid-template-columns: repeat(4, 1fr);
}
.area-card img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: auto !important;
}
@media (max-width: 639px) {
  .area-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .area-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* ── CHANGE 10 — FOOTER MOBILE STACK ─────────────────────── */
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .footer-col h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  /* Center the brand block on mobile */
  .footer-brand {
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-phone-big {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .footer-brand .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: .5rem;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
  }
}

/* ── CHANGE 11 — STICKY MOBILE CTA BAR ───────────────────── */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 767px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 9999;
    box-shadow: 0 -2px 12px rgba(0,0,0,.15);
  }
  .mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: opacity .2s;
  }
  .mobile-cta-bar a:active { opacity: .85; }
  .mobile-cta-call {
    background: var(--white);
    color: var(--green-mid);
    border-right: 1px solid var(--green-pale);
  }
  .mobile-cta-estimate {
    background: var(--green-mid);
    color: var(--white);
  }
  body {
    padding-bottom: 60px;
  }
  /* Nav menu: extra bottom padding so last item clears the CTA bar */
  .nav-menu {
    padding-bottom: 80px;
  }
  /* Back-to-top: float above the 60px sticky CTA bar */
  .back-to-top {
    bottom: calc(60px + 1rem);
  }
}

/* ============================================================
   CHANGES 12–15 — BUTTONS / NAV / SPACING / POLISH
   ============================================================ */

/* ── CHANGE 12 — BUTTON STANDARDIZATION ──────────────────── */
/* Reset base btn */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
  min-height: 48px;
  text-decoration: none;
  line-height: 1;
}
/* Primary — green bg, white text */
.btn-primary {
  background: var(--green-mid) !important;
  color: var(--white) !important;
  border-color: var(--green-mid) !important;
}
.btn-primary:hover {
  background: var(--green-dark) !important;
  border-color: var(--green-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(83,128,39,.3);
}
/* Secondary — outline green */
.btn-secondary {
  background: transparent !important;
  color: var(--green-mid) !important;
  border-color: var(--green-mid) !important;
}
.btn-secondary:hover {
  background: var(--green-mid) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}
/* Secondary on dark backgrounds (hero, dark sections) */
.hero .btn-secondary,
.section--dark .btn-secondary,
.cta-band .btn-secondary {
  color: var(--white) !important;
  border-color: var(--white) !important;
  background: transparent !important;
}
.hero .btn-secondary:hover,
.section--dark .btn-secondary:hover,
.cta-band .btn-secondary:hover {
  background: var(--white) !important;
  color: var(--green-dark) !important;
}
/* Alias — btn-green now maps to primary style */
.btn-green {
  background: var(--green-mid) !important;
  color: var(--white) !important;
  border-color: var(--green-mid) !important;
}
.btn-green:hover {
  background: var(--green-dark) !important;
  border-color: var(--green-dark) !important;
  transform: translateY(-2px);
}
/* Size variants */
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .88rem; min-height: 38px; }

/* ── CHANGE 14 — SPACING SYSTEM ──────────────────────────── */
.section {
  padding: 80px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
}

/* ── ABOUT PAGE — TESTIMONIALS ────────────────────────────── */
.testimonials-section {
  padding: 4rem 0;
  background: var(--off-white);
}
.testimonials-section h2 {
  margin-bottom: 2rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
/* Reuse .testimonial-card but ensure padding & border on about page too */
.testimonials-grid .testimonial-card {
  padding: 2rem;
  border-left: 4px solid var(--gold);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.testimonials-grid .stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: .75rem;
  display: block;
}
.testimonials-grid .testimonial-author {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  font-size: .9rem;
}

/* ── CHANGE 15 — GENERAL POLISH ──────────────────────────── */
html, body {
  overflow-x: hidden;
}
p {
  line-height: 1.65;
}
/* About section: image right on desktop, stacked on mobile */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-grid .about-text { order: 1; }
.about-grid .about-image { order: 2; }
@media (max-width: 767px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-grid .about-image { order: 1; }
  .about-grid .about-text  { order: 2; }
}
/* Consistent section gaps — no dead zones */
.trust-strip { margin-bottom: 0; }
.section + .section { margin-top: 0; }
/* Images — ensure no overflow */
img { max-width: 100%; }

/* ── CHANGE 13 — MOBILE NAV IMPROVEMENTS ─────────────────── */
/* Mobile phone link — hidden on desktop */
.nav-mobile-phone { display: none; }
.nav-mobile-cta   { display: none; }

.mobile-dropdown-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--green-mid);
  cursor: pointer;
  padding: 0 .5rem;
  line-height: 1;
  transition: transform .25s ease;
}

@media (max-width: 768px) {
  /* Show phone + bottom CTA only in mobile menu */
  .nav-mobile-phone {
    display: flex;
    border-bottom: 1px solid var(--green-pale);
    padding-bottom: .75rem;
    margin-bottom: .25rem;
  }
  .nav-mobile-phone-link {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--green-mid);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    padding: .5rem 0;
  }
  .nav-mobile-cta {
    display: flex;
    padding-top: .75rem;
    border-top: 1px solid var(--green-pale);
    margin-top: .25rem;
  }
  .nav-mobile-estimate {
    width: 100%;
    justify-content: center;
  }
  .has-dropdown > .nav-link::after {
    content: none;
  }
  /* Show the toggle arrow */
  .mobile-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    flex: 0 0 44px;
  }
  /* Arrow rotates when open */
  .has-dropdown.mobile-open .mobile-dropdown-toggle {
    transform: rotate(90deg);
    color: var(--green-dark);
  }
  /* Services/Areas nav item — flex row */
  .has-dropdown {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid var(--gray-light);
  }
  .has-dropdown .nav-link {
    flex: 1 1 auto;
    width: auto;
    border-bottom: none;
    padding-right: .5rem;
  }
  /* Hide dropdown by default on mobile — show only when .mobile-open */
  .nav-item:hover .dropdown-menu {
    display: none;
  }
  .has-dropdown .dropdown-menu {
    display: none;
    order: 3;
    flex-basis: 100%;
    width: 100%;
    background: var(--off-white);
    border-radius: 6px;
    padding: .5rem 0;
    margin: 0 0 .5rem;
  }
  .has-dropdown.mobile-open .dropdown-menu {
    display: block;
  }
  /* Desktop dropdown still works via hover */
  .has-dropdown .dropdown-menu li a {
    padding: .45rem 1.25rem;
    display: block;
    font-size: .9rem;
    color: var(--green-dark);
  }
  .has-dropdown .dropdown-menu li a:hover {
    color: var(--green-mid);
    background: var(--green-pale);
  }
}

/* ============================================================
   BC-LANDSCAPES — PAVER SPECIALIST REPOSITIONING STYLES
   ============================================================ */

/* ── Nav Paver Highlight Links ─────────────────────────────── */
.nav-paver {
  color: var(--green-dark) !important;
  font-weight: 700 !important;
  position: relative;
}
.nav-paver::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0;
  transition: opacity .2s;
}
.nav-paver:hover::after,
.nav-paver.active::after {
  opacity: 1;
}
@media (max-width: 992px) {
  .nav-paver::after { display: none; }
  .nav-paver {
    border-left: 3px solid var(--gold);
    padding-left: .75rem !important;
  }
}

/* ── Primary Hardscape Services Block ──────────────────────── */
.services-primary-block {
  background: linear-gradient(135deg, #f0f7f4 0%, #e8f4ee 100%);
  border: 1px solid #c8e6d5;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.services-primary-header {
  text-align: center;
  margin-bottom: 2rem;
}
.services-primary-label {
  display: inline-block;
  background: var(--green-dark);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.services-primary-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--green-dark);
  margin-bottom: .75rem;
}
.services-primary-sub {
  color: var(--gray-mid);
  max-width: 600px;
  margin: 0 auto;
  font-size: .97rem;
  line-height: 1.7;
}

/* Featured cards have photos — no need for the emoji icon */
.service-card--featured .service-card-icon { display: none; }

/* Featured service cards — slightly larger feel */
.service-card--featured {
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.service-card--featured:hover {
  border-color: var(--green-mid);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45,106,79,.15);
}

/* Gold badge variant */
.card-badge--gold {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
}

/* CTA card inside service grid */
.service-card--cta-card {
  background: var(--green-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-cta-inner {
  padding: 2rem 1.5rem;
  text-align: center;
}
.service-card--cta-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: .75rem;
}
.service-card--cta-card p {
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  line-height: 1.6;
}
.service-card--cta-card .service-card-link {
  color: var(--gold);
}
.service-card--cta-card .service-card-link:hover {
  color: #fff;
}

/* ── Secondary Supporting Services Block ───────────────────── */
.services-secondary-block {
  border-top: 2px dashed #d1e8da;
  padding-top: 2rem;
}
.services-secondary-header {
  text-align: left;
}

/* 4-column grid for secondary services */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr 1fr; gap: .85rem; }
}

/* Smaller service cards for secondary section */
.service-card--sm {
  box-shadow: var(--shadow-sm);
  border: 1px solid #e8f0eb;
}
.service-card--sm .service-card-body {
  padding: 1.25rem;
}
.service-card--sm .service-card-icon {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}
.service-card--sm h3 {
  font-size: 1rem;
  margin-bottom: .35rem;
}
.service-card--sm p {
  font-size: .85rem;
  color: var(--gray-mid);
  margin-bottom: .5rem;
  line-height: 1.5;
}
.service-card--sm .service-card-link {
  font-size: .82rem;
}

/* ── Contact Page Map Section ─────────────────────────────── */
.map-section {
  padding: 3rem 0 4rem;
}
.map-section h2 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--green-dark);
  margin-bottom: .5rem;
}
.map-section p {
  color: var(--gray-mid);
  margin-bottom: 1.5rem;
}
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ── Success Message ─────────────────────────────────────────*/
.success-message {
  background: linear-gradient(135deg, #e8f5e9, #f0fdf4);
  border: 2px solid var(--green-mid);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.success-message h3 {
  color: var(--green-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ============================================================
   PROJECTS PAGE — OVERHAUL
   ============================================================ */

/* Stats bar */
.projects-stats-bar {
  background: var(--green-dark);
  padding: 1.25rem 0;
}
.projects-stats-inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.proj-stat {
  text-align: center;
  color: #fff;
}
.proj-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1.1;
}
.proj-stat span {
  font-size: .8rem;
  opacity: .85;
  letter-spacing: .04em;
}

/* Filter tabs — paver tabs highlighted */
.filter-tab--paver {
  border-color: var(--green-mid) !important;
  color: var(--green-dark) !important;
  font-weight: 600;
}
.filter-tab--paver:hover,
.filter-tab--paver.active {
  background: var(--green-dark) !important;
  color: #fff !important;
}

/* Project grid — consistent 3-col */
#projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px)  { #projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { #projects-grid { grid-template-columns: 1fr; } }

/* Project card */
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--gray-light);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.project-card--featured {
  grid-column: span 1; /* can bump to span 2 if desired */
}

/* Image wrapper — forces consistent 4:3 ratio */
.project-img-wrap {
  position: relative;
  padding-top: 75%; /* 4:3 */
  overflow: hidden;
}
.project-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.project-card:hover .project-img-wrap img {
  transform: scale(1.05);
}

/* Overlay — slides up on hover */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,40,22,.92) 0%, rgba(10,40,22,.3) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity .3s;
}
.project-card:hover .project-overlay,
.project-card:focus-within .project-overlay {
  opacity: 1;
}
/* Always show at bottom on mobile */
@media (hover: none) {
  .project-overlay { opacity: 1; }
}

.project-info {
  color: #fff;
  width: 100%;
}
.project-info h3 {
  font-size: 1rem;
  font-family: var(--font-head);
  margin: .3rem 0 .2rem;
  color: #fff;
}
.project-location {
  font-size: .8rem;
  opacity: .85;
  margin-bottom: .6rem;
}

/* Category badge */
.project-type-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 20px;
}
.project-type-badge--green {
  background: #52b788;
  color: #fff;
}
.project-type-badge--blue {
  background: #457b9d;
  color: #fff;
}

/* CTA button inside card */
.project-cta-btn {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: .5rem;
  margin-top: .5rem;
  transition: color .2s;
  width: 100%;
}
.project-cta-btn:hover { color: #fff; }

/* Mid-grid lead gen card */
.project-card--lead-gen {
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.lead-gen-inner {
  text-align: center;
  padding: 2rem 1.5rem;
}
.lead-gen-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.lead-gen-inner h3 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: .6rem;
}
.lead-gen-inner p {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.lead-gen-phone {
  display: block;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  margin-top: .75rem;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-caption {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.lightbox-caption span {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}
.lightbox-cta { font-size: .85rem; }
.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 1.75rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.35); }

/* ============================================================
   CONTACT FORM — VALIDATION STYLES
   ============================================================ */

/* 3-column address row */
.form-row--3 {
  display: grid;
  grid-template-columns: 1fr 80px 100px;
  gap: .75rem;
}
@media (max-width: 600px) {
  .form-row--3 {
    grid-template-columns: 1fr 1fr;
  }
  .form-row--3 .form-group:first-child {
    grid-column: 1 / -1;
  }
}

/* Field hint text */
.field-hint {
  font-size: .78rem;
  color: var(--gray-mid);
  margin-top: .25rem;
}

/* Valid field */
.field-valid input,
.field-valid textarea,
.field-valid select {
  border-color: #52b788 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2352b788' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2.25rem;
}

/* Error field */
.field-error input,
.field-error textarea,
.field-error select {
  border-color: #e63946 !important;
  background-color: #fff5f5;
}
.field-error-msg {
  display: block;
  font-size: .78rem;
  color: #e63946;
  margin-top: .3rem;
}

/* Submit button spinner */
@keyframes spin { to { transform: rotate(360deg); } }
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  vertical-align: middle;
  margin-right: .4rem;
}

/* Error banner */
.form-error-banner {
  background: #fff5f5;
  border: 1px solid #e63946;
  color: #c1121f;
  border-radius: 8px;
  padding: .85rem 1rem;
  font-size: .9rem;
  margin-bottom: 1.25rem;
}

/* Google Places autocomplete dropdown */
.pac-container {
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border: 1px solid var(--green-pale);
  font-family: var(--font-body);
  font-size: .9rem;
}
.pac-item { padding: .5rem .75rem; cursor: pointer; }
.pac-item:hover { background: var(--green-pale); }
.pac-item-query { color: var(--green-dark); font-weight: 600; }
