/* ============================================================
   603 Junk Removal Teens — Stylesheet
   Color palette:
     Green:      #2d8a4e
     Dark green:  #1e6038
     Navy:        #1a2340
     Light navy:  #253060
     White:       #ffffff
     Off-white:   #f7f8fc
     Gray:        #6b7280
     Light gray:  #e5e7eb
     Alt section: #f8f9fa
   ============================================================ */

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1a2340;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: 5rem;
}

.section--dark {
  background: #1a2340;
  color: #ffffff;
}

.section--green {
  background: #2d8a4e;
  color: #ffffff;
}

.section--alt {
  background: #f8f9fa;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2d8a4e;
  background: #e8f5ee;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.section-label--light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.65;
}

.section-header--light .section-title,
.section-header--light .section-desc {
  color: #ffffff;
}

.section-header--light .section-desc {
  opacity: 0.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: #2d8a4e;
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(45, 138, 78, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #1e6038;
  box-shadow: 0 4px 20px rgba(45, 138, 78, 0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-outline-white:hover,
.btn-outline-white:focus-visible {
  background: #ffffff;
  color: #2d8a4e;
}

.btn-outline-google {
  background: transparent;
  color: #1a2340;
  border: 2px solid #e5e7eb;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}

.btn-outline-google:hover,
.btn-outline-google:focus-visible {
  border-color: #4285F4;
  color: #4285F4;
  background: rgba(66, 133, 244, 0.05);
  transform: translateY(-1px);
}

.btn-white {
  background: #ffffff;
  color: #2d8a4e;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.btn-white:hover,
.btn-white:focus-visible {
  background: #f0f9f4;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

.btn-nav {
  background: #2d8a4e;
  color: #ffffff;
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(45, 138, 78, 0.3);
}

.btn-nav:hover {
  background: #1e6038;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.05rem;
}

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

/* ===== NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1a2340;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  transition: box-shadow 0.25s ease;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.logo-text {
  color: #ffffff;
}

.logo-text strong {
  color: #4eca73;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: 0.35rem;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-phone {
  flex-shrink: 0;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #4eca73;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.15s;
}

.phone-link:hover {
  color: #ffffff;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1a2340 0%, #253060 55%, #1e4d30 100%);
  color: #ffffff;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(45, 138, 78, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(26, 35, 64, 0.8) 0%, transparent 60%);
  pointer-events: none;
}

/* Decorative background pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    );
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 4rem;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  background: rgba(45, 138, 78, 0.25);
  border: 1px solid rgba(78, 202, 115, 0.4);
  color: #4eca73;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.accent {
  color: #4eca73;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.hero-urgency {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #4eca73;
  background: rgba(45, 138, 78, 0.18);
  border: 1px solid rgba(78, 202, 115, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}

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

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.trust-item svg {
  flex-shrink: 0;
  color: #4eca73;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  animation: bounce 2.2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== TRUST BADGES SECTION ===== */
.trust-badges-section {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding-block: 1.5rem;
}

.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a2340;
  background: #f7f8fc;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  white-space: nowrap;
}

.trust-badge-icon {
  display: flex;
  align-items: center;
  color: #2d8a4e;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
  background: #f7f8fc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 2px 8px rgba(26, 35, 64, 0.05);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 35, 64, 0.1);
  border-color: #2d8a4e;
}

.service-card--highlight {
  background: linear-gradient(135deg, #2d8a4e 0%, #1e6038 100%);
  color: #ffffff;
  border-color: transparent;
}

.service-card--highlight:hover {
  box-shadow: 0 12px 40px rgba(45, 138, 78, 0.35);
  border-color: transparent;
}

.service-card--highlight p {
  opacity: 0.9;
}

.service-icon {
  width: 48px;
  height: 48px;
  padding: 0.65rem;
  background: #e8f5ee;
  border-radius: 0.65rem;
  color: #2d8a4e;
  flex-shrink: 0;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card--highlight .service-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2340;
  line-height: 1.3;
}

.service-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.service-card h3 a:hover {
  color: #2d8a4e;
}

.service-card--highlight h3 {
  color: #ffffff;
}

.service-card p {
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.65;
  flex: 1;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: #ffffff;
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  margin-bottom: 3rem;
}

.step-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  flex: 1;
  max-width: 320px;
  box-shadow: 0 2px 12px rgba(26, 35, 64, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26, 35, 64, 0.1);
}

.step-divider {
  color: #2d8a4e;
  padding: 0 0.5rem;
  flex-shrink: 0;
  opacity: 0.5;
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2d8a4e, #1e6038);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 14px rgba(45, 138, 78, 0.35);
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.step-card p {
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.65;
}

.step-card p a {
  color: #2d8a4e;
  font-weight: 600;
}

.steps-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.steps-cta-note {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d8a4e;
  letter-spacing: 0.02em;
}

/* ===== SERVICE DETAIL SECTIONS ===== */
.service-detail {
  background: #ffffff;
}

.service-detail.section--alt {
  background: #f8f9fa;
}

.service-detail-inner {
  max-width: 860px;
  margin: 0 auto;
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-detail-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #1a2340;
  line-height: 1.2;
  margin-top: 0.25rem;
}

.service-detail-content p {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.75;
}

.service-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-block: 0.5rem;
}

.service-detail-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1rem;
  color: #374151;
  font-weight: 500;
}

.service-detail-list li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #e8f5ee;
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232d8a4e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(78, 202, 115, 0.4);
}

.why-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #4eca73;
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.85rem;
  letter-spacing: -0.04em;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.65rem;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

/* ===== GOOGLE REVIEWS SECTION ===== */
.reviews {
  background: #ffffff;
}

.google-reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.google-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.g-blue  { color: #4285F4; }
.g-red   { color: #EA4335; }
.g-yellow{ color: #FBBC05; }
.g-green { color: #34A853; }

.overall-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  justify-content: center;
}

.overall-stars {
  font-size: 1.2rem;
  color: #f59e0b;
}

.overall-score {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a2340;
}

.overall-count {
  font-size: 0.85rem;
  color: #6b7280;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: #f7f8fc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(26, 35, 64, 0.05);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26, 35, 64, 0.08);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d8a4e, #1a2340);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a2340;
  font-style: normal;
  display: block;
}

.review-location {
  font-size: 0.8rem;
  color: #6b7280;
}

.review-google-badge {
  margin-left: auto;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}

.stars {
  font-size: 1.1rem;
  color: #f59e0b;
  letter-spacing: 0.05em;
}

.review-card p {
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

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

/* ===== QUOTE FORM ===== */
.quote-section {
  background: linear-gradient(135deg, #2d8a4e 0%, #1a5e38 100%);
}

.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.quote-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.quote-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.quote-promises {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.quote-promises li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.quote-promises svg {
  flex-shrink: 0;
  color: #a3e5bc;
}

.quote-contact-quick p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.6rem;
}

/* ===== FORM ===== */
.quote-form {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.required {
  color: #ef4444;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1a2340;
  background: #f9fafb;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  outline: none;
  width: 100%;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #2d8a4e;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(45, 138, 78, 0.15);
}

.form-group input.input-error,
.form-group textarea.input-error,
.form-group select.input-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

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

.field-error {
  font-size: 0.78rem;
  color: #ef4444;
  font-weight: 500;
  min-height: 1rem;
  display: block;
}

.form-message {
  padding: 0;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.form-message.success {
  padding: 1rem;
  background: #ecfdf5;
  border: 1.5px solid #34d399;
  color: #065f46;
}

.form-message.error {
  padding: 1rem;
  background: #fef2f2;
  border: 1.5px solid #f87171;
  color: #991b1b;
}

/* ===== CONTACT ===== */
.contact {
  background: #f7f8fc;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(26, 35, 64, 0.05);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(26, 35, 64, 0.1);
}

.contact-icon {
  width: 56px;
  height: 56px;
  padding: 0.85rem;
  background: #e8f5ee;
  border-radius: 50%;
  color: #2d8a4e;
  margin-bottom: 0.5rem;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2340;
}

.contact-card a {
  color: #2d8a4e;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.15s;
  word-break: break-all;
}

.contact-card a:hover {
  color: #1e6038;
  text-decoration: underline;
}

.contact-card p {
  font-size: 0.875rem;
  color: #6b7280;
}

/* ===== SERVICE AREA LINKS ===== */
.service-area-links {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(26, 35, 64, 0.05);
}

.service-area-links h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 1.25rem;
  text-align: center;
}

.area-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.area-links-grid a,
.area-links-grid span {
  font-size: 0.875rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #f7f8fc;
  border: 1px solid #e5e7eb;
  color: #374151;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.area-links-grid a {
  color: #2d8a4e;
  font-weight: 600;
}

.area-links-grid a:hover {
  background: #e8f5ee;
  border-color: #2d8a4e;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1a2340;
  color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-block: 4rem;
}

.footer-brand .logo-text {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 260px;
}

.site-footer h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 1.1rem;
}

.footer-links ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a,
.footer-services li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #4eca73;
}

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}

.footer-contact a:hover {
  color: #4eca73;
}

.footer-area-links {
  margin-top: 1.5rem;
}

.footer-area-links h4 {
  margin-bottom: 0.6rem;
}

.footer-area-links p {
  font-size: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 1.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ===== FLOATING CALL BUTTON (mobile only) ===== */
.floating-call-btn {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: #2d8a4e;
  color: #ffffff;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 6px 24px rgba(45, 138, 78, 0.55);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
  animation: floatIn 0.4s ease forwards;
}

.floating-call-btn:hover,
.floating-call-btn:focus-visible {
  background: #1e6038;
  box-shadow: 0 8px 32px rgba(45, 138, 78, 0.65);
  transform: translateX(-50%) translateY(-2px);
}

@keyframes floatIn {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Service area page styles */
.service-area-page-hero {
  background: linear-gradient(135deg, #1a2340 0%, #253060 55%, #1e4d30 100%);
  color: #ffffff;
  padding-block: 5rem;
  position: relative;
  overflow: hidden;
}

.service-area-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(45, 138, 78, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.service-area-page-hero .container {
  position: relative;
  z-index: 1;
}

.service-area-page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.service-area-page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.area-page-content {
  padding-block: 4rem;
}

.area-page-content h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #1a2340;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.area-page-content p {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 720px;
}

.area-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-block: 1.5rem;
}

.area-services-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1rem;
  color: #374151;
  font-weight: 500;
}

.area-services-list li::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #e8f5ee;
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232d8a4e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.area-page-links {
  padding-block: 3rem;
  background: #f7f8fc;
  border-top: 1px solid #e5e7eb;
}

.area-page-links h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 1rem;
}

.area-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.area-links-row a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d8a4e;
  background: #ffffff;
  border: 1.5px solid #2d8a4e;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}

.area-links-row a:hover {
  background: #2d8a4e;
  color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .quote-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .steps-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }

  .step-card {
    max-width: 100%;
  }

  .step-divider {
    transform: rotate(90deg);
    align-self: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding-block: 3.5rem;
  }

  /* Nav mobile */
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #1a2340;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1rem;
  }

  .nav-links li:last-child a {
    border-bottom: none;
    margin-top: 0.5rem;
    text-align: center;
  }

  .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .nav-logo {
    margin-right: auto;
  }

  /* Hero */
  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding-block: 3.5rem 5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-trust {
    gap: 0.85rem 1.5rem;
  }

  /* Trust badges */
  .trust-badges-row {
    gap: 0.5rem;
  }

  .trust-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
  }

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

  /* Why us */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 1.75rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 3rem;
  }

  /* Floating call button: show on mobile */
  .floating-call-btn {
    display: inline-flex;
  }

  /* Add bottom padding to body so content isn't hidden behind floating btn */
  body {
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-block: 3rem 5rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .btn-lg {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .quote-form {
    padding: 1.25rem;
  }

  .trust-badges-row {
    gap: 0.4rem;
  }

  .trust-badge {
    font-size: 0.75rem;
  }
}

/* ===== FOCUS STYLES (ACCESSIBILITY) ===== */
:focus-visible {
  outline: 2px solid #2d8a4e;
  outline-offset: 3px;
  border-radius: 3px;
}

/* ===== SCROLL ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
