/* ===========================
   Welland Junk Pros — Styles
   =========================== */

:root {
  --primary: #e84c0e;
  --primary-dark: #c43e0c;
  --dark: #1a1a1a;
  --text: #2d2d2d;
  --muted: #666;
  --border: #e0e0e0;
  --bg-light: #f8f7f5;
  --bg-dark: #1e1e1e;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-size: 16px;
  transition: background 0.2s, transform 0.1s;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-header {
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  padding: 10px 20px;
}

.btn-large {
  font-size: 18px;
  padding: 16px 32px;
}

.btn-submit {
  width: 100%;
  font-size: 18px;
  padding: 16px;
  margin-top: 8px;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
}

.logo-mark {
  color: var(--primary);
  font-size: 22px;
}

/* Hero */
.hero {
  background: var(--bg-dark);
  color: var(--white);
  padding: 80px 0 72px;
}

.hero-eyebrow {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: #ccc;
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* Sections */
section {
  padding: 72px 0;
}

section h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
}

.section-sub {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 40px;
}

/* Services Grid */
.services {
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.service-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
}

/* How It Works */
.how-it-works {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.step {
  text-align: center;
  padding: 24px;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.step p {
  color: var(--muted);
}

/* Reviews */
.reviews {
  background: var(--bg-light);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.stars {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-card p {
  color: var(--text);
  font-style: italic;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
}

.reviewer {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* Pricing */
.pricing {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.price-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.price-card.featured {
  border-color: var(--primary);
}

.featured-label {
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 12px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.price-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}

.price-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 24px;
}

/* Service Area */
.service-area {
  background: var(--bg-light);
}

.service-area p {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 24px;
  font-size: 16px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

/* Quote Form */
.quote-form {
  background: var(--primary);
  color: var(--white);
}

.quote-form h2 {
  color: var(--white);
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-copy p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 28px;
}

.form-assurances {
  list-style: none;
  padding: 0;
}

.form-assurances li {
  color: rgba(255,255,255,0.9);
  padding: 6px 0;
  font-size: 16px;
}

.lead-form {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.15);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-privacy {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: #aaa;
  padding: 48px 0 32px;
}

.footer-content {
  margin-bottom: 24px;
}

.footer-content .logo-text {
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}

.footer-content .logo-mark {
  color: var(--primary);
  font-size: 22px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-content p {
  font-size: 14px;
  color: #888;
  margin-bottom: 6px;
  max-width: 400px;
}

.footer-hours {
  font-size: 14px;
  color: #777;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-legal {
  font-size: 13px;
  color: #555;
  border-top: 1px solid #2a2a2a;
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero {
    padding: 56px 0 48px;
  }

  .pricing-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

  section {
    padding: 48px 0;
  }
}

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

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