/* Hero Section */
.service-hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-label {
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 2;
  border: 3px dashed rgba(255,255,255,0.5);
  max-width: 600px;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(6,182,212,0.3) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.5rem;
  opacity: 0.95;
}
/* Intro Section */
.service-intro {
  padding: 4rem 0;
  background: white;
}
.intro-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
  line-height: 2;
  color: #333;
}
/* Packages Section */
.service-packages {
  padding: 5rem 0;
  background: #f8f9fa;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--color-primary);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.package-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.25);
}
.package-card.popular {
  border: 3px solid var(--color-primary);
}
.popular-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  padding: 0.5rem 3rem;
  transform: rotate(45deg);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.package-photo {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.package-photo .placeholder-label {
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.8;
  border: 2px dashed rgba(255,255,255,0.5);
  max-width: 90%;
}
.package-content {
  padding: 2rem;
}
.package-name {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.package-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 1.5rem 0;
}
.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.package-features li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}
.package-features li:last-child {
  border-bottom: none;
}
.package-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.2rem;
}
.package-card .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}
/* ===================================
   PHOTO GALLERY SECTION
   =================================== */
.work-gallery-section {
  padding: 5rem 0;
  background: white;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}
.gallery-item:hover {
  transform: scale(1.05);
}
.gallery-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-placeholder .placeholder-label {
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.6;
  border: 2px dashed rgba(255,255,255,0.5);
}
/* ===================================
   DARK SECTIONS
   =================================== */
.dark-section {
  background: #0a0a0a;
  color: white;
  padding: 5rem 0;
}
.dark-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.dark-section p,
.dark-section li {
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
}
/* ===================================
   ZIGZAG PROCESS SECTION
   =================================== */
.process-zigzag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.process-content h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}
.process-content ul {
  list-style: none;
  padding: 0;
}
.process-content li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  line-height: 1.7;
}
.process-content li:last-child {
  border-bottom: none;
}
.process-content li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.2rem;
}
.process-photo {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.process-photo .placeholder-label {
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  border: 2px dashed rgba(255,255,255,0.5);
}
/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
  padding: 5rem 0;
  background: #f8f9fa;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
}
.testimonial-stars {
  color: #fbbf24;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.testimonial-text {
  color: #555;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
}
/* ===================================
   FAQ ACCORDION
   =================================== */
.faq-section {
  padding: 5rem 0;
  background: #0a0a0a;
  color: white;
}
.faq-section .section-title {
  color: white;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}
.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  color: white;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
  font-size: 1rem;
  line-height: 1.5;
}
.faq-question:hover {
  background: rgba(255,255,255,0.08);
}
.faq-question:after {
  content: "+";
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.active .faq-question:after {
  content: "−";
}
.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}
/* ===================================
   CTA SECTION
   =================================== */
.service-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  text-align: center;
}
.service-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.service-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
}
/* ===================================
   ENHANCED PROCESS ICONS (kept for legacy)
   =================================== */
.process-icon {
  font-size: 5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
/* ===================================
   VEHICLE PRICE TIERS (used on odor-removal etc.)
   =================================== */
.package-price-tiers {
  display: flex;
  gap: 0.5rem;
  margin: 1.5rem 0;
  justify-content: space-between;
}
.price-tier {
  flex: 1;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.tier-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  font-weight: 600;
}
.tier-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a1a;
}
.package-card.popular .price-tier {
  background: rgba(6,182,212,0.06);
  border-color: var(--color-primary);
}
.package-card.popular .tier-price {
  color: var(--color-primary);
}

/* ===================================
   MOBILE RESPONSIVE
   =================================== */
@media (max-width: 768px) {
  .service-hero {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .placeholder-label {
    font-size: 1rem;
    padding: 2rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-photo {
    height: 200px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .process-zigzag {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-photo {
    height: 250px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: 100%;
    max-width: 300px;
  }
}
