/* ============================================================
   ESSEX EXTERMINATORS — MAIN STYLESHEET
   Professional Pest Control Website
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --green:        #1a6b2a;
  --green-dark:   #134e1e;
  --green-light:  #2a8c3f;
  --gold:         #e8a020;
  --gold-dark:    #c98010;
  --white:        #ffffff;
  --off-white:    #f5f7f2;
  --light-bg:     #f0f4ec;
  --text-dark:    #1a1f16;
  --text-body:    #3a4035;
  --text-muted:   #6b7460;
  --border:       #d4dfc8;
  --shadow-sm:    0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:    0 6px 25px rgba(0,0,0,0.10);
  --shadow-lg:    0 15px 45px rgba(0,0,0,0.13);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --transition:   all 0.3s ease;
  --font-main:    'Inter', sans-serif;
  --font-heading: 'Poppins', 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-main);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; color: var(--text-dark); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

/* ---- Section Padding ---- */
.section-pad { padding: 90px 0; }
.bg-light { background: var(--light-bg); }

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-header.light .section-label { background: rgba(255,255,255,0.2); color: #fff; }
.section-header.light .section-title { color: #fff; }
.section-header.light .section-desc { color: rgba(255,255,255,0.85); }

.section-label {
  display: inline-block;
  background: #e6f4ea;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.section-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-call {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-call:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold);
  transition: var(--transition);
}
.btn-primary-lg:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(232,160,32,0.4); }
.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.7);
  transition: var(--transition);
}
.btn-outline-lg:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-white-lg {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 36px;
  border-radius: var(--radius-sm);
  border: 2px solid #fff;
  transition: var(--transition);
  line-height: 1.3;
}
.btn-white-lg:hover { background: var(--gold); border-color: var(--gold); color: var(--text-dark); transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0,0,0,0.25); }
.btn-white-lg small { display: block; font-size: 0.75rem; font-weight: 500; opacity: 0.8; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }


/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  color: var(--text-dark);
  line-height: 1.2;
}
.logo-text strong { color: var(--green); font-weight: 800; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }

/* Navigation */
.main-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.nav-list li a {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-list li a:hover { color: var(--green); background: #e6f4ea; }

/* Header CTA */
.header-cta { padding: 9px 18px; font-size: 0.87rem; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav-list { text-align: center; }
.mobile-nav-list li { margin-bottom: 8px; }
.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-heading);
  padding: 8px 20px;
  display: block;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-cta { margin-top: 10px; }


/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d3b17 0%, #1a6b2a 40%, #215c30 100%);
  overflow: hidden;
  padding-top: 70px;
}
.hero::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.04'%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");
  opacity: 0.5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,59,23,0.75) 0%, rgba(13,59,23,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 80px 20px;
  animation: heroFadeIn 0.9s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.hero-title span { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 640px;
}
.hero-sub strong { color: #fff; }
.hero-sub em { color: var(--gold); font-style: normal; }
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  text-align: center;
  padding: 4px 20px;
  flex: 1 1 80px;
}
.stat strong { display: block; font-size: 1.5rem; color: var(--gold); font-weight: 800; }
.stat span { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.75); letter-spacing: 0.5px; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.2); height: 40px; }


/* ================================================================
   ABOUT
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.about-content { padding-right: 10px; }
.about-content .section-label { margin-bottom: 14px; }
.about-content .section-title { font-size: clamp(1.5rem, 2.8vw, 2rem); margin-bottom: 20px; }
.about-content p { color: var(--text-body); margin-bottom: 1.1rem; }
.about-content p strong { color: var(--green); }
.about-content .btn { margin-top: 14px; }

.about-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-icon-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.about-icon-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.aib-icon {
  width: 44px; height: 44px;
  background: #e6f4ea;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.aib-text h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.aib-text p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }


/* ================================================================
   SERVICES
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #c5ddb8; }
.sc-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, #e6f4ea, #c5ddb8);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--green);
  transition: var(--transition);
}
.service-card:hover .sc-icon { background: var(--green); color: #fff; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  transition: var(--transition);
}
.sc-link:hover { gap: 10px; color: var(--green-dark); }


/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-us { background: linear-gradient(135deg, var(--green-dark), var(--green)); }
.why-us .section-title { color: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(6px);
}
.why-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
.why-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  font-family: var(--font-heading);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.why-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.65; margin: 0; }


/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 14px; right: 20px;
  font-size: 5rem;
  color: #d4e8c9;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #c5ddb8; }
.tc-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.tc-text { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar { font-size: 2.4rem; color: #c5ddb8; }
.tc-info strong { display: block; font-size: 0.92rem; color: var(--text-dark); font-weight: 700; }
.tc-info span { font-size: 0.78rem; color: var(--text-muted); }

/* Rating Summary */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  max-width: 460px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.rating-score {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1;
}
.rating-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 4px; }
.rating-details p { font-size: 0.88rem; color: var(--text-dark); margin: 0 0 2px; }
.rating-details span { font-size: 0.78rem; color: var(--text-muted); }


