/* ============================================
   HM Demo and Hauling - Main Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1a1a2e;
  --secondary: #e77d11;
  --accent: #16213e;
  --light: #f5f5f5;
  --white: #ffffff;
  --green: #2d6a4f;
  --text: #333333;
  --text-light: #666666;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
  --radius: 8px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #c56a0a;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', Impact, sans-serif;
  color: var(--primary);
  line-height: 1.2;
}

h1 { font-size: 2.8rem; font-weight: 700; text-transform: uppercase; }
h2 { font-size: 2.2rem; font-weight: 700; text-transform: uppercase; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-orange { color: var(--secondary); }
.bg-dark { background: var(--primary); color: var(--white); }
.bg-light { background: var(--light); }
.bg-accent { background: var(--accent); color: var(--white); }

/* Pages without a hero need offset for the fixed navbar */
.page-main {
  padding-top: 70px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background: #c56a0a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.25rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--primary);
  box-shadow: var(--shadow);
  transition: background var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 50px;
  filter: brightness(1.3);
}

.nav-logo-text {
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}

.nav-logo-text span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary) !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  overflow: hidden;
  padding-top: 70px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('../images/junk-pile-before-cleanup.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.hero h1 span {
  color: var(--secondary);
}

.hero-tagline {
  color: rgba(255,255,255,0.9);
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 300;
}

.hero-price {
  color: var(--secondary);
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-badge {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge i {
  color: var(--secondary);
  font-size: 1.2rem;
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-top: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--secondary);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.service-price {
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: 600;
}

/* --- Pricing Section --- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table thead {
  background: var(--primary);
  color: var(--white);
}

.pricing-table th,
.pricing-table td {
  padding: 15px 20px;
  text-align: left;
}

.pricing-table th {
  font-family: 'Oswald', Impact, sans-serif;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.pricing-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background var(--transition);
}

.pricing-table tbody tr:hover {
  background: var(--light);
}

.pricing-table .price {
  font-family: 'Oswald', Impact, sans-serif;
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.1rem;
}

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-card {
  text-align: center;
  padding: 30px 20px;
}

.why-card i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.why-card h3 {
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-light);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, #c56a0a 100%);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* --- Quote Form --- */
.quote-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Oswald', Impact, sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: var(--radius);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--light);
  min-height: 400px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 15px;
  padding-top: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

.testimonial-stars {
  color: var(--secondary);
  margin-bottom: 5px;
}

/* --- Price Estimator --- */
.estimator-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}

.estimator-form-col {
  min-width: 0;
}

.estimator-result-col {
  position: sticky;
  top: 90px;
}

.estimator-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.estimator-section {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.estimator-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.estimator-section h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-hint {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 15px;
  margin-left: 42px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.item-category {
  margin-bottom: 18px;
}

.item-category h4 {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 10px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  text-transform: none;
}

.item-category h4 i {
  color: var(--secondary);
  width: 20px;
  text-align: center;
  margin-right: 5px;
}

.item-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.item-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.88rem;
  transition: all var(--transition);
  user-select: none;
}

.item-chip i {
  color: var(--text-light);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.item-chip:hover {
  border-color: var(--secondary);
  background: #fff8f2;
}

.item-chip:has(input:checked) {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.item-chip:has(input:checked) i {
  color: var(--white);
}

.item-chip input {
  display: none;
}

/* Load options */
.load-options {
  margin-top: 10px;
}

.load-options h4 {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  text-transform: none;
}

.load-options h4 i {
  color: var(--secondary);
  margin-right: 5px;
}

.load-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.load-option {
  cursor: pointer;
}

.load-option input {
  display: none;
}

.load-box {
  display: block;
  position: relative;
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  transition: all var(--transition);
  overflow: hidden;
}

.load-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--secondary);
  transition: width 0.4s ease;
}

.load-option:hover .load-box {
  border-color: var(--secondary);
}

.load-option input:checked + .load-box {
  border-color: var(--secondary);
  background: #fff8f2;
}

.load-option input:checked + .load-box .load-fill {
  height: 100%;
  opacity: 0.1;
}

.load-label {
  display: block;
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  position: relative;
}

.load-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  position: relative;
}

.load-price {
  display: block;
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: 700;
  margin-top: 4px;
  position: relative;
}

.estimator-select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--transition);
}

.estimator-select:focus {
  outline: none;
  border-color: var(--secondary);
}

/* Estimate result panel */
.estimate-result {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.estimate-label {
  font-family: 'Oswald', Impact, sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 5px;
}

.estimate-price {
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 5px;
  transition: transform 0.2s ease;
}

.estimate-price.bounce {
  transform: scale(1.08);
}

.estimate-range {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 15px;
}

/* Truck fill indicator */
.truck-fill-wrap {
  margin: 15px 0;
}

.truck-fill-bar {
  height: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 4px;
}

.truck-fill-level {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--secondary));
  border-radius: 6px;
  transition: width 0.5s ease;
  min-width: 0;
}

