/* ==========================================================================
   HOME CLEAN OUT REMOVAL SERVICES - MAIN STYLESHEET
   Mobile-First, High-Performance, Core Web Vitals Optimized
   ========================================================================== */

:root {
  --primary: #15803d;         /* Forest Green - Eco & Trust */
  --primary-hover: #166534;
  --primary-light: #dcfce7;
  --accent: #f59e0b;          /* Vibrant Amber / Action Callout */
  --accent-hover: #d97706;
  --dark: #0f172a;            /* Slate 900 */
  --dark-light: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-300: #cbd5e1;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Base Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--dark);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.25rem); margin-bottom: 16px; }
h2 { font-size: clamp(1.6rem, 3vw + 0.5rem, 2.3rem); margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
p { margin-bottom: 16px; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--primary-hover); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  touch-action: manipulation;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(21, 128, 61, 0.3);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--dark);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}
.btn-accent:hover {
  background-color: var(--accent-hover);
  color: var(--dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-300);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.top-notice-bar {
  background-color: var(--dark);
  color: var(--white);
  font-size: 0.82rem;
  padding: 8px 0;
  font-weight: 500;
}
.top-notice-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-notice-left, .top-notice-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-notice-bar a {
  color: #93c5fd;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.brand-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.brand-name span.highlight {
  color: var(--primary);
}
.brand-tagline {
  font-size: 0.72rem;
  color: var(--gray-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 0;
  position: relative;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary);
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.phone-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e;
}
.header-call-btn {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-call-btn:hover { color: var(--primary); }

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 48px 0 56px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid #edf2f7;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-badges-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}
.hero-badge-item {
  display: flex;
  flex-direction: column;
}
.hero-badge-item strong {
  font-size: 0.9rem;
  color: var(--dark);
}
.hero-badge-item span {
  font-size: 0.78rem;
  color: var(--gray-600);
}

/* Quote Box / Card */
.quote-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid #e2e8f0;
}
.quote-card h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.quote-card p.sub {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.15);
}
.form-submit-btn {
  width: 100%;
  margin-top: 8px;
}

/* ==========================================================================
   QUANTIFIED PROOF MATRIX
   ========================================================================== */
.stats-section {
  padding: 36px 0;
  background-color: var(--primary);
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item .stat-number {
  font-size: 2.25rem;
  font-weight: 900;
  display: block;
  color: #fef08a; /* Soft Yellow */
}
.stat-item .stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.95;
}

/* ==========================================================================
   SERVICES GRID (KEYWORD SILOS)
   ========================================================================== */
.section-padding {
  padding: 64px 0;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: inline-block;
}
.service-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  flex-grow: 1;
}
.service-link {
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
}

/* ==========================================================================
   HOW IT WORKS & TRUST
   ========================================================================== */
.how-it-works-section {
  background-color: var(--gray-50);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
}
.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* ==========================================================================
   LOCAL REVIEWS / TESTIMONIALS
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px;
}
.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.review-text {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gray-700);
  margin-bottom: 16px;
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.reviewer-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.reviewer-geo {
  font-size: 0.78rem;
  color: var(--gray-600);
}

/* ==========================================================================
   BOTTOM CTA BAR
   ========================================================================== */
.bottom-cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  color: var(--white);
  text-align: center;
  padding: 56px 0;
}
.bottom-cta-banner h2 {
  color: var(--white);
}
.bottom-cta-banner p {
  max-width: 600px;
  margin: 0 auto 28px;
  opacity: 0.9;
  font-size: 1.1rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #0b1120;
  color: #94a3b8;
  padding: 56px 0 24px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  color: #94a3b8;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}

/* ==========================================================================
   MOBILE STICKY CALL BAR (< 768px)
   ========================================================================== */
.mobile-sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid #e2e8f0;
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}
.mobile-call-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, #166534 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
}
.mobile-call-action-btn svg {
  stroke: var(--white);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .services-grid, .steps-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body { padding-bottom: 74px !important; }
  .mobile-sticky-call-bar { display: block; }
  .header-phone-cta { display: none; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid #e2e8f0;
    padding: 20px;
    box-shadow: var(--shadow-md);
  }
  .main-nav.active { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 14px; }
  .mobile-nav-toggle { display: block; }
  .services-grid, .steps-grid, .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badges-row { grid-template-columns: 1fr; }
  .top-notice-bar { display: none; }
}
