/* ============================================
   RAPID CITY TREE SERVICE — styles.css
   Colors: Bark Brown #3B2A1A | Forest Green #2D5016
           Sage Mist #8FAF6A | Limestone #F5F0E8
           Emergency Red #C0392B | White #FFFFFF
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@400;500;600&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: #3B2A1A;
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
}

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.15;
  color: #3B2A1A;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 72px 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
}
.btn-primary {
  background: #2D5016;
  color: #fff;
}
.btn-primary:hover {
  background: #3d6b1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,80,22,0.35);
}
.btn-emergency {
  background: #C0392B;
  color: #fff;
}
.btn-emergency:hover {
  background: #a93226;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: #fff;
  color: #2D5016;
}
.btn-pulse {
  animation: pulse 2s ease-in-out 0.5s 2;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(45,80,22,0.6); }
  70%  { box-shadow: 0 0 0 14px rgba(45,80,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,80,22,0); }
}

/* ---- TOP BAR ---- */
.top-bar {
  background: #3B2A1A;
  color: #F5F0E8;
  padding: 8px 0;
  font-size: 0.85rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.03em;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #8FAF6A; }
.top-bar a:hover { color: #fff; }
.top-bar .phone-top {
  font-size: 1rem;
  font-weight: 600;
  color: #8FAF6A;
  letter-spacing: 0.05em;
}

/* ---- NAVIGATION ---- */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(59,42,26,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1140px;
  margin: 0 auto;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #2D5016;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.nav-logo-text span { display: block; font-size: 0.7rem; font-weight: 400; color: #3B2A1A; letter-spacing: 0.08em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #3B2A1A;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: #2D5016;
  border-bottom-color: #8FAF6A;
}
.nav-links a.emergency-link {
  color: #C0392B;
  font-weight: 700;
}
.nav-links a.emergency-link:hover { color: #a93226; border-bottom-color: #C0392B; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #2D5016;
  letter-spacing: 0.04em;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #3B2A1A;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 2px solid #F5F0E8;
  padding: 16px 20px 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 0;
  border-bottom: 1px solid #F5F0E8;
  color: #3B2A1A;
}
.mobile-nav a.emergency-link { color: #C0392B; font-weight: 700; }
.mobile-nav .btn { margin-top: 16px; width: 100%; text-align: center; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a0f08;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('img/hero.jpg') center/cover no-repeat;
  opacity: 0.45;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8FAF6A;
  margin-bottom: 12px;
}
.hero h1 {
  color: #fff;
  max-width: 700px;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero p {
  color: #e8e0d5;
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: #2D5016;
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust-icon { font-size: 1.3rem; }

/* ---- SECTION LABELS ---- */
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2D5016;
  margin-bottom: 8px;
  display: block;
}
.section-title { margin-bottom: 14px; }
.section-sub {
  color: #5a4535;
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 40px;
}
.section-header { margin-bottom: 44px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto 40px; }

/* ---- SERVICES GRID ---- */
.services-section { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.service-card {
  background: #F5F0E8;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border-bottom: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(59,42,26,0.15);
  border-bottom-color: #2D5016;
}
.service-card.emergency-card { border-bottom-color: #C0392B; }
.service-card.emergency-card:hover { border-bottom-color: #C0392B; }
.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #c5b9a8;
}
.service-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #3B2A1A 0%, #2D5016 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.service-card-body { padding: 24px; }
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p { font-size: 0.95rem; color: #5a4535; margin-bottom: 16px; }
.service-link {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2D5016;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid #8FAF6A;
  padding-bottom: 2px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }
.emergency-card .service-link { color: #C0392B; border-bottom-color: #C0392B; }

/* ---- WHY CHOOSE US ---- */
.why-section { background: #F5F0E8; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.why-item { text-align: center; }
.why-icon {
  width: 68px;
  height: 68px;
  background: #2D5016;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  color: #fff;
}
.why-item h4 { margin-bottom: 8px; }
.why-item p { font-size: 0.93rem; color: #5a4535; }

/* ---- EMERGENCY BANNER ---- */
.emergency-banner {
  background: #C0392B;
  padding: 48px 0;
}
.emergency-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.emergency-banner h2 { color: #fff; }
.emergency-banner p { color: rgba(255,255,255,0.88); margin-bottom: 0; }
.emergency-text { flex: 1; min-width: 240px; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.review-card {
  background: #F5F0E8;
  border-radius: 6px;
  padding: 28px;
  border-left: 4px solid #2D5016;
}
.stars { color: #f0a500; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.97rem; color: #3B2A1A; margin-bottom: 16px; font-style: italic; }
.reviewer { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; color: #2D5016; }
.reviewer span { font-weight: 400; color: #7a6555; margin-left: 6px; }

/* ---- SERVICE AREA ---- */
.area-section { background: #F5F0E8; }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.area-cities { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.city-pill {
  background: #fff;
  border: 2px solid #8FAF6A;
  border-radius: 4px;
  padding: 10px 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #2D5016;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.city-pill:hover { background: #2D5016; color: #fff; border-color: #2D5016; }
.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(59,42,26,0.15);
  border: 3px solid #2D5016;
}
.map-container iframe { display: block; width: 100%; height: 420px; border: none; }

/* ---- QUOTE FORM ---- */
.quote-section { background: #3B2A1A; padding: 80px 0; }
.quote-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.quote-intro h2 { color: #fff; }
.quote-intro .section-label { color: #8FAF6A; }
.quote-intro p { color: #c8bfb5; }
.quote-checklist { margin-top: 24px; }
.quote-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c8bfb5;
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.quote-checklist li::before {
  content: '✓';
  color: #8FAF6A;
  font-weight: 700;
  flex-shrink: 0;
}

.quote-form-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 36px 32px;
}
.quote-form-wrap h3 {
  margin-bottom: 6px;
  color: #3B2A1A;
}
.form-sub { font-size: 0.9rem; color: #7a6555; margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #3B2A1A;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #d4c9bc;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  color: #3B2A1A;
  background: #fff;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2D5016;
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233B2A1A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-submit { width: 100%; padding: 16px; font-size: 1.1rem; }
.form-note { font-size: 0.8rem; color: #7a6555; text-align: center; margin-top: 10px; }

/* ---- LOCATIONS PAGES TEASER ---- */
.locations-section { background: #fff; }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.location-card {
  background: #F5F0E8;
  border-radius: 6px;
  padding: 24px 20px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
  color: #3B2A1A;
}
.location-card:hover {
  border-bottom-color: #2D5016;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59,42,26,0.12);
}
.location-icon { font-size: 1.8rem; margin-bottom: 10px; }
.location-card h4 { font-family: 'Oswald', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.location-card p { font-size: 0.85rem; color: #7a6555; margin: 0; }

/* ---- FOOTER ---- */
footer {
  background: #1a0f08;
  color: #c8bfb5;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .nav-logo-text { color: #8FAF6A; }
.footer-brand .nav-logo-text span { color: #c8bfb5; }
.footer-brand p { font-size: 0.9rem; color: #a09080; margin-top: 14px; line-height: 1.7; }
.footer-col h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8FAF6A;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: #a09080;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #8FAF6A;
  display: block;
  margin-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: #6a5a50;
}
.footer-bottom a { color: #6a5a50; }
.footer-bottom a:hover { color: #8FAF6A; }

/* ---- STICKY MOBILE CALL BAR ---- */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #2D5016;
  padding: 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.sticky-call-bar .bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sticky-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}
.sticky-call-bar a:first-child { background: #2D5016; border-right: 1px solid rgba(255,255,255,0.2); }
.sticky-call-bar a:last-child { background: #C0392B; }

/* ---- INNER PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, #1a0f08 0%, #2D5016 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  background: rgba(143,175,106,0.08);
  border-radius: 50%;
}
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.page-hero .breadcrumb a { color: #8FAF6A; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin-top: 14px; font-size: 1.05rem; }

/* ---- CONTENT PAGE ---- */
.content-section { background: #fff; }
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}
.content-body h2 { margin: 36px 0 14px; }
.content-body h3 { margin: 28px 0 10px; }
.content-body ul { list-style: disc; padding-left: 20px; color: #5a4535; }
.content-body ul li { margin-bottom: 8px; font-size: 0.97rem; }
.content-body p { color: #5a4535; }

/* Sidebar */
.sidebar-card {
  background: #F5F0E8;
  border-radius: 8px;
  padding: 28px 24px;
  margin-bottom: 24px;
  border-top: 4px solid #2D5016;
}
.sidebar-card.emergency { border-top-color: #C0392B; }
.sidebar-card h4 { margin-bottom: 14px; }
.sidebar-card .big-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D5016;
  display: block;
  margin-bottom: 8px;
}
.sidebar-card.emergency .big-phone { color: #C0392B; }
.sidebar-services li {
  padding: 8px 0;
  border-bottom: 1px solid #ddd8d0;
  font-size: 0.93rem;
}
.sidebar-services li a { color: #3B2A1A; display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.sidebar-services li a:hover { color: #2D5016; }

/* ---- SERVICE FEATURES ---- */
.features-strip { background: #F5F0E8; padding: 56px 0; }
.features-strip .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.feat-item {
  text-align: center;
  padding: 20px;
}
.feat-icon { font-size: 2rem; margin-bottom: 12px; }
.feat-item h4 { font-size: 1rem; margin-bottom: 6px; }
.feat-item p { font-size: 0.88rem; color: #7a6555; margin: 0; }

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info-card {
  background: #F5F0E8;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  border-left: 4px solid #2D5016;
}
.contact-info-card h3 { margin-bottom: 16px; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.contact-row-icon { font-size: 1.4rem; margin-top: 2px; }
.contact-row strong { display: block; font-family: 'Oswald', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: #7a6555; margin-bottom: 2px; }
.contact-row a { color: #2D5016; font-weight: 600; font-size: 1.05rem; }

/* ---- THANK YOU PAGE ---- */
.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #F5F0E8;
  padding: 80px 20px;
}
.thankyou-box {
  max-width: 560px;
}
.thankyou-icon { font-size: 4rem; margin-bottom: 20px; }
.thankyou-box h1 { color: #2D5016; margin-bottom: 16px; }
.thankyou-box p { color: #5a4535; margin-bottom: 28px; }

/* ---- SITEMAP PAGE ---- */
.sitemap-section { background: #fff; }
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-top: 40px; }
.sitemap-col h3 { color: #2D5016; margin-bottom: 16px; font-size: 1.1rem; border-bottom: 2px solid #8FAF6A; padding-bottom: 8px; }
.sitemap-col ul li { margin-bottom: 10px; }
.sitemap-col ul li a { color: #5a4535; font-size: 0.95rem; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.sitemap-col ul li a:hover { color: #2D5016; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .quote-section .container { grid-template-columns: 1fr; gap: 40px; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 52px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .sticky-call-bar { display: block; }
  body { padding-bottom: 60px; }
  .hero { min-height: 480px; }
  .area-cities { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar .container { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .quote-form-wrap { padding: 28px 20px; }
  .area-cities { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
