/* =======================================================
   GLISSON TREE SERVICE — SHARED DESIGN SYSTEM
   ======================================================= */

/* Google Fonts loaded via <link> in each HTML page */

/* ── Variables ── */
:root {
  /* Forest Green Palette */
  --forest:           #1a3d28;
  --forest-mid:       #28573b;
  --forest-light:     #3d7a52;
  --forest-bright:    #52a06c;
  --forest-pale:      rgba(26,61,40,0.08);

  /* Bark / Warm Accent */
  --bark:             #8a5c38;
  --bark-light:       #a87245;
  --bark-pale:        rgba(138,92,56,0.12);

  /* Emergency Red */
  --emergency:        #b83a2a;
  --emergency-light:  #d94e3a;

  /* Neutrals */
  --charcoal:         #141c17;
  --charcoal-light:   #212c25;
  --charcoal-mid:     #2e3a31;
  --smoke:            #5e6f66;
  --smoke-light:      #8fa398;
  --white:            #ffffff;
  --off-white:        #f3f6f4;
  --light-gray:       #eaeeeb;
  --border:           #d8e0da;

  /* Shadows */
  --shadow-sm:        0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:        0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:        0 20px 60px rgba(0,0,0,0.18);
  --shadow-forest:    0 8px 32px rgba(26,61,40,0.3);

  /* Sizing */
  --radius:           12px;
  --radius-lg:        20px;
  --transition:       all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  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; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; font-weight: 700; }
p  { font-size: 1rem; color: #4a5249; line-height: 1.7; }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 0.5rem;
}
.section-title { margin-bottom: 0.75rem; }
.section-sub {
  font-size: 1rem;
  color: var(--smoke);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,61,40,0.35);
}
.btn-primary:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,61,40,0.45);
}
.btn-bark {
  background: var(--bark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(138,92,56,0.35);
}
.btn-bark:hover {
  background: var(--bark-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(138,92,56,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-forest {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-outline-forest:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-emergency {
  background: var(--emergency);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184,58,42,0.4);
  animation: pulse-emergency 2.5s infinite;
}
.btn-emergency:hover {
  background: var(--emergency-light);
  transform: translateY(-2px);
  animation: none;
}
@keyframes pulse-emergency {
  0%, 100% { box-shadow: 0 4px 20px rgba(184,58,42,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(184,58,42,0.7); }
}
.btn-call {
  background: var(--bark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(138,92,56,0.35);
}
.btn-call:hover { background: var(--bark-light); transform: translateY(-2px); }
.btn-lg  { padding: 1.1rem 2.6rem; font-size: 0.95rem; }
.btn-sm  { padding: 0.65rem 1.4rem; font-size: 0.78rem; }

/* ── Announcement Bar ── */
.ann-bar {
  background: var(--forest);
  color: var(--white);
  padding: 0.45rem 1rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1001;
  transition: var(--transition);
}
.ann-bar a { color: var(--bark-light); text-decoration: underline; text-underline-offset: 2px; }
.ann-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.ann-emergency-dot {
  width: 8px; height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: blink 1.4s infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.ann-bar-dismiss {
  position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.5);
  cursor: pointer; font-size: 1rem; line-height: 1;
  transition: var(--transition);
}
.ann-bar-dismiss:hover { color: var(--white); }
.ann-bar.hidden { display: none; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
.nav.ann-visible { top: 32px; }
.nav.scrolled {
  background: rgba(20,28,23,0.97);
  backdrop-filter: blur(12px);
  padding: 0.65rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  top: 0 !important;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--forest-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem; font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.25;
}
.logo-text span {
  display: block;
  font-size: 0.65rem; font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 2.25rem;
}
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--bark-light); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: -1.25rem;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  min-width: 260px;
  /* padding-top bridges the gap so hover doesn't break mid-transition */
  padding: 0.75rem 0 0.5rem;
  padding-top: 1.25rem;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.6rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: var(--transition);
}
.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--bark-light);
  padding-left: 1.5rem;
}
.nav-dropdown-menu a .drop-icon { font-size: 0.95rem; opacity: 0.8; flex-shrink: 0; }
.nav-dropdown-menu .drop-divider {
  height: 1px; background: rgba(255,255,255,0.06);
  margin: 0.3rem 0;
}
.nav-chevron {
  display: inline-block; margin-left: 4px;
  font-size: 0.6rem; transition: transform 0.2s ease;
}
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  display: flex; position: fixed; inset: 0;
  background: var(--charcoal); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 0.25rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; pointer-events: all; }
.mobile-menu-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: var(--white);
  font-size: 2rem; cursor: pointer; line-height: 1;
}
.mobile-menu > a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.01em;
  transition: var(--transition); padding: 0.5rem 0;
}
.mobile-menu > a:hover { color: var(--bark-light); }
.mobile-menu-divider {
  width: 40px; height: 1px; background: rgba(255,255,255,0.12); margin: 0.5rem 0;
}
.mobile-menu .btn { font-size: 0.9rem; width: 260px; justify-content: center; margin-top: 0.5rem; }
.mobile-menu-services {
  display: flex; flex-direction: column; align-items: center; gap: 0.1rem;
}
.mobile-menu-services a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6); padding: 0.3rem 0;
  transition: var(--transition); text-transform: uppercase;
}
.mobile-menu-services a:hover { color: var(--bark-light); }

