/* ============================================================
   New Age Pest Managers — Main Stylesheet
   Premium Bright Luxury Theme
   ============================================================ */

/* --- Design Tokens ---------------------------------------- */
:root {
  --forest: #1b3d2f;
  --forest-mid: #2a5c45;
  --forest-hover: #143022;
  --sage: #4a8c6a;
  --mint: #eaf5ef;
  --mint-deep: #d0eadb;
  --gold: #b8891a;
  --gold-warm: #c49a2a;
  --gold-light: #fef8e8;
  --cream: #fdfaf7;
  --parchment: #f5f0e8;
  --white: #ffffff;
  --ink: #181817;
  --charcoal: #3a3a38;
  --stone: #6a6a65;
  --smoke: #9a9a95;
  --border: #e5e0d8;
  --border-light: #f0ece4;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --section-pad: 96px;
  --section-pad-sm: 64px;
  --container: 1200px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;
  --shadow-sm: 0 2px 8px rgba(27,61,47,0.07);
  --shadow: 0 8px 32px rgba(27,61,47,0.11);
  --shadow-lg: 0 24px 64px rgba(27,61,47,0.15);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base ------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: var(--font-body);
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: clamp(1.05rem, 1.5vw, 1.2rem); }

p {
  color: var(--charcoal);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.75;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--stone);
  line-height: 1.7;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--stone);
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-lg {
  font-size: 1.05rem;
  padding: 16px 36px;
}

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

.btn-primary:hover {
  background: var(--gold-warm);
  border-color: var(--gold-warm);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,137,26,0.32);
}

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

.btn-forest:hover {
  background: var(--forest-hover);
  border-color: var(--forest-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,61,47,0.28);
}

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

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

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

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

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

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

/* --- Header ----------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  height: 80px;
  display: flex;
  align-items: center;
}

.site-header .container {
  max-width: 100%;
  padding: 0 32px;
}

.site-header.scrolled {
  height: 64px;
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(27,61,47,0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  width: 100%;
  gap: 24px;
}

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

.logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.15;
  letter-spacing: -0.01em;
  white-space: nowrap;
}


.logo-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--stone);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--forest);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

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

.nav-ctas .btn {
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 6px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  transition: color var(--transition);
}

.mobile-menu-nav a:hover {
  color: var(--forest);
}

.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 280px;
}

.mobile-menu-ctas .btn {
  width: 100%;
  justify-content: center;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  color: var(--charcoal);
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}

.mobile-menu-close:hover {
  background: var(--mint);
}

@media (max-width: 900px) {
  .nav-links,
  .nav-ctas {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }
}

/* --- Hero Section ----------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: radial-gradient(ellipse at 60% 50%, rgba(234,245,239,0.5) 0%, var(--white) 70%);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: var(--section-pad) 0;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  border: 1px solid rgba(184,137,26,0.2);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-badge .stars {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--ink);
}

.hero h1 em {
  font-style: italic;
  color: var(--forest);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--stone);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-review-note {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-review-note .stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}

.hero-review-note span {
  font-size: 0.85rem;
  color: var(--stone);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-svg-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: calc(var(--section-pad) - 16px) 0;
  }

  .hero-visual {
    display: none;
  }

  .hero-sub {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Trust Bar -------------------------------------------- */
.trust-bar {
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.trust-bar-label {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  padding-right: 28px;
  border-right: 1px solid var(--border);
  margin-right: 28px;
  flex-shrink: 0;
}

.trust-bar-label .stars {
  color: #f59e0b;
  letter-spacing: 1px;
}

.marquee-track {
  display: flex;
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee-scroll 40s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  font-size: 0.87rem;
  color: var(--stone);
  border-right: 1px solid var(--border-light);
}

.marquee-item::before {
  content: '"';
  color: var(--gold);
  font-size: 1.1rem;
}

.marquee-item strong {
  color: var(--charcoal);
  font-weight: 500;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Sections --------------------------------------------- */
section {
  padding: var(--section-pad) 0;
}

.section-cream {
  background: var(--cream);
}

.section-parchment {
  background: var(--parchment);
}

.section-mint {
  background: var(--mint);
}

.section-forest {
  background: var(--forest);
  color: var(--white);
}

.section-forest h2,
.section-forest h3,
.section-forest h4 {
  color: var(--white);
}

.section-forest p,
.section-forest .lead {
  color: rgba(255,255,255,0.75);
}

/* --- Services Grid ---------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--forest);
  border-radius: 0 0 2px 0;
  transition: width var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--mint-deep);
}

.service-card:hover::before {
  width: 100%;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--mint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}

.service-card:hover .service-icon {
  background: var(--mint-deep);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--forest);
}

.service-icon i {
  font-size: 24px;
  color: var(--forest);
}

.service-full-card .service-icon i {
  font-size: 28px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--stone);
  line-height: 1.65;
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}

/* Services Page — Full Cards */
.service-full-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-full-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--sage));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-full-card:hover::after {
  opacity: 1;
}

