/* ===========================
   Western Pest Control - Main Styles
   Brand Colors: Navy Blue + Gold
   =========================== */

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

:root {
  --navy: #1c3461;
  --navy-dark: #142649;
  --navy-mid: #254a87;
  --navy-light: #2e5aa8;
  --gold: #c9a040;
  --gold-light: #e8bc55;
  --gold-dark: #a8842e;
  --white: #ffffff;
  --gray-light: #f5f7fa;
  --gray-mid: #e4e8f0;
  --gray-text: #5a6478;
  --text-dark: #0f1e3a;
  --shadow: 0 4px 20px rgba(28, 52, 97, 0.12);
  --shadow-hover: 0 8px 32px rgba(28, 52, 97, 0.22);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===========================
   TOP BAR
   =========================== */

.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.top-bar a {
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}

.top-bar a:hover {
  color: var(--gold-light);
}

.top-bar-phone {
  font-weight: 600;
  color: var(--gold-light) !important;
}

.top-bar-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.top-bar-links li::before {
  content: '|';
  margin-right: 20px;
  opacity: 0.3;
}

.top-bar-links li:first-child::before {
  display: none;
}

/* ===========================
   HEADER / NAV
   =========================== */

.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 160, 64, 0.4);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--gray-light);
  transform: translateY(-1px);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-white-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  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);
}

/* ===========================
   CONTAINER
   =========================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
  background: var(--navy-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,38,73,0.92) 0%, rgba(20,38,73,0.82) 45%, rgba(20,38,73,0.5) 100%);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,160,64,0.18);
  border: 1px solid rgba(201,160,64,0.4);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-badge .stars {
  color: var(--gold-light);
  letter-spacing: -1px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.15rem;
  opacity: 0.88;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero right side card */
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(8px);
}

.hero-card-logo {
  width: 140px;
  margin: 0 auto 20px;
  filter: brightness(0) invert(1);
}

.hero-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 6px;
}

.hero-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  text-align: center;
  margin-bottom: 24px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-stat {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.hero-stat .number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.hero-stat .label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===========================
   SECTION LABELS
   =========================== */

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: normal;
  color: var(--navy);
}

.section-sub {
  font-size: 1.02rem;
  color: var(--gray-text);
  max-width: 580px;
  line-height: 1.75;
}

/* ===========================
   HIGHLIGHTS
   =========================== */

.highlights {
  padding: 80px 0;
  background: var(--white);
}

.highlights-intro {
  margin-bottom: 56px;
}

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

.highlight-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-mid);
}

.highlight-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.highlight-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.highlight-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ===========================
   BRAND STATEMENT
   =========================== */

.brand-statement {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.brand-statement .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.brand-content .section-label {
  color: var(--gold-light);
}

.brand-content .section-label::before {
  background: var(--gold);
}

.brand-content .section-title {
  color: var(--white);
  font-size: 2.5rem;
}

.brand-content .section-title em {
  color: var(--gold-light);
}

.brand-content .section-sub {
  color: rgba(255,255,255,0.78);
}

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

.brand-grid-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-align: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.brand-grid-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(201,160,64,0.4);
}

.brand-grid-item .emoji {
  font-size: 1.8rem;
}

.brand-grid-item.featured {
  grid-column: span 2;
  aspect-ratio: auto;
  padding: 20px;
}

/* ===========================
   SERVICES
   =========================== */

.services {
  padding: 100px 0;
  background: var(--gray-light);
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-header .section-label {
  justify-content: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
  border: 1px solid var(--gray-mid);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: bottom;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
  display: block;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.93rem;
}

.service-link {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--navy);
}

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

/* ===========================
   QUOTE CTA
   =========================== */

.quote-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0;
  color: var(--white);
}

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

.quote-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.quote-content p {
  opacity: 0.85;
  margin-bottom: 32px;
  font-size: 1.02rem;
}

.quote-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.quote-divider {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  font-style: italic;
}

.quote-visual {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.14);
  overflow: hidden;
}

.quote-visual img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  height: 180px;
}

