/* ============================================================
   CAR THERAPY NAPLES — Services Page
   ============================================================ */

/* ── Services Sticky Nav ── */
.services-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.services-nav__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.services-nav__inner::-webkit-scrollbar { display: none; }

.services-nav__item {
  flex-shrink: 0;
  padding: 1rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
}

.services-nav__item:hover,
.services-nav__item.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── Service Section Header ── */
.service-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.service-section__header h2 { color: var(--white); }
.service-section__header h2 em { font-style: italic; color: var(--gold); }

/* ── Pricing Grid ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.pricing-card {
  background: var(--surface-2);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: background 0.3s;
}

.pricing-card:hover { background: var(--black); }

.pricing-card--featured {
  background: var(--surface);
  border-top: 2px solid var(--gold);
}

.pricing-card--featured:hover { background: var(--surface-2); }

.pricing-card__badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
}

.pricing-card__tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--muted);
}

.pricing-card__price strong {
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  margin-left: 0.25rem;
}

.pricing-card__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.pricing-card__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-card__list li {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
}

.pricing-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--muted-2);
  font-style: italic;
}

/* ── Split Layout ── */
.service-section__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.service-section__split--reverse .service-section__split-img { order: 2; }
.service-section__split--reverse .service-section__split-content { order: 1; }

.service-section__split-content h2 { color: var(--white); }
.service-section__split-content h2 em { font-style: italic; color: var(--gold); }

/* ── Feature Pills ── */
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.feature-pill {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s;
}

.feature-pill:hover { border-color: var(--gold-dark); color: var(--gold); }

/* ── PPF Options ── */
.ppf-options {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}

.ppf-option {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.ppf-option:last-child { border-bottom: none; }
.ppf-option:hover { background: var(--surface-2); }

.ppf-option strong { font-size: 0.88rem; color: var(--white); }
.ppf-option span { font-size: 0.8rem; color: var(--muted); }
.ppf-option em { font-size: 0.82rem; font-style: normal; color: var(--gold); white-space: nowrap; }

/* ── Tint Grid ── */
.tint-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.tint-card {
  background: var(--surface-2);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.3s;
}

.tint-card:hover { background: var(--black); }

.tint-card__shade {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  position: relative;
}

.tint-card__shade span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(0,0,0,0.6);
  mix-blend-mode: multiply;
}

.tint-card strong { font-size: 1rem; color: var(--white); }
.tint-card span { font-size: 0.82rem; color: var(--muted); line-height: 1.5; flex: 1; }
.tint-card em { font-style: normal; font-size: 0.85rem; color: var(--gold); font-weight: 600; }

.tint-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.15);
}

.tint-note svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.tint-note span { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ── Paint Correction Stages ── */
.correction-stages {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.5rem;
  border: 1px solid var(--border);
}

.correction-stage {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.correction-stage:last-child { border-bottom: none; }
.correction-stage:hover { background: var(--surface-2); }

.correction-stage__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--muted-2);
  flex-shrink: 0;
  margin-top: 5px;
}

.correction-stage__dot--gold { background: var(--gold); }
.correction-stage__dot--bright { background: var(--gold-light); box-shadow: 0 0 8px rgba(201,168,76,0.5); }

.correction-stage strong { display: block; font-size: 0.9rem; color: var(--white); margin-bottom: 0.35rem; }
.correction-stage span { display: block; font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin-bottom: 0.5rem; }
.correction-stage em { font-style: normal; font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 0.05em; }

/* ── Marine Grid ── */
.marine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.marine-card {
  background: var(--black);
  padding: 2.5rem;
  position: relative;
  transition: background 0.3s;
}

.marine-card:hover { background: var(--surface-2); }

.marine-card h4 { margin-bottom: 0.5rem; }
.marine-card h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 0.75rem; }
.marine-card p { font-size: 0.88rem; margin-bottom: 1.5rem; }
.marine-card span { font-size: 1rem; color: var(--gold); font-weight: 600; }

/* ── Add-Ons ── */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.addon {
  background: var(--black);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.3s;
}

.addon:hover { background: var(--surface-2); }

.addon__name { font-size: 0.9rem; color: var(--white); }
.addon__price { font-size: 0.82rem; color: var(--gold); font-weight: 600; white-space: nowrap; }

/* ── Real Pricing Grid (vehicle size cards) ── */
.real-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 2rem;
}