.service-full-card:hover {
  box-shadow: var(--shadow);
}

.service-full-card .service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.service-full-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.service-full-card p {
  font-size: 0.97rem;
  margin-bottom: 20px;
}

.service-quote {
  background: var(--mint);
  border-left: 3px solid var(--forest);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin-top: 20px;
}

.service-quote p {
  font-size: 0.88rem;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 4px;
}

.service-quote cite {
  font-size: 0.8rem;
  color: var(--stone);
  font-style: normal;
  font-weight: 600;
}

/* --- Process Steps ---------------------------------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--border) 0px,
    var(--border) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--mint-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--forest);
  position: relative;
  transition: all var(--transition);
}

.process-step:hover .step-number {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  transform: scale(1.08);
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.process-step p {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 20px;
    text-align: left;
    padding: 0;
  }

  .process-step .step-number {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
    grid-row: 1 / 3;
    margin: 0;
    align-self: start;
    flex-shrink: 0;
  }

  .process-step h3 {
    align-self: center;
  }

  .process-step p {
    grid-column: 2;
  }
}

/* --- Results / Benefits ----------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  transition: all var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--mint-deep);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--mint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  color: var(--forest);
}

.benefit-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Testimonials ----------------------------------------- */
.testimonials-grid {
  columns: 3;
  column-gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  break-inside: avoid;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--forest);
}

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

.testimonial-card.featured {
  border-color: var(--gold);
}

.testimonial-card.featured::before {
  background: var(--gold);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  display: block;
  margin-bottom: -12px;
  height: 40px;
  overflow: visible;
}

.testimonial-card .review-text {
  font-size: 0.93rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.reviewer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}

.star-rating {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .testimonials-grid {
    columns: 2;
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    columns: 1;
  }
}

/* --- Why Choose Us --------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}

.why-item {
  display: flex;
  gap: 20px;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--mint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  color: var(--forest);
}

.why-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.why-item p {
  font-size: 0.92rem;
  color: var(--stone);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --- Jennie Spotlight ------------------------------------- */
.jennie-section {
  background: var(--parchment);
}

.jennie-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.jennie-content h2 {
  margin-bottom: 20px;
}

.jennie-content .lead {
  margin-bottom: 32px;
}

.jennie-quotes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.jennie-quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
}

.jennie-quote p {
  font-size: 0.93rem;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 8px;
}

.jennie-quote cite {
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--stone);
}

.jennie-quote cite .stars {
  color: #f59e0b;
}

.jennie-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .jennie-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .jennie-visual {
    display: none;
  }
}

/* --- CTA / Contact Strip ---------------------------------- */
.contact-strip {
  background: var(--forest);
}

.contact-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-strip h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.contact-strip .lead {
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.contact-info-text {
  flex: 1;
}

.contact-info-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}

.contact-info-text a,
.contact-info-text span {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  transition: color var(--transition);
}

.contact-info-text a:hover {
  color: var(--gold);
}