.truck-fill-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Itemized breakdown */
.estimate-breakdown {
  margin: 15px 0;
  text-align: left;
  max-height: 200px;
  overflow-y: auto;
}

.breakdown-empty {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  font-style: italic;
  padding: 10px 0;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
}

.breakdown-item-name {
  color: rgba(255,255,255,0.7);
}

.breakdown-item-price {
  color: var(--secondary);
  font-weight: 600;
}

.breakdown-includes {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-style: italic;
}

.estimate-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 10px 0 15px;
}

.estimate-actions {
  margin-top: 5px;
}

@media (max-width: 992px) {
  .estimator-layout {
    grid-template-columns: 1fr;
  }

  .estimator-result-col {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .estimator-form {
    padding: 20px;
  }

  .estimate-price {
    font-size: 2.5rem;
  }

  .item-chip {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .load-grid {
    grid-template-columns: 1fr 1fr;
  }

  .step-hint {
    margin-left: 0;
  }
}

/* --- Mode Toggle --- */
.mode-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid #e0e0e0;
}

.mode-btn {
  flex: 1;
  padding: 12px 16px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mode-btn.active {
  background: var(--secondary);
  color: var(--white);
}

.mode-btn:not(.active):hover {
  background: var(--light);
}

/* --- Space Mode --- */
.space-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.space-option {
  cursor: pointer;
}

.space-option input {
  display: none;
}

.space-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 15px;
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.space-box i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.space-box strong {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 4px;
}

.space-box span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.space-option:hover .space-box {
  border-color: var(--secondary);
}

.space-option input:checked + .space-box {
  border-color: var(--secondary);
  background: #fff8f2;
  box-shadow: 0 0 0 1px var(--secondary);
}

/* --- Inline Material Icons --- */
.mi {
  width: 16px;
  height: 16px;
  fill: var(--text-light);
  flex-shrink: 0;
  transition: fill var(--transition);
}

.item-chip:has(input:checked) .mi,
.item-chip.chip-selected .mi {
  fill: var(--white);
}

/* --- Location Chips --- */
.loc-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.88rem;
  transition: all var(--transition);
  user-select: none;
}

.loc-chip i {
  color: var(--text-light);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.loc-chip input {
  display: none;
}

.loc-chip:hover {
  border-color: var(--secondary);
}

.loc-chip:has(input:checked) {
  border-color: var(--primary);
  background: var(--light);
  font-weight: 600;
}

.loc-chip:has(input:checked) i {
  color: var(--secondary);
}

/* --- Chip Quantity Controls --- */
.item-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.88rem;
  transition: all var(--transition);
  user-select: none;
  position: relative;
}

.item-chip i {
  color: var(--text-light);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.item-chip:hover {
  border-color: var(--secondary);
  background: #fff8f2;
}

.item-chip[data-qty="0"] .chip-qty {
  display: none;
}

.item-chip:not([data-qty="0"]) {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  padding-right: 8px;
}

.item-chip:not([data-qty="0"]) i {
  color: var(--white);
}

.chip-label {
  flex: 1;
}

.chip-qty {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 4px;
}

.chip-minus, .chip-plus {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.chip-minus:hover, .chip-plus:hover {
  background: rgba(255,255,255,0.3);
}

.chip-count {
  min-width: 18px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
}

/* --- Similar Jobs --- */
.similar-job {
  background: rgba(231, 125, 17, 0.15);
  border: 1px solid rgba(231, 125, 17, 0.3);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin: 10px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  text-align: left;
}

.similar-job i {
  margin-right: 5px;
  color: var(--secondary);
}

/* --- Share Estimate --- */
.share-estimate {
  margin: 8px 0;
}

.share-link-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.5);
  padding: 8px 14px;
  font-size: 0.8rem;
  cursor: pointer;
  width: 100%;
  transition: all var(--transition);
  font-family: 'Open Sans', Arial, sans-serif;
}

.share-link-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.share-link-btn.copied {
  border-color: var(--green);
  color: var(--green);
}

/* --- Book Form --- */
.book-details {
  width: 100%;
}

.book-details[open] summary {
  margin-bottom: 12px;
  background: rgba(255,255,255,0.1);
  border-color: var(--secondary);
  color: var(--secondary);
}

.book-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.book-input {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.9rem;
}

.book-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.book-input:focus {
  outline: none;
  border-color: var(--secondary);
}

.book-time-options {
  display: flex;
  gap: 8px;
}

.book-time {
  flex: 1;
  text-align: center;
  padding: 8px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all var(--transition);
}

.book-time:has(input:checked) {
  border-color: var(--secondary);
  color: var(--secondary);
  background: rgba(231, 125, 17, 0.1);
}

.book-time input {
  display: none;
}

/* --- Sticky Price Bar --- */
.sticky-price-bar {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--primary);
  padding: 10px 20px;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  justify-content: space-between;
  align-items: center;
}

