/* ============================================
   A-BANISH PEST CONTROL — Red, White & Black
   Local/friendly vibe, not SaaS
   ============================================ */

:root {
  --red: #cc0000;
  --red-dark: #a30000;
  --red-light: #fff0f0;
  --black: #111111;
  --dark: #1a1a1a;
  --gray-dark: #333;
  --gray: #666;
  --gray-light: #f5f5f5;
  --white: #ffffff;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1140px;
  --radius: 12px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.6;
  color: var(--gray-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: var(--red-dark); }
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

/* ============================================
   SITEWIDE NOTIFICATION BAR
   ============================================ */
.site-notification {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 17px;
}
.site-notification a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
}
.site-notification a:hover { color: #ff3333; }
.site-notification-inner {
  max-width: var(--container);
  margin: 0 auto;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #eee;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 31px;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.logo-sub {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--gray-dark);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }

.nav-cta {
  flex-shrink: 0;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 34px;
  cursor: pointer;
  color: var(--black);
  margin-left: auto;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: 108px;
  background: linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.72)), url('assets/truck.webp') center/cover no-repeat;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

.bug-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.bug-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.bug-icon svg {
  width: 56px;
  height: 56px;
}
.bug-icon span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 62px;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 22px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 24px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--gray-dark);
  background: var(--gray-light);
  padding: 8px 14px;
  border-radius: 20px;
}
.trust-badge .stars {
  color: #f5a623;
  font-size: 17px;
}

.hero-form-wrap {
  background: var(--black);
  border-radius: var(--radius);
  padding: 36px 28px;
  color: var(--white);
}
.hero-form-wrap h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 29px;
  margin-bottom: 8px;
  color: var(--white);
}
.hero-form-wrap > p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 20px;
}
.phone-link {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 18px;
  padding: 12px 16px;
  border: 2px solid #333;
  border-radius: 8px;
  background: #1a1a1a;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}
.contact-form select {
  color: #888;
}
.contact-form select option {
  color: var(--white);
  background: #1a1a1a;
}
.contact-form .btn {
  width: 100%;
  font-size: 20px;
  padding: 16px;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 80px 0;
  background: var(--gray-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-photo img {
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.about-text h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--black);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 19px;
  line-height: 1.7;
  color: var(--gray-dark);
}

.about-text .btn {
  margin-top: 12px;
}

/* ============================================
   PESTS WE TREAT
   ============================================ */
.pests {
  padding: 80px 0;
  background: var(--white);
}

.pests h2,
.services h2,
.areas h2,
.reviews h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--black);
  text-align: center;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  font-size: 20px;
  color: var(--gray);
  margin-bottom: 48px;
}

.pests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pest-card {
  background: var(--white);
  border: 2px solid #eee;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.pest-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.pest-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.pest-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
  margin-bottom: 8px;
}

.pest-card p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.5;
}

/* ============================================
   SERVICES / HOW IT WORKS
   ============================================ */
.services {
  padding: 80px 0;
  background: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.service-block {
  text-align: center;
  padding: 32px 24px;
}

.service-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-block h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  color: var(--black);
  margin-bottom: 12px;
}

.service-block p {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.6;
}

/* Coupon callout */
.coupon-callout {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px 36px;
}

.coupon-badge {
  flex-shrink: 0;
  background: #ffcc00;
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 29px;
  padding: 16px 20px;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
}

.coupon-callout strong {
  font-size: 22px;
  display: block;
  margin-bottom: 4px;
}
.coupon-callout p {
  font-size: 17px;
  color: #aaa;
  margin: 0;
}
.coupon-callout .btn {
  margin-left: auto;
  flex-shrink: 0;
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas {
  padding: 80px 0;
  background: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.area-card {
  text-align: center;
  padding: 36px 24px;
  border: 2px solid #eee;
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.area-card:hover { border-color: var(--red); }

.area-icon {
  font-size: 43px;
  margin-bottom: 12px;
}

.area-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--black);
  margin-bottom: 8px;
}

.area-card p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.5;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: 80px 0;
  background: var(--gray-light);
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--gray-dark);
}
.google-g {
  font-family: 'Google Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 29px;
  background: linear-gradient(135deg, #4285F4, #EA4335, #FBBC05, #34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stars {
  color: #f5a623;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.review-card .stars {
  font-size: 22px;
  margin-bottom: 12px;
  display: block;
}

.review-card p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-dark);
  font-style: italic;
  margin-bottom: 12px;
}

.reviewer {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--gray);
}

.reviews .btn-outline {
  display: block;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   BOTTOM CTA
   ============================================ */
.cta-bottom {
  padding: 80px 0;
  background: var(--white);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--black);
  margin-bottom: 16px;
}

.cta-text > p {
  font-size: 20px;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

.phone-big {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 43px;
  color: var(--red);
  margin-bottom: 8px;
}
.phone-big:hover { color: var(--red-dark); }

.cta-email {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 24px !important;
}
.cta-email a {
  color: var(--red);
  text-decoration: underline;
}

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-badges span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--gray-dark);
  background: var(--gray-light);
  padding: 8px 14px;
  border-radius: 20px;
}

.cta-form-wrap {
  background: var(--black);
  border-radius: var(--radius);
  padding: 36px 28px;
  color: var(--white);
}
.cta-form-wrap h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: #ccc;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  margin-bottom: 12px;
}
.footer-logo .logo-text { color: var(--red); font-size: 26px; }
.footer-logo .logo-sub { color: #888; font-size: 12px; letter-spacing: 3px; }

.footer-brand p {
  font-size: 17px;
  line-height: 1.6;
  color: #888;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 17px;
  line-height: 1.8;
  color: #999;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 16px;
  color: #666;
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* Tablet */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-form-wrap { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo img { max-width: 500px; }
  .pests-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-block { padding: 24px 20px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-form-wrap { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .coupon-callout { flex-direction: column; text-align: center; gap: 16px; }
  .coupon-callout .btn { margin-left: 0; }

  .about, .pests, .services, .areas, .reviews, .cta-bottom { padding: 60px 0; }
}

/* Mobile landscape / small tablet */
@media (max-width: 768px) {
  .site-notification { font-size: 11px; padding: 6px 12px; line-height: 1.4; }
  .navbar { top: 42px; }
  .hero { padding-top: 114px; }

  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; z-index: 100; left: 0; right: 0; background: var(--white); padding: 20px 24px; border-bottom: 1px solid #eee; gap: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .hero-inner { padding: 40px 20px 60px; }
  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 17px; }
  .bug-icons { gap: 10px; flex-wrap: wrap; }
  .bug-icon svg { width: 48px; height: 48px; }
  .bug-icon span { font-size: 10px; }
  .trust-badge { font-size: 13px; padding: 6px 10px; }

  .hero-form-wrap { padding: 28px 20px; }
  .hero-form-wrap h2 { font-size: 22px; }

  .about-text h2,
  .pests h2,
  .services h2,
  .areas h2,
  .reviews h2,
  .cta-text h2 { font-size: 32px; }

  .about-text p { font-size: 16px; }
  .about-photo img { max-width: 100%; }

  .pests-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pest-card { padding: 20px 14px; }
  .pest-card h3 { font-size: 16px; }
  .pest-card p { font-size: 13px; }

  .areas-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .phone-big { font-size: 30px; }
  .cta-form-wrap { padding: 28px 20px; }
  .cta-badges span { font-size: 13px; }

  .about, .pests, .services, .areas, .reviews, .cta-bottom { padding: 48px 0; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .pests-grid { grid-template-columns: 1fr; }
  .coupon-badge { width: 72px; height: 72px; font-size: 20px; padding: 12px; }
}