/* ── Sticky Mobile Bar ── */
.sticky-mobile {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--charcoal); z-index: 800;
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  gap: 0.75rem;
}
.sticky-mobile .btn { flex: 1; justify-content: center; font-size: 0.82rem; padding: 0.85rem; }

/* ── Floating Quote Button ── */
.float-quote {
  display: none;
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 700;
  background: var(--forest);
  color: var(--white);
  padding: 0.85rem 1.4rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: var(--shadow-forest);
  transition: var(--transition);
  align-items: center; gap: 0.5rem;
  white-space: nowrap;
}
.float-quote:hover { background: var(--forest-mid); transform: translateY(-3px); }

/* ── Section Wrapper ── */
.section { padding: 4.5rem 2rem; }
.section-center { text-align: center; }
.container { max-width: 1280px; margin: 0 auto; }
.container-sm { max-width: 880px; margin: 0 auto; }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(30px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06); transition: transform 9s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(8,14,10,0.9) 0%,
    rgba(20,28,23,0.7) 50%,
    rgba(26,61,40,0.4) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem; padding-top: 6.5rem; padding-bottom: 5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(138,92,56,0.2);
  border: 1px solid rgba(138,92,56,0.5);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bark-light); margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--bark); border-radius: 50%;
}
.hero h1 {
  color: var(--white);
  max-width: 800px; margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero h1 em { font-style: normal; color: var(--bark-light); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.82);
  max-width: 540px; margin-bottom: 2rem; line-height: 1.65;
}
.hero-actions {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 1rem; margin-bottom: 3rem;
}
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem; font-weight: 900;
  color: var(--white); line-height: 1;
}
.stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.55); margin-top: 0.2rem; font-weight: 500; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  animation: scroll-bounce 2.2s infinite; white-space: nowrap;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes scroll-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--charcoal-light);
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8); white-space: nowrap;
}
.trust-item-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(61,122,82,0.25);
  border: 1px solid rgba(61,122,82,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}

/* ── Services Overview ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); transition: var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card-img {
  height: 175px; overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal-mid), var(--forest));
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--forest); color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 50px;
}
.service-card-body { padding: 1.35rem; }
.service-icon {
  width: 40px; height: 40px;
  background: var(--forest-pale);
  border: 1px solid rgba(61,122,82,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; margin-bottom: 0.7rem;
}
.service-card-body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.service-card-body p { font-size: 0.88rem; margin-bottom: 1rem; color: var(--smoke); }
.card-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--forest-light);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: var(--transition);
}
.card-link:hover { gap: 0.7rem; color: var(--forest-mid); }

/* ── Why Section ── */
.why-section { background: var(--charcoal); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.why-img-stack { position: relative; height: 440px; }
.why-img-main {
  position: absolute; top: 0; left: 0;
  width: 78%; height: 78%;
  border-radius: var(--radius-lg); overflow: hidden;
}
.why-img-main img, .why-img-accent img {
  width: 100%; height: 100%; object-fit: cover;
}
.why-img-accent {
  position: absolute; bottom: 0; right: 0;
  width: 56%; height: 56%;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 4px solid var(--charcoal);
}
.why-years-badge {
  position: absolute; top: 52%; left: -20px;
  background: var(--bark); color: var(--white);
  border-radius: var(--radius); padding: 0.75rem 1rem;
  text-align: center; box-shadow: var(--shadow-md); z-index: 3;
}
.why-years-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem; font-weight: 900; line-height: 1;
}
.why-years-text {
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.9;
}
.why-content .section-label { color: var(--bark-light); }
.why-content h2 { color: var(--white); }
.why-content > p { color: rgba(255,255,255,0.65); margin-bottom: 1.75rem; }
.why-list { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.75rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-check {
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(61,122,82,0.2);
  border: 1px solid rgba(82,160,108,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--forest-bright); margin-top: 2px;
}
.why-item-text h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.25rem; }
.why-item-text p  { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.5; }

