/* Chippewa Valley Bin Cleaning — Colors sampled from logo */
:root {
  /* "CHIPPEWA VALLEY" text */
  --navy: #1e3344;
  --navy-dark: #152a38;
  /* "BIN CLEANING" text + leaf greens */
  --brand-green: #4a904e;
  --forest: #337a38;
  --forest-dark: #2f6d35;
  --leaf-mid: #5a9e38;
  --lime: #a8cf3c;
  /* Circle sky-to-royal blue gradient */
  --sky: #8ec8ea;
  --royal: #3d85be;
  --royal-deep: #2f75a8;
  /* Tints derived from logo hues */
  --blue-light: #e3f2fa;
  --green-light: #edf5e6;
  --white: #ffffff;
  --gray-50: #f7f9fa;
  --gray-100: #eef2f4;
  --gray-200: #d8e0e6;
  --gray-500: #5a6d7a;
  --gray-700: #2d4554;
  /* Logo gradients */
  --gradient-sky: linear-gradient(180deg, var(--sky) 0%, var(--royal) 55%, var(--royal-deep) 100%);
  --gradient-leaf: linear-gradient(135deg, var(--forest-dark) 0%, var(--leaf-mid) 50%, var(--lime) 100%);
  --gradient-emblem: linear-gradient(160deg, var(--royal-deep) 0%, var(--royal) 35%, var(--sky) 100%);
  --shadow-sm: 0 1px 3px rgba(30, 51, 68, 0.08);
  --shadow-md: 0 4px 20px rgba(30, 51, 68, 0.1);
  --shadow-lg: 0 12px 40px rgba(30, 51, 68, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --transition: 0.25s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient-leaf);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(74, 144, 78, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74, 144, 78, 0.45);
}

.btn-secondary {
  background: var(--royal);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--royal-deep);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 12px;
  padding: 0.25rem 0.5rem;
}

.logo {
  height: 56px;
  width: auto;
  background: var(--white);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: color var(--transition);
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--brand-green);
}
.page-hero {
  padding: 140px 0 3rem;
  background: var(--gray-50);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

/* Services page */
.services-page {
  padding: 3rem 0 5rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.service-detail-header h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.service-detail-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-green);
}

.service-detail-card > p {
  color: var(--gray-700);
  margin-bottom: 1.25rem;
}

.service-detail-card ul {
  margin-bottom: 1.5rem;
}

.service-detail-card li {
  font-size: 0.9375rem;
  color: var(--gray-700);
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-detail-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-green);
  font-weight: 700;
}

.services-page-cta {
  text-align: center;
  margin-top: 3rem;
}

.services-page-cta p {
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.nav-cta {
  background: var(--brand-green) !important;
  color: var(--white) !important;
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
}

.nav-cta:hover {
  background: var(--forest-dark) !important;
}

/* Hero */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-emblem);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1rem;
  max-width: 520px;
}

.hero-areas {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.hero-areas strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-logo-frame {
  background: var(--white);
  border-radius: 28px;
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-100);
}

.hero-logo {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 20px;
  display: block;
  background: var(--white);
}

/* Section shared */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header.light h2,
.section-header.light p {
  color: var(--white);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 0.75rem;
}

.section-header.light .section-tag {
  color: var(--lime);
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

/* Pricing */
.pricing {
  padding: 5rem 0;
  background: var(--gray-50);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.price-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card.featured {
  border-color: var(--brand-green);
  box-shadow: var(--shadow-md);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-leaf);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.price.custom {
  font-size: 2rem;
}

.price-detail {
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
}

.price-note {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.price-card ul {
  flex: 1;
  margin-bottom: 1.5rem;
}

.price-card li {
  font-size: 0.875rem;
  color: var(--gray-700);
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-green);
  font-weight: 700;
}

.price-card .btn {
  width: 100%;
}

/* Stats */
.stats {
  background: var(--gradient-sky);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* About */
.about {
  padding: 5rem 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--gradient-emblem);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.leaf-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--brand-green) 0%, var(--lime) 60%, transparent 70%);
  opacity: 0.5;
  border-radius: 50%;
}

.about-initials {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
  z-index: 1;
}

.about-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.about-content .btn {
  margin-top: 1rem;
}

/* Services */
.services {
  padding: 5rem 0;
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0.5rem;
  overflow: hidden;
}

.service-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.service-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-green);
  transition: color var(--transition);
}

.service-link:hover {
  color: var(--forest-dark);
}

/* Guarantee */
.guarantee {
  padding: 1.5rem 0;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--blue-light) 100%);
  text-align: center;
}

.guarantee h2 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--sky);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial footer {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-green);
}

/* FAQ */
.faq {
  padding: 5rem 0;
  background: var(--gray-50);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brand-green);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: var(--gray-50);
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-700);
  font-size: 0.9375rem;
}

.faq-item a {
  color: var(--brand-green);
  font-weight: 600;
}

.faq-item a:hover {
  color: var(--forest-dark);
}

.faq-cta {
  text-align: center;
}

/* How It Works */
.how-it-works {
  padding: 5rem 0;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--royal-deep) 40%, var(--brand-green) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--gradient-leaf);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.step p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Contact */
.contact {
  padding: 5rem 0;
}

.contact-form-only {
  max-width: 560px;
  margin: 0 auto;
}

.contact-form-only .contact-form {
  width: 100%;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--gray-700);
  margin-bottom: 2rem;
}

.contact-details li {
  margin-bottom: 1.25rem;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: var(--brand-green);
  font-weight: 600;
  font-size: 1.0625rem;
  transition: color var(--transition);
}

.contact-details a:hover {
  color: var(--forest-dark);
}

.contact-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(142, 200, 234, 0.35);
}

.form-row textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.25rem;
}

.footer-links a,
.footer-contact a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-areas {
  margin-top: 0.5rem;
  font-size: 0.75rem !important;
}

/* Responsive */
.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .pricing-grid,
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner,
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-image {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: block;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .pricing-grid,
  .pricing-grid-4,
  .services-grid,
  .testimonials-grid,
  .steps-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
