
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0A0A08;
  --dark: #141410;
  --forest: #1C3220;
  --green: #2D5A3D;
  --sage: #5A8A6A;
  --mint: #A8C5B0;
  --gold: #C8A84B;
  --gold-light: #E2CC85;
  --cream: #F7F3EC;
  --white: #FEFEFE;
  --warm-gray: #8A8578;
  --light-gray: #EAE6DE;
  --text: #1A1A16;
  --text-muted: #6B6860;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  background: rgba(10,10,8,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,168,75,0.15);
  transition: all 0.3s;
}

.nav-logo {
  display: flex; flex-direction: column;
}
.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1;
}
.nav-logo-main span { color: var(--gold); font-style: italic; }
.nav-logo-sub {
  font-size: 9px; font-weight: 300;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 3px;
}

.nav-links {
  display: flex; gap: 40px; list-style: none;
}
.nav-links a {
  font-size: 12px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 22px !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px !important;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 999; padding: 40px;
  flex-direction: column; gap: 30px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 24px; font-family: 'Playfair Display', serif;
  color: var(--white); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 20px;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 60px 80px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(44,90,61,0.25), transparent),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(200,168,75,0.08), transparent),
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(28,50,32,0.4), transparent);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(200,168,75,0.4);
  padding: 8px 16px; margin-bottom: 36px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-badge span {
  font-size: 10px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600; line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 em {
  font-style: italic; color: var(--gold);
}
.hero h1 .outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.4);
  color: transparent;
}

.hero-sub {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8; max-width: 500px;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%); transition: transform 0.3s;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 16px 36px;
  font-size: 12px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
}

.hero-stats {
  position: absolute; right: 60px; bottom: 80px;
  display: flex; flex-direction: column; gap: 1px;
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px 28px; text-align: center;
  backdrop-filter: blur(10px);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 9px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

.hero-scroll {
  position: absolute; bottom: 30px; left: 60px;
  display: flex; align-items: center; gap: 12px;
  animation: fadeUp 0.8s 0.5s ease both;
}
.scroll-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.scroll-text {
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--forest);
  padding: 20px 60px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.trust-icon { font-size: 16px; }
.trust-sep { color: rgba(200,168,75,0.4); font-size: 20px; }

/* ── SECTION COMMONS ── */
.section-tag {
  font-size: 10px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600; line-height: 1.15;
  color: var(--text);
}

.section-title.light { color: var(--white); }

/* ── SERVICES ── */
#services {
  padding: 120px 60px;
  background: var(--cream);
}

.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 70px;
}
.services-desc {
  font-size: 15px; font-weight: 300;
  color: var(--text-muted); line-height: 1.9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--white);
  padding: 48px 36px;
  position: relative; overflow: hidden;
  transition: all 0.4s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0); transition: transform 0.4s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 24px;
  transition: all 0.4s;
}
.service-card:hover .service-card-icon {
  background: var(--forest);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600;
  color: var(--text); margin-bottom: 14px;
}
.service-card p {
  font-size: 14px; font-weight: 300;
  color: var(--text-muted); line-height: 1.8;
  margin-bottom: 28px;
}
.service-card-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.service-card-list li {
  font-size: 12px; font-weight: 400;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
.service-card-list li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

/* ── PESTS ── */
.pests-section {
  padding: 100px 60px;
  background: var(--black);
  position: relative; overflow: hidden;
}
.pests-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(44,90,61,0.2), transparent);
}

.pests-header {
  text-align: center; margin-bottom: 70px;
  position: relative; z-index: 1;
}
.pests-header .section-tag { justify-content: center; }
.pests-header .section-tag::before { display: none; }

.pests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; position: relative; z-index: 1;
  margin-bottom: 60px;
}