/* ── Emergency Section ── */
.emergency-section {
  background: linear-gradient(135deg, #1a0e0c 0%, #2d1510 50%, #180d0a 100%);
  position: relative; overflow: hidden;
}
.emergency-section::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,58,42,0.2) 0%, transparent 70%);
}
.emergency-section::after {
  content: ''; position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,61,40,0.3) 0%, transparent 70%);
}
.emergency-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 2;
}
.emergency-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(184,58,42,0.2);
  border: 1px solid rgba(184,58,42,0.4);
  border-radius: 50px; padding: 0.35rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #f87171; margin-bottom: 1.25rem;
}
.emergency-pulse {
  width: 7px; height: 7px; background: #ef4444; border-radius: 50%;
  animation: blink 1.2s infinite;
}
.emergency-content h2 { color: var(--white); margin-bottom: 1rem; }
.emergency-content p  { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.emergency-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.emergency-feature {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.emergency-feature-dot { width: 8px; height: 8px; background: var(--emergency); border-radius: 50%; flex-shrink: 0; }
.emergency-cta-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 2rem;
  text-align: center;
}
.emergency-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem; font-weight: 900;
  color: var(--white); margin: 0.75rem 0 0.4rem;
  letter-spacing: -0.02em;
}
.emergency-number a { color: inherit; }
.emergency-number a:hover { color: var(--bark-light); }
.emergency-sub { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-bottom: 1.75rem; }
.emergency-clock {
  font-size: 2.5rem; margin-bottom: 0.25rem;
}

/* ── Process Steps ── */
.process-section { background: var(--off-white); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 2.5rem; position: relative;
}
.process-grid::before {
  content: ''; position: absolute;
  top: 30px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px; background: var(--border); z-index: 0;
}
.process-step {
  text-align: center; position: relative; z-index: 1;
}
.process-num {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem; font-weight: 900;
  color: var(--forest); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.process-step:hover .process-num {
  background: var(--forest); color: var(--white);
  border-color: var(--forest); transform: scale(1.08);
  box-shadow: var(--shadow-forest);
}
.process-step h4 { margin-bottom: 0.3rem; }
.process-step p { font-size: 0.85rem; color: var(--smoke); }

/* ── Stats Counter ── */
.stats-section {
  background: var(--forest);
  padding: 3rem 2rem;
  position: relative; overflow: hidden;
}
.stats-section::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");
}
.stats-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center; position: relative; z-index: 2;
}
.stat-card { padding: 0.5rem; }
.stat-card .stat-num {
  font-size: 2.6rem; font-weight: 900;
  color: var(--white); line-height: 1;
  font-family: 'Montserrat', sans-serif;
}
.stat-card .stat-suffix {
  display: inline; font-size: 1.6rem;
  color: var(--bark-light);
}
.stat-card .stat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  margin-top: 0.3rem; letter-spacing: 0.04em;
}

/* ── Gallery Grid ── */
.gallery-section { background: var(--charcoal-light); }
.gallery-section .section-label { color: var(--bark-light); }
.gallery-section h2 { color: var(--white); }
.gallery-section .section-sub { color: rgba(255,255,255,0.55); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem; margin-top: 2rem;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
  background: var(--charcoal-mid);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:nth-child(1) { grid-column: span 2; height: 240px; }
.gallery-item:nth-child(2) { height: 240px; }
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) { height: 175px; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.05em; text-transform: uppercase;
}