.sticky-price-bar.visible {
  display: flex;
}

.sticky-price-text {
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
}

.sticky-price-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sticky-price-link:hover {
  color: var(--secondary);
}

@media (min-width: 993px) {
  .sticky-price-bar {
    display: none !important;
  }
}

/* --- Preset Buttons --- */
.presets-wrap {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
}

.presets-wrap h4 {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 10px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  text-transform: none;
}

.presets-wrap h4 i {
  color: var(--secondary);
  margin-right: 5px;
}

.preset-btn {
  padding: 8px 14px;
  background: var(--white);
  border: 2px dashed #ccc;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.85rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  transition: all var(--transition);
}

.preset-btn:hover {
  border-color: var(--secondary);
  border-style: solid;
  color: var(--secondary);
  background: #fff8f2;
}

.preset-btn[data-preset="clear-all"] {
  border-color: #dc3545;
  color: #dc3545;
}

.preset-btn[data-preset="clear-all"]:hover {
  background: #dc3545;
  color: white;
  border-style: solid;
}

/* --- Estimate Tip --- */
.estimate-tip {
  background: rgba(45, 106, 79, 0.2);
  border: 1px solid rgba(45, 106, 79, 0.4);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin: 12px 0;
  font-size: 0.82rem;
  color: #8fd4b4;
  text-align: left;
}

.estimate-tip i {
  margin-right: 5px;
  color: var(--green);
}

/* --- Send Estimate --- */
.send-estimate {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.send-phone {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.95rem;
  margin-bottom: 8px;
  transition: border-color var(--transition);
}

.send-phone::placeholder {
  color: rgba(255,255,255,0.3);
}

.send-phone:focus {
  outline: none;
  border-color: var(--secondary);
}

/* --- Quantity Controls --- */
.qty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.qty-row span {
  font-size: 0.95rem;
  color: var(--text);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 5px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: 2px solid #ddd;
  border-radius: 50%;
  background: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--primary);
}

.qty-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.qty-input {
  width: 40px;
  text-align: center;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* --- What We Take --- */
.take-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.take-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.take-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.take-card h3 i {
  margin-right: 8px;
}

.take-yes h3 i {
  color: var(--green);
}

.take-no h3 i {
  color: #dc3545;
}

.take-card ul {
  list-style: none;
  padding: 0;
}

.take-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  color: var(--text-light);
}

.take-card ul li:last-child {
  border-bottom: none;
}

.take-note {
  margin-top: 20px;
  font-style: italic;
  color: var(--text-light);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .take-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-caption {
  background: var(--white);
  padding: 12px 15px;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

/* --- Service Areas --- */
.areas-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px 30px;
  list-style: none;
}

.areas-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 8px;
}

.areas-list li i {
  color: var(--secondary);
}

/* --- Footer --- */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer h4 {
  color: var(--white);
  font-family: 'Oswald', Impact, sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-about p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-contact li {
  list-style: none;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--secondary);
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  h1 { font-size: 2.2rem; }
  .hero h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--primary);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero h1 { font-size: 2.2rem; }
  .hero-tagline { font-size: 1.1rem; }
  .hero-price { font-size: 1.4rem; }

  .hero-badges {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .section {
    padding: 50px 0;
  }

  .quote-form {
    padding: 25px;
  }
}

/* --- FAQ Section --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 25px;
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.faq-item summary:hover {
  background: var(--light);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 700;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 25px 18px;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #c56a0a;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 70px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* --- Sticky Mobile Call Button --- */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--secondary);
  color: var(--white);
  text-align: center;
  padding: 16px;
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.mobile-call-btn:hover {
  background: #c56a0a;
  color: var(--white);
}

.mobile-call-btn i {
  margin-right: 8px;
}

