/* services.css — page-specific styles only.
   Tokens/reset/base + shared buttons + .cta-section live in base.css;
   site chrome lives in header.css / footer.css.
   Page: alexdryclean.net/services/ */

/* ── Breadcrumb — absolute upper-left within services-hero ───── */
.breadcrumb {
  position: absolute;
  top: 16px;
  left: 24px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(26, 60, 90, 0.12);
  border-radius: 8px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: var(--navy-dark);
}
.breadcrumb a { color: var(--navy-dark); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--muted); }

/* ── Hero ────────────────────────────────────────────────────── */
.services-hero {
  position: relative;
  background: #dce8f2;
  color: var(--navy-dark);
  padding: var(--hero-pt-lg) 24px 52px;
  text-align: center;
}
.services-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 18px;
}
.services-intro {
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.78;
}
.services-intro a { color: var(--navy); font-weight: 600; }

/* ── Trust bar (matches homepage pattern) ────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
  text-align: center;
}
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.trust-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-top: 0.25rem;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Section scaffolding (matches homepage pattern) ──────────── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.section-inner > h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 680px;
  margin-bottom: 2.4rem;
  line-height: 1.6;
}
.section-cta { text-align: center; margin-top: 2.4rem; }
.section-cta .btn-outline { margin-left: 0.8rem; }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.4rem;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.btn-outline:hover { background: var(--navy); color: #fff; text-decoration: none; }

/* ── Services grid ───────────────────────────────────────────── */
.services-section {
  background: var(--white);
  padding: var(--section-py) 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-link { display: block; color: inherit; height: 100%; }
.service-link:hover { text-decoration: none; }
.service-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--border);
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.04); }
.service-body { padding: 1.2rem 1.4rem 1.4rem; }
.service-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.4rem;
}
.service-body p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* ── Authority band ──────────────────────────────────────────── */
.authority-section {
  background: var(--cream);
  padding: var(--section-py) 0;
}
.authority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.authority-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.authority-item p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.7;
}
.authority-more {
  margin-top: 1.8rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.authority-more a { color: var(--navy); font-weight: 600; }

/* ── Schedule strip ──────────────────────────────────────────── */
.schedule-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: var(--section-py) 0;
}
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.schedule-region {
  background: linear-gradient(135deg, #e6f0f8 0%, #f0f6fb 100%);
  border: 1px solid #bdd4e7;
  border-left: 4px solid var(--navy-dark);
  border-radius: var(--radius-card);
  padding: 1.3rem 1.4rem;
}
.schedule-region h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.45rem;
}
.sched-days {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.sched-detail {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.schedule-note {
  margin-top: 1.6rem;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-dark);
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.services-faq {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: var(--section-py) 0;
}
.faq-list { max-width: 820px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.3rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-deep);
  position: relative;
  padding-right: 2.6rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  padding: 0 1.3rem 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item p a { color: var(--navy); font-weight: 600; }

/* ── Responsive ──────────────────────────────────────────────── */
/* Trust bar never stacks — items stay on one row and scale down. */
@media (max-width: 900px) {
  .service-grid, .authority-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { flex-wrap: nowrap; }
  .trust-item { flex: 1 1 0; min-width: 0; padding: 0 0.8rem; }
  .trust-num { font-size: 1.5rem; }
  .trust-label { font-size: 0.6rem; }
}

@media (max-width: 640px) {
  .section-inner { padding: 0 20px; }
  .service-grid, .authority-grid, .schedule-grid { grid-template-columns: 1fr; }
  .trust-bar { padding: 14px 8px; }
  .trust-item { padding: 0 0.45rem; }
  .trust-num { font-size: 1.15rem; }
  .trust-label { font-size: 0.52rem; letter-spacing: 0.05em; line-height: 1.45; margin-top: 0.3rem; }
  .trust-divider { height: 28px; }
  .services-hero { padding-bottom: 40px; }
  .breadcrumb { position: static; display: inline-block; margin-bottom: 14px; }
  .section-cta .btn-outline { margin-left: 0; margin-top: 0.8rem; }
}