/* ── Filter Tabs (Gallery Page) ── */
.filter-tabs {
  display: flex; align-items: center; gap: 0.75rem;
  flex-wrap: wrap; margin-bottom: 2.5rem;
  justify-content: center;
}
.filter-tab {
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; border: none;
  background: var(--light-gray); color: var(--smoke);
  transition: var(--transition);
}
.filter-tab:hover { background: var(--border); color: var(--charcoal); }
.filter-tab.active { background: var(--forest); color: var(--white); }
.gallery-page-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.gallery-page-item {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/9; position: relative; cursor: pointer;
  background: var(--light-gray);
}
.gallery-page-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-page-item:hover img { transform: scale(1.06); }
.gallery-page-item .gallery-overlay { opacity: 0; transition: var(--transition); display: flex; }
.gallery-page-item:hover .gallery-overlay { opacity: 1; }

/* ── Testimonials ── */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg); padding: 1.5rem;
  border: 1px solid var(--border);
  transition: var(--transition); position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 0.5rem; right: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; color: rgba(26,61,40,0.1); line-height: 1;
}
.stars { display: flex; gap: 3px; margin-bottom: 0.65rem; color: #f59e0b; font-size: 0.9rem; }
.testimonial-text {
  font-size: 0.9rem; color: var(--charcoal-mid);
  line-height: 1.65; margin-bottom: 1.1rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.65rem; }
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--forest); display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  color: var(--white); font-size: 0.85rem; flex-shrink: 0;
}
.author-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem; }
.author-detail { font-size: 0.75rem; color: var(--smoke); margin-top: 0.1rem; }

/* ── Reviews Page Stats ── */
.reviews-stats {
  background: var(--forest);
  padding: 2rem 2rem;
}
.reviews-stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2px 1fr 2px 1fr;
  gap: 1.5rem; align-items: center; text-align: center;
}
.reviews-stat-divider { background: rgba(255,255,255,0.15); height: 60px; }
.reviews-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem; font-weight: 900; color: var(--white); line-height: 1;
}
.reviews-stat-stars { color: #f59e0b; font-size: 1.1rem; margin: 0.25rem 0; }
.reviews-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); letter-spacing: 0.03em; }

/* ── FAQ Accordion ── */
.faq-section { background: var(--white); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin-top: 2.5rem;
}
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
  background: var(--white);
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--forest-light); }
.faq-question {
  width: 100%; text-align: left; padding: 1rem 1.25rem;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.88rem; font-weight: 700;
  color: var(--charcoal); transition: var(--transition);
}
.faq-question:hover { color: var(--forest-mid); }
.faq-item.open .faq-question { color: var(--forest); }
.faq-chevron {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--light-gray); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; transition: var(--transition);
}
.faq-item.open .faq-chevron { background: var(--forest); color: var(--white); transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer-inner {
  padding: 0 1.25rem 1rem;
  font-size: 0.88rem; color: var(--smoke); line-height: 1.65;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ── Service Areas ── */
.areas-section { background: var(--off-white); }
.areas-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; margin-top: 2.5rem;
}
.area-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.area-chip {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 50px; padding: 0.3rem 0.85rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.74rem; font-weight: 600;
  color: var(--charcoal-mid); transition: var(--transition);
}
.area-chip:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }
.area-map {
  border-radius: var(--radius-lg); overflow: hidden;
  height: 300px; background: var(--light-gray);
  border: 2px solid var(--border);
}
.area-map iframe { display: block; width: 100%; height: 100%; border: 0; }