.pest-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 24px; text-align: center;
  transition: all 0.4s; cursor: default;
}
.pest-card:hover {
  background: rgba(44,90,61,0.2);
  border-color: rgba(200,168,75,0.3);
  transform: translateY(-4px);
}
.pest-card-emoji { font-size: 40px; margin-bottom: 16px; display: block; }
.pest-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--white);
  margin-bottom: 10px;
}
.pest-card p {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.4); line-height: 1.7;
}

.pests-cta {
  text-align: center; position: relative; z-index: 1;
}
.pests-cta p {
  font-size: 13px; color: rgba(255,255,255,0.4);
  margin-bottom: 24px; letter-spacing: 1px;
}

/* ── WHY US ── */
#about {
  padding: 120px 60px;
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}

.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  background: var(--forest);
  height: 500px;
  display: flex; align-items: center; justify-content: center;
  font-size: 100px;
  position: relative; overflow: hidden;
}
.about-img-main::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,50,32,0.8), rgba(200,168,75,0.1));
}
.about-img-overlay {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  padding: 28px 32px;
  z-index: 2;
}
.about-img-overlay-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 700;
  color: var(--black); line-height: 1;
}
.about-img-overlay-text {
  font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(0,0,0,0.6); margin-top: 4px;
}

.about-content {}
.about-content .section-title { margin-bottom: 24px; }
.about-content > p {
  font-size: 15px; font-weight: 300;
  color: var(--text-muted); line-height: 1.9;
  margin-bottom: 48px;
}

.why-list {
  display: flex; flex-direction: column; gap: 24px;
}
.why-item {
  display: flex; gap: 20px; align-items: flex-start;
}
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--cream);
  border: 1px solid var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.why-text h4 {
  font-size: 15px; font-weight: 500;
  color: var(--text); margin-bottom: 6px;
}
.why-text p {
  font-size: 13px; font-weight: 300;
  color: var(--text-muted); line-height: 1.7;
}

/* ── COVERAGE ── */
.coverage {
  padding: 100px 60px;
  background: var(--cream);
  text-align: center;
}
.coverage .section-tag { justify-content: center; }
.coverage .section-tag::before { display: none; }
.coverage .section-title { margin-bottom: 16px; }
.coverage-sub {
  font-size: 15px; font-weight: 300;
  color: var(--text-muted); max-width: 500px;
  margin: 0 auto 60px; line-height: 1.8;
}

.coverage-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; max-width: 900px; margin: 0 auto 60px;
}
.coverage-card {
  background: var(--white);
  padding: 32px 20px; text-align: center;
  transition: all 0.3s;
}
.coverage-card:first-child {
  background: var(--forest); grid-column: span 2;
}
.coverage-card:first-child .city-name { color: var(--white); }
.coverage-card:first-child .city-tag { color: var(--gold); }
.coverage-card:hover { transform: translateY(-4px); }
.city-icon { font-size: 28px; margin-bottom: 12px; }
.city-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--text);
  margin-bottom: 6px;
}
.city-tag {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--warm-gray);
}

.coverage-note {
  font-size: 13px; color: var(--text-muted);
  font-style: italic;
}

/* ── PROCESS ── */
.process {
  padding: 100px 60px;
  background: var(--white);
}
.process-header { text-align: center; margin-bottom: 70px; }
.process-header .section-tag { justify-content: center; }
.process-header .section-tag::before { display: none; }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 32px; left: calc(12.5% + 32px);
  right: calc(12.5% + 32px); height: 1px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
}