@media (max-width: 768px) {
  .mobile-call-btn {
    display: block;
  }

  body {
    padding-bottom: 56px;
  }

  /* Move back-to-top above the call button */
  .back-to-top {
    bottom: 70px;
  }

  /* Pricing table font size */
  .pricing-table th,
  .pricing-table td {
    padding: 10px 8px;
    font-size: 0.85rem;
  }

  .pricing-table .price {
    font-size: 1rem;
  }

  /* Estimator chips smaller on mobile */
  .item-chip {
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  /* Estimate result */
  .estimate-result {
    padding: 25px 15px;
  }

  .estimate-price {
    font-size: 2.5rem;
  }

  /* Gallery 2 columns on tablet */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* FAQ padding */
  .faq-item summary {
    padding: 15px 18px;
    font-size: 1rem;
  }

  .faq-item p {
    padding: 0 18px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.6rem; }
  .hero h1 { font-size: 1.8rem; }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg {
    padding: 14px 30px;
    font-size: 1.1rem;
  }

  /* Gallery single column on small phones */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* CTA banner buttons stack */
  .cta-banner .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* About stats smaller */
  .stat-number {
    font-size: 1.8rem;
  }
}

/* ============================================================
   ESTIMATOR TABS — Quick / Detailed toggle
   ============================================================ */
.est-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--primary);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.est-tab {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: var(--white);
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.est-tab:hover {
  background: var(--light);
}

.est-tab-active {
  background: var(--primary);
  color: var(--white);
}

.est-tab-active i {
  color: var(--secondary);
}

/* ============================================================
   TRUCK BED VISUAL — clickable fill segments
   ============================================================ */
.truck-bed-wrap {
  display: flex;
  align-items: stretch;
  margin-bottom: 4px;
}

.truck-bed {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 3px solid #d0d0d0;
  border-right: none;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  min-height: 90px;
}

.truck-seg {
  position: relative;
  text-align: center;
  cursor: pointer;
  border-right: 2px solid rgba(0,0,0,0.08);
  transition: all 0.25s;
  background: #f5f5f5;
  padding: 18px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
  z-index: 1;
}

.truck-seg:last-child {
  border-right: none;
}

.seg-fill {
  position: absolute;
  inset: 0;
  background: var(--secondary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.truck-seg.filled .seg-fill {
  transform: scaleY(1);
}

.truck-seg.active .seg-fill {
  background: #d06b0d;
  transform: scaleY(1);
}

.truck-seg:hover:not(.filled):not(.active) {
  background: #fff3e6;
}

.seg-label {
  display: block;
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.25s;
  position: relative;
}

.seg-price {
  display: block;
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
  transition: color 0.25s;
  position: relative;
}

.truck-seg.filled .seg-label,
.truck-seg.filled .seg-price,
.truck-seg.active .seg-label,
.truck-seg.active .seg-price {
  color: var(--white);
}

.truck-cab {
  width: 52px;
  background: var(--primary);
  border-radius: 0 10px 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1.3rem;
  border: 3px solid var(--primary);
  flex-shrink: 0;
}

.truck-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 6px 0 0;
  min-height: 1.2em;
}

/* ============================================================
   SPECIAL ITEMS — disposal surcharge rows
   ============================================================ */
.special-items {
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
}

.special-row {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  transition: background 0.15s;
}

.special-row:last-child {
  border-bottom: none;
}

.special-row:hover {
  background: #fafafa;
}

.special-row.has-qty {
  background: #fff8f2;
}

.special-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.special-info i,
.special-info .mi {
  color: var(--secondary);
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.special-info .mi {
  height: 18px;
  fill: var(--secondary);
}

.special-name {
  font-size: 0.9rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.special-price-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-right: 14px;
  min-width: 55px;
  text-align: right;
  flex-shrink: 0;
}

.special-qty {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.special-qty button {
  width: 30px;
  height: 30px;
  border: 2px solid #ddd;
  border-radius: 50%;
  background: var(--white);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  padding: 0;
  line-height: 1;
}

.special-qty button:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.sq-count {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 22px;
  text-align: center;
  color: var(--primary);
}

/* "Need more detail?" link */
.detailed-link {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 16px;
}

.detailed-link a {
  color: var(--secondary);
  font-weight: 600;
}

.detailed-link a:hover {
  text-decoration: underline;
}

/* Capacity warning */
.capacity-warn {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-top: 10px;
  font-size: 0.82rem;
  color: #dc3545;
}

.capacity-warn i {
  margin-right: 4px;
}

/* ============================================================
   RESPONSIVE — Quick Estimate tab
   ============================================================ */
@media (max-width: 600px) {
  .est-tabs {
    max-width: 100%;
  }

  .est-tab {
    padding: 12px 10px;
    font-size: 0.88rem;
    gap: 5px;
  }

  .truck-seg {
    padding: 14px 4px;
  }

  .seg-label {
    font-size: 1rem;
  }

  .seg-price {
    font-size: 0.78rem;
  }

  .truck-cab {
    width: 40px;
    font-size: 1rem;
  }

  .special-row {
    padding: 8px 10px;
  }

  .special-name {
    font-size: 0.82rem;
  }

  .special-price-label {
    font-size: 0.75rem;
    min-width: 45px;
    margin-right: 8px;
  }

  .special-qty button {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }
}