/* ── Lead Capture Form ── */
.form-section {
  background: linear-gradient(
    135deg,
    var(--charcoal) 0%,
    var(--charcoal-light) 50%,
    rgba(26,61,40,0.2) 100%
  );
  position: relative; overflow: hidden;
}
.form-section::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(26,61,40,0.18) 0%, transparent 70%);
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center; position: relative; z-index: 2;
}
.form-left .section-label { color: var(--bark-light); }
.form-left h2 { color: var(--white); margin-bottom: 0.75rem; }
.form-left > p { color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; }
.form-trust { display: flex; flex-direction: column; gap: 0.65rem; }
.form-trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.72);
}
.form-trust-item::before {
  content: '✓'; width: 22px; height: 22px;
  background: var(--forest-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; color: var(--white); flex-shrink: 0;
}
.contact-form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 800;
  color: var(--charcoal); margin-bottom: 0.4rem;
}
.form-subtitle { font-size: 0.88rem; color: var(--smoke); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 0.94rem;
  color: var(--charcoal); background: var(--off-white);
  transition: var(--transition);
  appearance: none; -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%235e6f66' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.85rem center;
  background-size: 18px; padding-right: 2.75rem; background-color: var(--off-white); cursor: pointer;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--forest-light); background: var(--white);
  box-shadow: 0 0 0 3px rgba(61,122,82,0.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-submit-area { margin-top: 1.1rem; }
.form-submit-area .btn { width: 100%; justify-content: center; font-size: 0.9rem; }
.form-disclaimer { font-size: 0.7rem; color: var(--smoke-light); text-align: center; margin-top: 0.6rem; line-height: 1.5; }
.form-or { display: flex; align-items: center; gap: 1rem; margin: 0.9rem 0; color: var(--smoke-light); font-size: 0.75rem; }
.form-or::before, .form-or::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.form-call-alt {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--charcoal);
}
.form-call-alt a { color: var(--forest-mid); text-decoration: underline; text-underline-offset: 2px; }
.form-success { display: none; text-align: center; padding: 2rem 1.25rem; }
.form-success.show { display: block; }
.form-success .success-icon { font-size: 2.75rem; margin-bottom: 0.75rem; }
.form-success h3 { color: var(--forest); margin-bottom: 0.4rem; }
.form-success p { color: var(--smoke); font-size: 0.9rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--forest); padding: 3.25rem 2rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -80px; left: -80px;
  width: 280px; height: 280px; background: rgba(255,255,255,0.04); border-radius: 50%;
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -80px; right: -80px;
  width: 280px; height: 280px; background: rgba(0,0,0,0.06); border-radius: 50%;
}
.cta-banner .section-label { color: rgba(255,255,255,0.6); }
.cta-banner h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-banner p { color: rgba(255,255,255,0.72); margin-bottom: 1.5rem; font-size: 1rem; }
.cta-banner-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap; position: relative; z-index: 2;
}

/* ── Footer ── */
.footer { background: var(--charcoal); padding: 3rem 2rem 1.5rem; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 2.5rem; margin-bottom: 2rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.5); font-size: 0.83rem;
  margin-top: 0.75rem; line-height: 1.6; max-width: 270px;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bark-light); margin-bottom: 0.9rem; font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col ul a { color: rgba(255,255,255,0.55); font-size: 0.84rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.55rem;
  color: rgba(255,255,255,0.55); font-size: 0.84rem; margin-bottom: 0.65rem;
}
.footer-contact-item .fc-icon { font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.75rem; }
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a { color: rgba(255,255,255,0.35); font-size: 0.75rem; transition: var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,0.65); }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: var(--transition);
}
.social-link:hover { background: var(--forest-light); border-color: var(--forest-light); color: var(--white); transform: translateY(-2px); }
.social-link svg { width: 17px; height: 17px; }

/* ── Page Header (Inner Pages) ── */
.page-header {
  padding: 7rem 2rem 3rem;
  background: var(--charcoal);
  text-align: center; position: relative; overflow: hidden;
}
.page-header-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.25;
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,28,23,0.55), rgba(20,28,23,0.92));
}
.page-header-content { position: relative; z-index: 2; }
.page-header .section-label { color: var(--bark-light); }
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header p { color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: var(--transition); }
.breadcrumb a:hover { color: var(--bark-light); }
.breadcrumb-sep { opacity: 0.4; }

/* ── Service Block (Alternating) ── */
.service-block { padding: 4.5rem 2rem; }
.service-block:nth-child(even) { background: var(--off-white); }
.service-block-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.service-block:nth-child(even) .service-block-inner { direction: rtl; }
.service-block:nth-child(even) .service-block-inner > * { direction: ltr; }
.service-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  height: 380px; position: relative;
  background: linear-gradient(135deg, var(--charcoal-mid), var(--forest));
}
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.service-img-tag {
  position: absolute; top: 1.25rem; left: 1.25rem;
  background: var(--forest); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 50px;
}
.service-content h2 { margin-bottom: 0.75rem; font-size: clamp(1.4rem, 2.5vw, 2rem); }
.service-content > p { margin-bottom: 1.4rem; }
.benefits-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.benefit-item { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; color: var(--charcoal-mid); }
.benefit-dot { width: 8px; height: 8px; min-width: 8px; background: var(--forest-light); border-radius: 50%; margin-top: 7px; }