.process-step { text-align: center; padding: 0 20px; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--forest);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600; color: var(--gold);
  margin: 0 auto 24px;
  position: relative; z-index: 1;
  background: var(--white);
  border-color: var(--sage);
}
.process-step:hover .step-num {
  background: var(--forest); color: var(--gold-light);
  border-color: var(--gold);
}
.step-num { transition: all 0.3s; }
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--text);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 13px; font-weight: 300;
  color: var(--text-muted); line-height: 1.8;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 60px;
  background: var(--forest);
  position: relative; overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute; top: -40px; left: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 400px; font-weight: 700;
  color: rgba(255,255,255,0.03); line-height: 1;
}
.testimonials-header {
  text-align: center; margin-bottom: 60px;
  position: relative; z-index: 1;
}
.testimonials-header .section-tag { justify-content: center; }
.testimonials-header .section-tag::before { display: none; }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; position: relative; z-index: 1;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px;
}
.testimonial-stars {
  color: var(--gold); font-size: 14px; margin-bottom: 20px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.9; margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
}
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700; color: var(--black);
}
.author-name {
  font-size: 14px; font-weight: 500; color: var(--white);
}
.author-loc {
  font-size: 11px; color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

/* ── CONTACT ── */
#contact {
  padding: 120px 60px;
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}

.contact-info {}
.contact-info .section-title { margin-bottom: 20px; }
.contact-info > p {
  font-size: 15px; font-weight: 300;
  color: var(--text-muted); line-height: 1.9; margin-bottom: 48px;
}

.contact-details {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 48px;
}
.contact-detail {
  display: flex; gap: 16px; align-items: center;
  padding: 20px 24px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}
.contact-detail-icon { font-size: 20px; }
.contact-detail-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 16px; font-weight: 500; color: var(--text);
}

.contact-form-wrap {
  background: var(--white);
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px; color: var(--text);
  margin-bottom: 8px;
}
.form-sub {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 36px;
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block; font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--light-gray);
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--text);
  outline: none; transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%; padding: 18px;
  background: var(--forest);
  color: var(--white);
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-100%); transition: transform 0.4s;
}
.form-submit:hover::before { transform: translateX(0); }
.form-submit span { position: relative; z-index: 1; }
.form-submit:hover span { color: var(--black); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 60px 60px 30px;
}

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 30px;
}

.footer-brand {}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px; color: var(--white);
  margin-bottom: 4px;
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-tagline {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-brand-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.4); line-height: 1.9;
  max-width: 300px;
}

.footer-col h5 {
  font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.45); text-decoration: none;
  transition: color 0.3s; letter-spacing: 0.5px;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy {
  font-size: 12px; color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}
.footer-legal {
  display: flex; gap: 24px;
}
.footer-legal a {
  font-size: 11px; color: rgba(255,255,255,0.25);
  text-decoration: none; letter-spacing: 1px;
}
.footer-legal a:hover { color: var(--gold); }

/* ── FLOATING CTA ── */
.floating-cta {
  position: fixed; bottom: 30px; right: 30px;
  z-index: 500;
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-end;
}
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  font-size: 13px; font-weight: 500;
  text-decoration: none; transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.float-call {
  background: var(--gold); color: var(--black);
}
.float-call:hover { background: var(--gold-light); transform: translateX(-4px); }
.float-whatsapp {
  background: #25D366; color: var(--white);
}
.float-whatsapp:hover { background: #1ebe5d; transform: translateX(-4px); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 120px 24px 160px; }
  .hero-stats { right: 24px; bottom: 24px; flex-direction: row; }
  .stat-card { padding: 14px 18px; }
  .stat-num { font-size: 22px; }
  .hero-scroll { left: 24px; }

  .trust-bar { padding: 16px 24px; gap: 12px; }
  .trust-sep { display: none; }

  #services { padding: 80px 24px; }
  .services-header { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }

  .pests-section { padding: 80px 24px; }
  .pests-grid { grid-template-columns: 1fr 1fr; }

  #about { grid-template-columns: 1fr; padding: 80px 24px; gap: 50px; }
  .about-img-main { height: 300px; }

  .coverage { padding: 80px 24px; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .coverage-card:first-child { grid-column: span 2; }

  .process { padding: 80px 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }

  .testimonials { padding: 80px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  #contact { grid-template-columns: 1fr; padding: 80px 24px; gap: 50px; }
  .contact-form-wrap { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }

  footer { padding: 50px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

  .floating-cta { bottom: 16px; right: 16px; }
}
