/* ================================================================
   COOPERSTOWN EXTERMINATORS — MAIN STYLESHEET
   Pest Control Cooperstown NY | Professional & Responsive
================================================================ */

/* ────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (Design Tokens)
──────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --primary:       #1a6b3c;   /* Deep Forest Green */
  --primary-dark:  #124d2b;
  --primary-light: #2a8a50;
  --accent:        #e8a020;   /* Warm Amber */
  --accent-dark:   #c8860d;

  /* Neutrals */
  --dark:          #0f1a14;
  --dark-2:        #1c2e23;
  --text:          #2d3748;
  --text-light:    #64748b;
  --light:         #f4f8f5;
  --white:         #ffffff;
  --border:        #e2e8f0;

  /* Icon Box Colors */
  --green:   #1a6b3c;
  --orange:  #e8a020;
  --blue:    #2563eb;
  --red:     #dc2626;
  --purple:  #7c3aed;
  --teal:    #0d9488;

  /* Typography */
  --font-body:    'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;

  /* Spacing */
  --section-pad: 90px;
  --container:   1200px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.14);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.18);

  /* Radius */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  /* Transitions */
  --trans:       all .28s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--primary-dark); }

ul { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--dark);
}

p { margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }

/* ────────────────────────────────────────────
   3. UTILITY CLASSES
──────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: var(--section-pad) 0; }

.bg-light { background: var(--light); }

.text-center { text-align: center; }

.mt-1 { margin-top: 1.25rem; }

.section-label {
  display: inline-block;
  background: rgba(26,107,60,.1);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: .85rem;
  border: 1px solid rgba(26,107,60,.2);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.section-header { margin-bottom: 3rem; }

/* ────────────────────────────────────────────
   4. BUTTONS
──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .93rem;
  padding: .7rem 1.5rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(26,107,60,.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,107,60,.35);
}

.btn-call {
  background: var(--accent);
  color: var(--dark) !important;
  border-color: var(--accent);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(232,160,32,.35);
}
.btn-call:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,.4);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2.2rem; font-size: 1.05rem; gap: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ────────────────────────────────────────────
   5. HEADER
──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  transition: var(--trans);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,.13);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--trans);
}
.logo:hover .logo-icon { background: var(--primary-dark); transform: rotate(-5deg); }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: -.01em;
}
.logo-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .7rem;
  color: var(--text-light);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.logo-white .logo-icon { background: var(--accent); }
.logo-white .logo-brand { color: var(--white); }
.logo-white .logo-sub { color: rgba(255,255,255,.7); }

/* Main Nav */
.main-nav { flex: 1; display: flex; justify-content: center; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: .1rem;
}

.main-nav ul li a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  padding: .45rem .75rem;
  border-radius: var(--radius-sm);
  transition: var(--trans);
  position: relative;
}
.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: .75rem; right: .75rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s ease;
}
.main-nav ul li a:hover { color: var(--primary); background: rgba(26,107,60,.07); }
.main-nav ul li a:hover::after { transform: scaleX(1); }

/* Header CTA */
.header-cta { flex-shrink: 0; font-size: .87rem; padding: .6rem 1.2rem; }
.header-cta i { font-size: .85rem; }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .4rem;
  margin-left: .5rem;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ────────────────────────────────────────────
   6. HERO SECTION
──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background:
    linear-gradient(135deg, rgba(15,26,20,.93) 0%, rgba(26,107,60,.85) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&auto=format&fit=crop&q=80') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,18,14,.9) 0%, rgba(18,77,43,.75) 60%, rgba(26,107,60,.6) 100%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(232,160,32,.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(26,107,60,.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(232,160,32,.15);
  border: 1px solid rgba(232,160,32,.4);
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.4rem;
  letter-spacing: -.02em;
}

.hero-title .highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  opacity: .5;
}

.hero-desc {
  font-size: 1.12rem;
  color: rgba(255,255,255,.88);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 600px;
}
.hero-desc strong { color: var(--white); }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.9);
  font-size: .88rem;
  font-weight: 500;
}
.trust-item i { color: var(--accent); font-size: 1rem; }