/* ================================================================
   AREAS WE SERVE
   ================================================================ */
.areas { background: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.areas-content .section-label { margin-bottom: 14px; }
.areas-content .section-title { font-size: clamp(1.5rem, 2.8vw, 2rem); margin-bottom: 18px; }
.areas-content p { color: var(--text-body); }
.areas-list {
  margin: 22px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.areas-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 6px 0;
}
.areas-list li i { color: var(--green); font-size: 0.8rem; flex-shrink: 0; }
.areas-list li strong { color: var(--text-dark); }
.areas-note {
  font-size: 0.86rem;
  color: var(--text-muted);
  background: #e6f4ea;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.areas-note a { color: var(--green); font-weight: 600; }
.areas-note i { color: var(--green); flex-shrink: 0; }

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--border);
}
.map-wrapper iframe { display: block; }
.map-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--green);
  color: #fff;
  padding: 16px 20px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  margin-top: -4px;
}
.map-cta i { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; }
.map-cta strong { display: block; font-size: 0.85rem; margin-bottom: 2px; }
.map-cta a { font-size: 1.15rem; font-weight: 700; color: var(--gold); }
.map-cta a:hover { color: #fff; }


/* ================================================================
   FAQ
   ================================================================ */
.faq-container { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.faq-item:hover { border-color: #a8d4a0; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-main);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-question[aria-expanded="true"] { color: var(--green); background: #f0f9f2; }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: #e6f4ea;
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
}
.faq-answer a { color: var(--green); font-weight: 600; }


/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, #0a2e12 0%, #1a6b2a 50%, #0d3b17 100%);
  padding: 90px 0;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,160,32,0.1) 0%, transparent 70%);
}
.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text { flex: 1 1 400px; }
.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.cta-text p { font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin: 0; }
.cta-actions { flex-shrink: 0; }


/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: #0d1f10; color: rgba(255,255,255,0.8); }
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-logo .logo-text { color: rgba(255,255,255,0.9); }
.footer-logo .logo-text strong { color: var(--gold); }
.footer-about { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 18px; }
.footer-contact-info { display: flex; flex-direction: column; gap: 8px; }
.footer-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.1rem; font-weight: 700; color: var(--gold);
}
.footer-phone:hover { color: #fff; }
.footer-address {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
}
.footer-phone i, .footer-address i { font-size: 0.9rem; }

.footer-heading { font-size: 0.92rem; font-weight: 700; color: #fff; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-hours { margin-bottom: 20px; }
.footer-hours li {
  display: flex; justify-content: space-between;
  font-size: 0.83rem; padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
}
.footer-hours li span:first-child { color: rgba(255,255,255,0.85); font-weight: 500; }
.footer-cta-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.footer-cta-box p { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.footer-cta-box strong { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer-bottom-inner { text-align: center; }
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0 0 4px;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: #fff; }
.footer-disclaimer { font-size: 0.75rem !important; color: rgba(255,255,255,0.3) !important; }


/* ================================================================
   RESPONSIVE — TABLET (≤900px)
   ================================================================ */
@media (max-width: 900px) {
  .section-pad { padding: 70px 0; }

  /* Header */
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta span { display: none; }
  .header-cta { padding: 9px 14px; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-content { padding: 80px 20px 60px; }
  .hero-stats { justify-content: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-content { padding-right: 0; }
  .about-icons { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why Us */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  /* Areas */
  .areas-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}


/* ================================================================
   RESPONSIVE — MOBILE (≤640px)
   ================================================================ */
@media (max-width: 640px) {
  .section-pad { padding: 55px 0; }

  /* Hero */
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .stat-divider { display: none; }
  .stat { flex: 1 1 40%; padding: 8px 10px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary-lg, .btn-outline-lg { width: 100%; justify-content: center; }

  /* About */
  .about-icons { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Why Us */
  .why-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Areas List */
  .areas-list { grid-template-columns: 1fr; }

  /* CTA */
  .cta-content { flex-direction: column; text-align: center; }
  .btn-white-lg { width: 100%; justify-content: center; text-align: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col:first-child { text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-contact-info { align-items: center; }
}

/* ================================================================
   UTILITIES
   ================================================================ */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
