/* ============================================
   OKC Mobile Mechanic — Service Subpages
   Shared styles for individual service pages
   ============================================ */

/* --- Service Hero --- */
.service-hero {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #252544 50%, #1a1a2e 100%);
  color: #fff;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(243, 121, 32, 0.15) 0%, rgba(243, 121, 32, 0) 60%);
  pointer-events: none;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.service-hero-text h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #fff;
}

.service-hero-text .service-eyebrow {
  display: inline-block;
  background: rgba(243, 121, 32, 0.15);
  color: #f37920;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.service-hero-text .service-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 560px;
}

.service-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-hero-illustration {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.service-hero-illustration svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(243, 121, 32, 0.25));
}

.service-hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 500;
}

.service-badge svg {
  width: 20px;
  height: 20px;
  color: #f37920;
  flex-shrink: 0;
}

/* --- Service Intro --- */
.service-intro {
  padding: 4rem 0 3rem;
  background: #fff;
}

.service-intro-wrap {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.service-intro-wrap p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #334155;
}

/* --- Symptoms Section --- */
.symptoms-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f8f9fb 0%, #fff 100%);
}

.symptoms-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.symptoms-intro h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.symptoms-intro p {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
}

.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.symptom-card {
  background: #fff;
  padding: 2rem 1.75rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 10px 30px rgba(15, 23, 42, 0.06);
  border-top: 3px solid #f37920;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.symptom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 20px 40px rgba(15, 23, 42, 0.1);
}

.symptom-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #fff1e6 0%, #ffe0c7 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.symptom-icon svg {
  width: 30px;
  height: 30px;
  color: #f37920;
}

.symptom-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.symptom-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* --- Process Section --- */
.process-section {
  padding: 5rem 0;
  background: #1a1a2e;
  color: #fff;
  position: relative;
}

.process-section h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

.process-intro {
  text-align: center;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  font-size: 1.05rem;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(243, 121, 32, 0.5) 10%, rgba(243, 121, 32, 0.5) 90%, transparent 100%);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f37920 0%, #d86810 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(243, 121, 32, 0.3), 0 0 0 8px rgba(26, 26, 46, 1), 0 0 0 10px rgba(243, 121, 32, 0.2);
  position: relative;
}

.process-step-circle svg {
  width: 36px;
  height: 36px;
  color: #fff;
}

.process-step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: #fff;
  color: #f37920;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.process-step h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

/* --- Included Section --- */
.included-section {
  padding: 5rem 0;
  background: #fff;
}

.included-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: #f8f9fb;
  border-left: 3px solid #f37920;
  border-radius: 6px;
  font-size: 1rem;
  color: #1e293b;
  line-height: 1.5;
}

.included-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #f37920;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1px;
}

.included-visual {
  background: linear-gradient(135deg, #fff1e6 0%, #ffe0c7 50%, #fff1e6 100%);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.included-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
}

.included-visual svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  position: relative;
  z-index: 1;
}

/* --- Why Section --- */
.why-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fb 0%, #fff 100%);
}

.why-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.why-section .accent-line {
  margin: 0 auto 1rem;
}

.why-intro {
  text-align: center;
  color: #64748b;
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: #f37920;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(243, 121, 32, 0.08);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  background: #f37920;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-card-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.why-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* --- Testimonial Callout --- */
.service-testimonial {
  padding: 5rem 0;
  background: #fff;
}

.testimonial-card {
  max-width: 780px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff 0%, #fefcf9 100%);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 30px 60px rgba(15, 23, 42, 0.08);
  position: relative;
  border-top: 4px solid #f37920;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 6rem;
  line-height: 1;
  color: #f37920;
  font-family: Georgia, serif;
  opacity: 0.15;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 22px;
  height: 22px;
  color: #fbbf24;
}

.testimonial-card blockquote {
  margin: 0 0 1.5rem;
  padding: 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #1e293b;
  font-style: italic;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #f37920, #d86810);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
}

.testimonial-name {
  font-weight: 600;
  color: #0f172a;
}

.testimonial-date {
  font-size: 0.85rem;
  color: #64748b;
}

/* --- Service FAQ --- */
.service-faq {
  padding: 5rem 0;
  background: #1a1a2e;
  color: #fff;
}

.service-faq h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

.service-faq .accent-line {
  margin: 0 auto 1rem;
}

.service-faq-intro {
  text-align: center;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.service-faq-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-faq-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #f37920;
  padding: 1.75rem 2rem;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.service-faq-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.service-faq-card h3 {
  color: #f37920;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.service-faq-card p {
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
  font-size: 0.98rem;
}

/* --- Service Area --- */
.service-area-section {
  padding: 4rem 0;
  background: #fff;
}

.service-area-box {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a1a2e 0%, #252544 100%);
  color: #fff;
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-area-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(243, 121, 32, 0.15) 0%, transparent 50%);
}

.service-area-box > * {
  position: relative;
  z-index: 1;
}

.service-area-box h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.service-area-box p {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.service-area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.service-area-cities span {
  background: rgba(243, 121, 32, 0.15);
  color: #f37920;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(243, 121, 32, 0.3);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .service-hero {
    padding: 5.5rem 0 3rem;
  }
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-hero-text h1 {
    font-size: 2.25rem;
  }
  .service-hero-illustration {
    max-width: 320px;
    order: -1;
  }
  .process-flow {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .process-flow::before {
    display: none;
  }
  .included-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .included-visual {
    padding: 2rem;
  }
  .testimonial-card {
    padding: 2rem;
  }
  .symptoms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .symptoms-intro h2,
  .why-section h2,
  .service-faq h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 560px) {
  .process-flow {
    grid-template-columns: 1fr;
  }
  .service-hero-text h1 {
    font-size: 1.9rem;
  }
  .service-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .service-area-box {
    padding: 2rem 1.5rem;
  }
  .symptoms-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .service-faq-grid {
    grid-template-columns: 1fr;
  }
}