.quote-visual h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.quote-visual p {
  opacity: 0.8;
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ===========================
   HOW IT WORKS
   =========================== */

.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.how-it-works .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.how-steps {
  margin-top: 44px;
}

.step {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 21px;
  top: 48px;
  width: 2px;
  height: calc(100% - 12px);
  background: var(--gray-mid);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  margin-top: 10px;
}

.step-content p {
  color: var(--gray-text);
  font-size: 0.92rem;
  line-height: 1.7;
}

.how-visual {
  background: var(--gray-light);
  border-radius: 20px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.how-visual img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.how-visual-body {
  padding: 28px;
}

.how-visual-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.how-visual-body p {
  color: var(--gray-text);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.guarantee-badge {
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
}

.guarantee-badge .guarantee-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.guarantee-badge h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.guarantee-badge p {
  font-size: 0.8rem;
  opacity: 0.82;
  color: rgba(255,255,255,0.82);
  margin: 0;
  line-height: 1.5;
}

/* ===========================
   REVIEWS
   =========================== */

.reviews {
  padding: 100px 0;
  background: var(--gray-light);
}

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

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 6px;
  padding: 12px 24px;
  box-shadow: var(--shadow);
  margin-top: 16px;
}

.rating-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: -2px;
}

.rating-text {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.93rem;
}

.rating-count {
  color: var(--gray-text);
  font-size: 0.83rem;
}

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

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  transition: var(--transition);
  border: 1px solid var(--gray-mid);
}

.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--text-dark);
}

.review-location {
  font-size: 0.76rem;
  color: var(--gray-text);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.73rem;
  color: var(--gray-text);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--gray-mid);
}

/* ===========================
   PEST LIBRARY
   =========================== */

.pest-library {
  padding: 100px 0;
  background: var(--white);
}

.pest-library-header {
  margin-bottom: 56px;
}

.pest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}

.pest-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 26px;
  transition: var(--transition);
  border: 1px solid var(--gray-mid);
}

.pest-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  background: var(--white);
  border-color: var(--gold);
}

.pest-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.pest-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pest-card p {
  font-size: 0.87rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.pest-link {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.pest-link:hover {
  gap: 9px;
  color: var(--navy);
}

.pest-library-cta {
  text-align: center;
}

/* ===========================
   FAQ
   =========================== */

.faq {
  padding: 100px 0;
  background: var(--gray-light);
}

.faq .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 100px;
}

.faq-list {
  list-style: none;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--navy);
}

.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--navy);
  transition: var(--transition);
  font-weight: 400;
  line-height: 1;
}

.faq-item.open .faq-toggle {
  background: var(--navy);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 22px 20px;
  color: var(--gray-text);
  font-size: 0.91rem;
  line-height: 1.75;
  border-top: 1px solid var(--gray-mid);
  padding-top: 14px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.78);
  padding-top: 68px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-phone {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  transition: var(--transition);
}

.footer-phone:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.78);
  font-weight: 700;
}

.social-link:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-hours {
  font-size: 0.86rem;
  line-height: 1.85;
}

.footer-hours p {
  color: rgba(255,255,255,0.65);
}

.footer-hours p strong {
  color: var(--white);
  font-weight: 600;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.78);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1100px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: span 3;
  }
}

@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-card {
    display: none;
  }

  .brand-statement .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .quote-cta .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-it-works .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .how-visual {
    position: static;
    order: -1;
  }

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

  .faq .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-intro {
    position: static;
  }

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

@media (max-width: 640px) {
  .top-bar .container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .top-bar-links {
    gap: 12px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
    padding: 40px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .header .btn-primary {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

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

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .pest-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .quote-ctas {
    flex-direction: column;
  }
}

/* ===========================
   PRICING SECTION
   =========================== */
.pricing {
  padding: 80px 0;
  background: #f8f9fc;
}
.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
}
.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border: 2px solid #e8eaf0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.pricing-card.pricing-featured {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(201,160,64,0.25);
  transform: translateY(-8px);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pricing-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 8px;
}
.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
}
.pricing-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
  flex: 1;
}
.pricing-features li {
  font-size: 0.88rem;
  color: #444;
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.88rem;
  color: #666;
}
.pricing-note a {
  color: var(--navy);
  font-weight: 600;
}

/* Fix review avatars (initials) */
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===========================
   TEAM SECTION
   =========================== */
.team {
  padding: 80px 0;
  background: white;
}
.team-header {
  text-align: center;
  margin-bottom: 48px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
.team-card {
  text-align: center;
  transition: transform 0.2s;
}
.team-card:hover { transform: translateY(-4px); }
.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.team-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.team-title {
  font-size: 0.8rem;
  color: #666;
  margin-top: 2px;
}
