/* ===========================================================
   Service-page additions — used by kitchen and bathroom pages.
   =========================================================== */
@import url("../styles.css");

/* Skip link for keyboard users */
.kc-skip-link {
  position: absolute; left: -9999px; top: 0;
  background: #1E3A8A; color: #fff; padding: 10px 16px; border-radius: 0 0 6px 0;
  font-weight: 600; font-size: 14px; z-index: 1000;
}
.kc-skip-link:focus { left: 0; outline: 2px solid #fff; outline-offset: -4px; }

/* Service-page nav link styling (HTML uses plain anchors here) */
.kc-nav a { font-size: 14px; font-weight: 500; color: #4B5563; text-decoration: none; transition: color .2s; }
.kc-nav a:hover, .kc-nav a.active { color: #1E3A8A; }
.kc-logo-text { font-weight: 700; font-size: 16px; line-height: 1.2; }

/* Generic section helpers used across the page */
.kc-section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.kc-eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  background: var(--bg-muted-2);
  color: var(--fg);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin: 0;
}
.kc-section-title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-tight);
  line-height: var(--lh-snug);
  color: var(--fg);
  text-wrap: balance;
}
@media (min-width: 768px) { .kc-section-title { font-size: var(--fs-4xl); } }

/* Ghost button — used on hero & local CTA. Inline style overrides handle the on-dark colors. */
.kc-btn-ghost {
  background: transparent; color: #0A0A0A; border-color: #E5E7EB;
}
.kc-btn-ghost:hover { background: #F9FAFB; }

/* Footer wrapper used by service pages */
.kc-footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.kc-footer-col { display: flex; flex-direction: column; gap: 8px; }
.kc-footer-col h4 { font-size: 14px; font-weight: 600; color: #fff; margin: 0 0 14px; }
.kc-footer-col a { color: #94A3B8; text-decoration: none; font-size: 14px; transition: color .2s; }
.kc-footer-col a:hover { color: #fff; }
.kc-footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid #1F2937; text-align: center; font-size: 13px; color: #94A3B8; }

.kc-svc-hero {
  position: relative;
  padding: 96px 0 80px;
  color: #fff;
  overflow: hidden;
}
.kc-svc-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.kc-svc-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(30,58,138,0.78) 60%, rgba(30,58,138,0.55) 100%); }
.kc-svc-hero-inner { position: relative; max-width: 900px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.kc-svc-hero h1 { font-family: var(--font-display); font-size: 40px; font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; text-wrap: balance; }
@media (min-width: 768px) { .kc-svc-hero h1 { font-size: 56px; } }
@media (min-width: 1024px){ .kc-svc-hero h1 { font-size: 64px; } }
.kc-svc-hero-sub { font-size: 18px; line-height: 1.6; max-width: 720px; opacity: 0.95; }
@media (min-width: 768px) { .kc-svc-hero-sub { font-size: 20px; } }
.kc-breadcrumb { display: flex; gap: 6px; font-size: 13px; opacity: 0.85; }
.kc-breadcrumb a { color: #fff; text-decoration: none; }
.kc-breadcrumb a:hover { text-decoration: underline; }
.kc-breadcrumb span { opacity: 0.6; }

/* Two-column intro */
.kc-svc-intro { padding: 80px 0; background: #fff; }
.kc-svc-intro-grid { display: grid; grid-template-columns: 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .kc-svc-intro-grid { grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; } }
.kc-svc-intro-text h2 { font-family: var(--font-display); font-size: 30px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 16px; text-wrap: balance; }
@media (min-width: 768px) { .kc-svc-intro-text h2 { font-size: 36px; } }
.kc-svc-intro-text p { font-size: 17px; line-height: 1.7; color: #4B5563; margin-bottom: 16px; }
.kc-svc-intro-text strong { color: #0A0A0A; }
.kc-svc-intro-photo { aspect-ratio: 4/5; background-size: cover; background-position: center; border-radius: 12px; box-shadow: var(--shadow-lg); }

/* Feature grid */
.kc-svc-features { padding: 80px 0; background: #F9FAFB; }
.kc-svc-features-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .kc-svc-features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px){ .kc-svc-features-grid { grid-template-columns: 1fr 1fr 1fr; } }
.kc-feat-card { background: #fff; border-radius: 12px; padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px; transition: box-shadow .2s, transform .2s; }
.kc-feat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.kc-feat-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.kc-feat-card p { font-size: 14px; color: #6B7280; line-height: 1.6; }

/* Long-form content */
.kc-svc-content { padding: 80px 0; background: #fff; }
.kc-svc-content-inner { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.kc-svc-content h2 { font-family: var(--font-display); font-size: 32px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin: 40px 0 16px; text-wrap: balance; }
.kc-svc-content h2:first-child { margin-top: 0; }
.kc-svc-content h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 28px 0 12px; }
.kc-svc-content p { font-size: 17px; line-height: 1.75; color: #374151; margin-bottom: 18px; }
.kc-svc-content ul, .kc-svc-content ol { margin: 12px 0 24px 24px; }
.kc-svc-content li { font-size: 17px; line-height: 1.75; color: #374151; margin-bottom: 8px; }
.kc-svc-content a { color: #1E3A8A; font-weight: 600; }

/* Pricing table */
.kc-svc-pricing { padding: 80px 0; background: #F9FAFB; }
.kc-svc-pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .kc-svc-pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.kc-tier { background: #fff; border-radius: 14px; padding: 32px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 14px; border: 2px solid transparent; transition: all .2s; }
.kc-tier.featured { border-color: #1E3A8A; transform: scale(1.02); }
.kc-tier-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #1E3A8A; }
.kc-tier-price { font-family: var(--font-display); font-size: 32px; font-weight: 800; line-height: 1; color: #0A0A0A; }
.kc-tier-price small { font-size: 14px; font-weight: 500; color: #6B7280; }
.kc-tier-desc { font-size: 14px; color: #6B7280; line-height: 1.6; }
.kc-tier-list { list-style: none; padding: 0; margin: 12px 0; display: flex; flex-direction: column; gap: 8px; }
.kc-tier-list li { font-size: 14px; color: #374151; padding-left: 24px; position: relative; line-height: 1.5; }
.kc-tier-list li::before { content: "✓"; position: absolute; left: 0; color: #16A34A; font-weight: 700; }

/* FAQ */
.kc-svc-faq { padding: 80px 0; background: #fff; }
.kc-faq-list { max-width: 820px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; gap: 12px; }
.kc-faq-item { border: 1px solid #E5E7EB; border-radius: 10px; padding: 20px 24px; transition: box-shadow .2s; }
.kc-faq-item:hover { box-shadow: var(--shadow-sm); }
.kc-faq-q { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: #0A0A0A; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; list-style: none; }
.kc-faq-q::-webkit-details-marker { display: none; }
.kc-faq-q::after { content: "+"; font-size: 24px; font-weight: 400; color: #1E3A8A; transition: transform .2s; flex-shrink: 0; }
.kc-faq-item[open] .kc-faq-q::after { content: "−"; }
.kc-faq-a { margin-top: 12px; font-size: 16px; line-height: 1.7; color: #4B5563; }

/* Service area chips */
.kc-svc-areas { padding: 64px 0; background: #F9FAFB; text-align: center; }
.kc-area-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 900px; margin: 24px auto 0; padding: 0 24px; }
.kc-area-chip { background: #fff; border: 1px solid #E5E7EB; border-radius: 9999px; padding: 8px 16px; font-size: 14px; color: #1E3A8A; font-weight: 600; }

/* Process compact */
.kc-svc-process { padding: 80px 0; background: #fff; }
.kc-svc-process-grid { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .kc-svc-process-grid { grid-template-columns: repeat(4, 1fr); } }

/* Local CTA */
.kc-svc-local-cta { padding: 64px 0; background: #1E3A8A; color: #fff; text-align: center; }
.kc-svc-local-cta h2 { font-family: var(--font-display); font-size: 32px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 14px; color: #fff; }
.kc-svc-local-cta p { font-size: 17px; color: #DBEAFE; margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
.kc-svc-local-cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