/* ────────────────────────────────────────────
   7. ABOUT SECTION
──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-content .section-title { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }

.about-content p {
  color: var(--text-light);
  font-size: .98rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-content p strong { color: var(--dark); }

.about-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.icon-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.1rem;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}
.icon-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26,107,60,.2);
}

.icon-box-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bg-green  { background: var(--green); }
.bg-orange { background: var(--orange); }
.bg-blue   { background: var(--blue); }
.bg-red    { background: var(--red); }
.bg-purple { background: var(--purple); }
.bg-teal   { background: var(--teal); }

.icon-box-text h3 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .3rem;
  color: var(--dark);
}
.icon-box-text p {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
}

/* ────────────────────────────────────────────
   8. SERVICES SECTION
──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,107,60,.2);
}

.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(26,107,60,.12), rgba(26,107,60,.06));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: var(--trans);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .65rem;
  color: var(--dark);
}

.service-card p {
  font-size: .87rem;
  color: var(--text-light);
  line-height: 1.72;
  margin-bottom: 1.2rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--primary);
  font-size: .85rem;
  font-weight: 600;
  transition: var(--trans);
}
.service-link i { font-size: .7rem; transition: transform .25s ease; }
.service-link:hover { color: var(--primary-dark); }
.service-link:hover i { transform: translateX(4px); }

/* ────────────────────────────────────────────
   9. WHY CHOOSE US
──────────────────────────────────────────── */
.why-us { background: var(--dark); }
.why-us .section-label { background: rgba(232,160,32,.15); border-color: rgba(232,160,32,.3); color: var(--accent); }
.why-us .section-title { color: var(--white); }
.why-us .section-desc { color: rgba(255,255,255,.7); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  position: relative;
  transition: var(--trans);
}
.why-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(26,107,60,.4);
  transform: translateY(-4px);
}

.why-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(232,160,32,.15);
  line-height: 1;
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  letter-spacing: -.04em;
  pointer-events: none;
}

.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .65rem;
}

.why-card p {
  font-size: .87rem;
  color: rgba(255,255,255,.65);
  line-height: 1.72;
  margin: 0;
}
.why-card p strong { color: var(--accent); }