/* ── About Page ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; margin-top: 3rem; }
.team-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: var(--transition); text-align: center;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-img { height: 260px; overflow: hidden; background: linear-gradient(135deg, var(--charcoal-mid), var(--forest)); }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 1.5rem; }
.team-name { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 800; margin-bottom: 0.25rem; }
.team-role { font-size: 0.82rem; color: var(--forest-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--forest-light); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--smoke); }

/* ── Contact Page ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem; align-items: start;
}
.contact-info h2 { margin-bottom: 0.5rem; }
.contact-info > p { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 0.85rem;
  margin-bottom: 1.1rem; padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--forest-pale); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.contact-label {
  font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--smoke); margin-bottom: 0.2rem;
}
.contact-value { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--charcoal); }
.contact-value a { color: var(--forest-mid); }
.contact-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.contact-form-card h3 { margin-bottom: 0.3rem; }
.contact-form-card > p { color: var(--smoke); font-size: 0.88rem; margin-bottom: 1.25rem; }

/* ── Hours Table ── */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours-table td { padding: 0.5rem 0; font-size: 0.88rem; }
.hours-table td:first-child { color: var(--smoke); font-weight: 600; }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--charcoal); }
.hours-open { color: var(--forest-mid) !important; }
.hours-closed { color: var(--smoke-light) !important; }

/* ── Reviews Slider ── */
.reviews-slider-wrap {
  position: relative; margin-top: 3rem;
}
.reviews-slider-viewport {
  overflow: hidden; border-radius: var(--radius);
}
.reviews-slider-track {
  display: flex; gap: 1.75rem;
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.reviews-slider-track .testimonial-card {
  flex: 0 0 calc(33.333% - 1.17rem);
  min-width: 0;
}
.slider-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin-top: 2rem;
}
.slider-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; color: var(--charcoal-mid);
  transition: var(--transition); flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.slider-arrow:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }
.slider-arrow:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.slider-dots {
  display: flex; align-items: center; gap: 0.5rem;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: var(--transition); padding: 0;
}
.slider-dot.active { background: var(--forest); width: 24px; border-radius: 4px; }

@media (max-width: 900px) {
  .reviews-slider-track .testimonial-card { flex: 0 0 calc(50% - 0.875rem); }
}
@media (max-width: 580px) {
  .reviews-slider-track .testimonial-card { flex: 0 0 100%; }
  .reviews-slider-track { gap: 1rem; }
}

/* ── Section-specific compact overrides ── */

/* Gallery preview section on homepage */
.gallery-section { padding: 3.5rem 2rem; }

/* Lead form section */
.form-section { padding: 3.5rem 2rem; }
.form-trust { gap: 0.45rem; }
.form-trust-item { font-size: 0.78rem; }
.contact-form { padding: 1.75rem; }
.form-group { margin-bottom: 0.85rem; }

/* Contact page */
.contact-section { padding: 3.5rem 2rem; }
.hours-table td { padding: 0.3rem 0; font-size: 0.82rem; }

/* Gallery page */
.gallery-page-grid { gap: 1rem; }
.filter-tabs { margin-bottom: 2rem; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .why-grid, .form-grid, .service-block-inner, .contact-grid, .emergency-inner, .areas-grid {
    grid-template-columns: 1fr; gap: 3rem;
  }
  .service-block:nth-child(even) .service-block-inner { direction: ltr; }
  .why-img-stack { height: 380px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .sticky-mobile { display: flex; }
  .float-quote { display: none !important; }
  .hero-stats { gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; height: 200px; }
  .gallery-item { height: 160px !important; }
  .form-row { grid-template-columns: 1fr; }
  .why-img-stack { height: 260px; }
  .why-years-badge { left: -8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 3rem 1.25rem; }
  .contact-form-card { padding: 1.4rem; }
  .page-header { padding: 5.5rem 1.25rem 2.5rem; }
  .reviews-stats-inner { grid-template-columns: 1fr; }
  .reviews-stat-divider { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .ann-bar { font-size: 0.7rem; padding: 0.5rem 2.5rem 0.5rem 0.75rem; }
  .gallery-page-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 1.25rem; }
  .stat-num { font-size: 1.75rem; }
  .stat-label { font-size: 0.68rem; max-width: 80px; }
  .trust-bar-inner { justify-content: center; }
  .cta-banner-actions { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