.real-price-card {
  background: var(--surface-2);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.3s;
}

.real-price-card:hover { background: var(--black); }

.real-price-card__vehicle {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.real-price-card__price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.real-price-card__duration {
  font-size: 0.75rem;
  color: var(--muted-2);
  letter-spacing: 0.08em;
}

/* ── Service Includes ── */
.service-includes {
  padding: 1.5rem 2rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
}

.service-includes__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  margin: 0 0 0.75rem;
}

.service-includes__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-includes__list span {
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── Tint Packages ── */
.tint-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.tint-pkg {
  background: var(--surface-2);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: background 0.3s;
}

.tint-pkg:hover { background: var(--black); }

.tint-pkg--featured {
  background: var(--surface);
  border-top: 2px solid var(--gold);
}

.tint-pkg--featured:hover { background: var(--surface-2); }

.tint-pkg__badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
}

.tint-pkg__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tint-pkg__header h4 { margin: 0; }

.tint-pkg__duration {
  font-size: 0.7rem;
  color: var(--muted-2);
  letter-spacing: 0.08em;
}

.tint-pkg__price-flat {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.tint-pkg__prices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
}

.tint-pkg__tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tint-pkg__tier span { font-size: 0.8rem; color: var(--muted); }
.tint-pkg__tier strong { font-size: 1rem; color: var(--white); font-weight: 500; }

.tint-pkg p { font-size: 0.85rem; line-height: 1.65; flex: 1; }

/* ── Correction Grid ── */
.correction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.correction-card {
  background: var(--surface-2);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: background 0.3s;
}

.correction-card:hover { background: var(--black); }

.correction-card--featured {
  background: var(--surface);
  border-top: 2px solid var(--gold);
}

.correction-card--featured:hover { background: var(--surface-2); }

.correction-card__badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
}

.correction-card__level {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.correction-card h3 {
  font-size: 1.25rem;
  color: var(--white);
}

.correction-card p { font-size: 0.85rem; line-height: 1.65; flex: 1; }

.correction-card__prices {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
}

.cprice {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cprice span { font-size: 0.78rem; color: var(--muted); }
.cprice strong { font-size: 1rem; color: var(--white); font-weight: 500; }

/* ── PPF Zones ── */
.ppf-zones {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}

.ppf-zone {
  background: var(--surface-2);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: background 0.3s;
}

.ppf-zone:hover { background: var(--black); }

.ppf-zone--custom {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.12);
}

.ppf-zone__info { flex: 1; }
.ppf-zone__info h4 { margin-bottom: 0.4rem; }
.ppf-zone__info h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 0.5rem; }
.ppf-zone__info p { font-size: 0.85rem; line-height: 1.6; }

.ppf-zone__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}

.ppf-zone__price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.ppf-zone__duration {
  font-size: 0.72rem;
  color: var(--muted-2);
  letter-spacing: 0.08em;
}

/* ── Marine Extra (Decontamination) ── */
.marine-extra {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.marine-extra__content { flex: 1; }
.marine-extra__content h4 { margin-bottom: 0.5rem; }
.marine-extra__content h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 0.5rem; }
.marine-extra__content p { font-size: 0.85rem; line-height: 1.6; }

.marine-extra__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.marine-extra__price strong {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.marine-extra__price span {
  font-size: 0.72rem;
  color: var(--muted-2);
}

/* ── Refinishing Price Display ── */
.refinish-price {
  display: flex;
  gap: 3rem;
  margin-top: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.refinish-price strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.refinish-price span { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── Residential Price ── */
.resi-price {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
}

.resi-price strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.resi-price p { font-size: 0.85rem; line-height: 1.6; margin: 0; }
.resi-price a { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .real-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .tint-packages { grid-template-columns: 1fr; }
  .correction-grid { grid-template-columns: 1fr; }
  .service-section__split { grid-template-columns: 1fr; }
  .service-section__split--reverse .service-section__split-img,
  .service-section__split--reverse .service-section__split-content { order: unset; }
  .ppf-zone { flex-wrap: wrap; }
  .ppf-zone__right { align-items: flex-start; }
}

@media (max-width: 768px) {
  .service-section__header { flex-direction: column; align-items: flex-start; }
  .real-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .refinish-price { gap: 1.5rem; }
  .marine-extra { flex-direction: column; }
  .marine-extra__price { align-items: flex-start; }
}