/* Stats Bar */
.stats-bar {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.stat-divider {
  width: 1px; height: 50px;
  background: rgba(255,255,255,.1);
}

/* ────────────────────────────────────────────
   10. TESTIMONIALS
──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.7rem;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(26,107,60,.08);
  position: absolute;
  top: .5rem; left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,107,60,.2);
}

.stars {
  color: var(--accent);
  font-size: .95rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testimonial-card p strong { color: var(--dark); }

.reviewer {
  display: flex;
  align-items: center;
  gap: .8rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.reviewer-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
}
.reviewer span {
  font-size: .78rem;
  color: var(--text-light);
}

/* ────────────────────────────────────────────
   11. SERVICE AREAS
──────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.areas-content .section-title { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }

.areas-content > p {
  color: var(--text-light);
  font-size: .98rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  margin-bottom: 1.5rem;
}

.area-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  background: var(--light);
  padding: .6rem .9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--trans);
}
.area-item:hover {
  background: rgba(26,107,60,.07);
  border-color: rgba(26,107,60,.25);
  color: var(--primary);
}
.area-item i { color: var(--primary); font-size: .85rem; flex-shrink: 0; }

.areas-note {
  font-size: .88rem;
  color: var(--text-light);
  margin: 0;
}
.areas-note i { color: var(--primary); }
.areas-note a { color: var(--primary); font-weight: 600; }
.areas-note a:hover { text-decoration: underline; }

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.map-wrapper iframe { display: block; }

/* ────────────────────────────────────────────
   12. FAQ SECTION
──────────────────────────────────────────── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}
.faq-item:hover { border-color: rgba(26,107,60,.25); }
.faq-item.open { border-color: rgba(26,107,60,.35); box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--trans);
}
.faq-question span {
  font-family: var(--font-heading);
  font-size: .97rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.45;
}
.faq-question:hover span { color: var(--primary); }
.faq-item.open .faq-question { background: rgba(26,107,60,.04); }

.faq-icon {
  color: var(--primary);
  font-size: .85rem;
  flex-shrink: 0;
  transition: transform .28s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.3rem;
}

.faq-answer p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.78;
  margin: 0;
}
.faq-answer a { color: var(--primary); font-weight: 600; }
.faq-answer a:hover { text-decoration: underline; }

/* ────────────────────────────────────────────
   13. CTA BANNER
──────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 90px 0;
  background:
    linear-gradient(135deg, rgba(10,18,14,.92) 0%, rgba(26,107,60,.88) 100%),
    url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1400&auto=format&fit=crop&q=80') center/cover no-repeat;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,18,14,.88) 0%, rgba(26,107,60,.82) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-text { flex: 1; min-width: 280px; }
.cta-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .9rem;
}
.cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  margin: 0;
  max-width: 560px;
}

.cta-actions { flex-shrink: 0; }

.btn-xl .btn-label {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  opacity: .7;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.btn-xl .btn-number {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--primary);
}

/* ────────────────────────────────────────────
   14. FOOTER
──────────────────────────────────────────── */
.site-footer { background: var(--dark-2); }

.footer-top { padding: 70px 0 50px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin: 1rem 0 1.2rem;
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.stars-sm { color: var(--accent); font-size: .75rem; letter-spacing: 1px; }
.footer-rating span {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}

.footer-heading {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  transition: var(--trans);
}
.footer-links a i { font-size: .65rem; color: var(--accent); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1rem; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.footer-contact i {
  color: var(--accent);
  font-size: .9rem;
  margin-top: .2rem;
  flex-shrink: 0;
}
.footer-contact span, .footer-contact a {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  background: rgba(0,0,0,.25);
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  text-align: center;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}
.footer-bottom strong { color: rgba(255,255,255,.65); }
.footer-disc { font-size: .76rem !important; color: rgba(255,255,255,.3) !important; }

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

/* ────────────────────────────────────────────
   16. ANIMATIONS
──────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-animate="fade-right"] { transform: translateX(-28px); }
[data-animate="fade-left"]  { transform: translateX(28px); }
[data-animate].animated {
  opacity: 1;
  transform: translate(0,0);
}

/* Stagger service & testimonial cards */
.services-grid .service-card:nth-child(1)  { transition-delay: .05s; }
.services-grid .service-card:nth-child(2)  { transition-delay: .10s; }
.services-grid .service-card:nth-child(3)  { transition-delay: .15s; }
.services-grid .service-card:nth-child(4)  { transition-delay: .20s; }
.services-grid .service-card:nth-child(5)  { transition-delay: .25s; }
.services-grid .service-card:nth-child(6)  { transition-delay: .30s; }
.services-grid .service-card:nth-child(7)  { transition-delay: .35s; }
.services-grid .service-card:nth-child(8)  { transition-delay: .40s; }
.services-grid .service-card:nth-child(9)  { transition-delay: .45s; }

.why-grid .why-card:nth-child(1)           { transition-delay: .05s; }
.why-grid .why-card:nth-child(2)           { transition-delay: .12s; }
.why-grid .why-card:nth-child(3)           { transition-delay: .19s; }
.why-grid .why-card:nth-child(4)           { transition-delay: .26s; }
.why-grid .why-card:nth-child(5)           { transition-delay: .33s; }
.why-grid .why-card:nth-child(6)           { transition-delay: .40s; }

.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: .05s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: .12s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: .19s; }
.testimonials-grid .testimonial-card:nth-child(4) { transition-delay: .26s; }
.testimonials-grid .testimonial-card:nth-child(5) { transition-delay: .33s; }
.testimonials-grid .testimonial-card:nth-child(6) { transition-delay: .40s; }

/* ────────────────────────────────────────────
   17. RESPONSIVE — TABLET (≤1024px)
──────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .about-grid,
  .areas-grid { grid-template-columns: 1fr; gap: 3rem; }

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

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

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

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }

  .stat-divider { display: none; }
  .stats-bar { gap: 2rem; }
}

/* ────────────────────────────────────────────
   18. RESPONSIVE — MOBILE (≤768px)
──────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  /* Header */
  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    border-top: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    pointer-events: none;
    z-index: 999;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav ul { flex-direction: column; gap: .2rem; }
  .main-nav ul li a {
    display: block;
    padding: .7rem 1rem;
    font-size: .95rem;
  }

  .nav-toggle { display: flex; }
  .header-cta span { display: none; }
  .header-cta { padding: .55rem .9rem; }

  /* Hero */
  .hero-content { padding: 60px 24px 80px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: .65rem; }

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

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

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

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

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

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

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }

  /* Stats */
  .stats-bar { flex-direction: column; gap: 1.5rem; }

  /* Back to top */
  .back-to-top { bottom: 1.2rem; right: 1.2rem; width: 42px; height: 42px; }
}

/* ────────────────────────────────────────────
   19. RESPONSIVE — SMALL MOBILE (≤480px)
──────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --section-pad: 50px; }

  .logo-brand { font-size: .98rem; }
  .logo-sub { font-size: .62rem; }
  .logo-icon { width: 36px; height: 36px; font-size: 1.05rem; }

  .section-title { font-size: 1.45rem; }

  .hero-title { font-size: 2rem; }
  .hero-desc { font-size: 1rem; }

  .stat-num { font-size: 1.8rem; }

  .cta-text h2 { font-size: 1.55rem; }
}