.hours-compact {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .contact-strip-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* --- Inline Form ------------------------------------------ */
.inline-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.inline-form h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.inline-form .form-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

/* --- Form Styles ------------------------------------------ */
.form-group {
  margin-bottom: 18px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.inline-form .form-group label {
  color: rgba(255,255,255,0.65);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--ink);
  transition: all var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.inline-form .form-group input,
.inline-form .form-group select,
.inline-form .form-group textarea {
  background: rgba(255,255,255,0.95);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(27,61,47,0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e05252;
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
  border-color: var(--sage);
}

.form-error {
  font-size: 0.78rem;
  color: #e05252;
  margin-top: 4px;
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236a6a65' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.bot-field {
  display: none !important;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: var(--mint);
  border-radius: var(--radius);
  border: 1px solid var(--mint-deep);
}

.form-success.visible {
  display: block;
}

.form-success h3 {
  color: var(--forest);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--stone);
}

/* --- Full Contact Page Form ------------------------------- */
.contact-page-form {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

/* --- Page Hero (inner pages) ----------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--white) 0%, var(--mint) 100%);
  padding: 140px 0 72px;
  border-bottom: 1px solid var(--border-light);
}

.page-hero h1 {
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--stone);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--forest);
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  color: var(--smoke);
  display: inline-block;
}

/* --- Commercial / Residential Split ---------------------- */
.split-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-pane {
  padding: 48px 40px;
}

.split-pane:first-child {
  background: var(--mint);
  border-right: 1px solid var(--mint-deep);
}

.split-pane:last-child {
  background: var(--forest);
}

.split-pane h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.split-pane:last-child h3 {
  color: var(--white);
}

.split-pane:last-child p {
  color: rgba(255,255,255,0.75);
}

.split-pane p {
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .split-callout {
    grid-template-columns: 1fr;
  }

  .split-pane:first-child {
    border-right: none;
    border-bottom: 1px solid var(--mint-deep);
  }
}

/* --- FAQ Accordion --------------------------------------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--mint);
}

.faq-item.open .faq-question {
  background: var(--mint);
}

.faq-question span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  flex: 1;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--forest);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer-inner {
  padding: 0 28px 24px;
}

.faq-answer-inner p {
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.75;
}

/* --- Contact Info Column --------------------------------- */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--mint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--forest);
}

.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stone);
  margin-bottom: 3px;
}

.contact-detail-text a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--transition);
}

.contact-detail-text a:hover {
  color: var(--forest);
}

.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--charcoal);
}

.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  margin-top: 4px;
}

.contact-wa-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.3);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border-light);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 10px 0;
  font-size: 0.92rem;
}

.hours-table td:first-child {
  color: var(--charcoal);
  font-weight: 500;
  width: 55%;
}

.hours-table td:last-child {
  color: var(--forest);
  font-weight: 600;
}

.contact-trust-note {
  background: var(--gold-light);
  border: 1px solid rgba(184,137,26,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.87rem;
  color: var(--gold);
  font-weight: 500;
}

/* --- Map ------------------------------------------------- */
.map-section {
  padding-top: 0;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* --- Two Column Layout ----------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* --- Mini Testimonials Strip ----------------------------- */
.mini-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.mini-testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.mini-testimonial p {
  font-size: 0.88rem;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.65;
}

.mini-testimonial cite {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
  color: var(--stone);
}

.mini-testimonial .star-rating {
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .mini-testimonials {
    grid-template-columns: 1fr;
  }
}

/* --- Footer --------------------------------------------- */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-name {
  font-size: 1.35rem;
  display: block;
  margin-bottom: 6px;
}

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

.footer-brand p {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.7;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--stone);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--forest);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.55;
}

.footer-contact-list a {
  color: var(--stone);
  transition: color var(--transition);
}

.footer-contact-list a:hover {
  color: var(--forest);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--smoke);
}

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

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* --- Floating WhatsApp ----------------------------------- */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 900;
  transition: all var(--transition);
  opacity: 0;
  transform: scale(0.7) translateY(16px);
  pointer-events: none;
}

.floating-wa.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}

.floating-wa:hover {
  background: #1da851;
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}

.floating-wa svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

/* --- Scroll Animations ----------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item:nth-child(1) { transition-delay: 0s; }
.stagger-item:nth-child(2) { transition-delay: 0.08s; }
.stagger-item:nth-child(3) { transition-delay: 0.16s; }
.stagger-item:nth-child(4) { transition-delay: 0.24s; }
.stagger-item:nth-child(5) { transition-delay: 0.32s; }
.stagger-item:nth-child(6) { transition-delay: 0.40s; }

/* --- Utility Classes ------------------------------------- */
.text-center { text-align: center; }
.text-forest { color: var(--forest); }
.text-gold { color: var(--gold); }
.text-stone { color: var(--stone); }
.text-white { color: var(--white); }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --section-pad-sm: 48px;
  }
}
