/* shared.css — used by all location and service pages */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sky: #29ABE2;
  --sky-light: #EAF6FD;
  --sky-dark: #1A8FC0;
  --deep: #111111;
  --mid: #444444;
  --light: #777777;
  --sand: #E0E0E0;
  --bg: #FFFFFF;
  --bg-alt: #F4F4F4;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg);
  color: var(--deep);
  line-height: 1.7;
  font-size: 17px;
}

/* NAV */
nav {
  background: var(--bg);
  border-bottom: 1px solid var(--sand);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo { height: 56px; width: auto; border-radius: 4px; object-fit: contain; }
.nav-cta {
  background: var(--sky);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--deep); }

/* BREADCRUMB */
.breadcrumb {
  background: var(--bg-alt);
  padding: 0.75rem 2rem;
  font-size: 13px;
  color: var(--light);
  border-bottom: 1px solid var(--sand);
}
.breadcrumb a { color: var(--sky); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.4rem; }

/* PAGE HERO */
.page-hero {
  background: #F7F7F7;
  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid var(--sand);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2329ABE2' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero-inner { position: relative; max-width: 760px; }
.page-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 600px;
  margin-bottom: 1.75rem;
  font-weight: 300;
}
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary {
  background: var(--sky);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--deep); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--sky);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  border: 2px solid var(--sky);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover { background: var(--sky); color: white; }

/* CONTENT LAYOUT */
.page-body { max-width: 1000px; margin: 0 auto; padding: 4rem 2rem; display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start; }
@media (max-width: 780px) { .page-body { grid-template-columns: 1fr; } .sidebar { order: -1; } }

/* MAIN CONTENT */
.main-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--deep);
  margin: 2.5rem 0 0.75rem;
  line-height: 1.25;
}
.main-content h2:first-child { margin-top: 0; }
.main-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--deep);
  margin: 1.75rem 0 0.5rem;
}
.main-content p { color: var(--mid); margin-bottom: 1rem; font-size: 1rem; line-height: 1.75; }
.main-content ul { margin: 0.5rem 0 1rem 1.25rem; color: var(--mid); }
.main-content ul li { margin-bottom: 0.4rem; font-size: 1rem; line-height: 1.65; }
.main-content a { color: var(--sky); text-decoration: none; }
.main-content a:hover { text-decoration: underline; }

/* STEP LIST */
.step-list { list-style: none; margin: 0.5rem 0 1.5rem; padding: 0; counter-reset: steps; }
.step-list li {
  counter-increment: steps;
  padding: 1rem 1rem 1rem 3.5rem;
  position: relative;
  border-left: 2px solid var(--sand);
  margin-bottom: 0.75rem;
  color: var(--mid);
  font-size: 1rem;
}
.step-list li::before {
  content: counter(steps);
  position: absolute;
  left: -1px;
  top: 0.9rem;
  width: 28px;
  height: 28px;
  background: var(--sky);
  color: white;
  font-weight: 700;
  font-size: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}
.step-list li strong { display: block; color: var(--deep); font-weight: 600; margin-bottom: 0.2rem; }

/* INCLUDED BOX */
.included-box {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 1.75rem;
  margin: 1.5rem 0;
}
.included-box h3 { margin-top: 0; margin-bottom: 1rem; }
.included-box ul { margin-left: 1.25rem; }

/* WHO IT'S FOR */
.audience-box {
  background: var(--sky-light);
  border-left: 4px solid var(--sky);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
}
.audience-box h3 { margin-top: 0; margin-bottom: 0.75rem; color: var(--deep); }
.audience-box ul { margin-left: 1.25rem; color: var(--mid); }
.audience-box ul li { margin-bottom: 0.3rem; }

/* PRICING BOX */
.pricing-box {
  background: white;
  border: 2px solid var(--sky);
  border-radius: 10px;
  padding: 1.75rem;
  margin: 1.5rem 0;
  text-align: center;
}
.pricing-box .price {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 0.25rem;
}
.pricing-box .price-note { font-size: 0.9rem; color: var(--light); margin-bottom: 1rem; }

/* SIDEBAR */
.sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--bg-alt);
  border: 1px solid var(--sand);
  border-radius: 10px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--deep);
  margin-bottom: 1rem;
}
.sidebar-card p { font-size: 0.9rem; color: var(--mid); margin-bottom: 0.75rem; }
.sidebar-card .phone {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sky);
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.sidebar-card .phone:hover { color: var(--deep); }
.sidebar-card .email { font-size: 0.88rem; color: var(--mid); text-decoration: none; display: block; margin-bottom: 1rem; }
.sidebar-card .email:hover { color: var(--sky); }
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { border-bottom: 1px solid var(--sand); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  display: block;
  padding: 0.6rem 0;
  color: var(--sky);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}
.sidebar-links a:hover { color: var(--deep); }

/* FAQ */
.faq-section { border-top: 1px solid var(--sand); margin-top: 3rem; padding-top: 2.5rem; }
.faq-section h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--deep); margin-bottom: 1.5rem; }
.faq-list { border-top: 1px solid var(--sand); }
.faq-item { border-bottom: 1px solid var(--sand); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--sky); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--sky);
  position: relative;
  transition: background 0.2s;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--sky);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s, opacity 0.2s;
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after  { width: 2px; height: 10px; }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--sky); }
.faq-question[aria-expanded="true"] .faq-icon::before { background: white; }
.faq-question[aria-expanded="true"] .faq-icon::after  { background: white; transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; }
.faq-answer.open { max-height: 300px; padding-bottom: 1.25rem; }
.faq-answer p { color: var(--mid); font-size: 0.98rem; line-height: 1.7; }

/* INTERNAL LINKS */
.related-links {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 1.75rem;
  margin-top: 3rem;
}
.related-links h3 { font-size: 1rem; font-weight: 600; color: var(--deep); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; }
.related-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.related-links a {
  background: white;
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 0.5rem 1rem;
  color: var(--sky);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.related-links a:hover { border-color: var(--sky); color: var(--deep); }

/* SEO BAR + FOOTER */
.seo-bar { background: #111; color: #555; font-size: 11px; text-align: center; padding: 0.5rem 1rem; }
footer { background: #111; color: #888; text-align: center; padding: 2rem; font-size: 0.88rem; border-top: 1px solid #222; }
footer img { height: 40px; width: auto; object-fit: contain; display: block; margin: 0 auto 0.75rem; }

/* SHARED JS SNIPPET */
@media (max-width: 600px) {
  nav { padding: 0.75rem 1.25rem; }
  .page-hero { padding: 3rem 1.25rem 2.5rem; }
  .page-body { padding: 2.5rem 1.25rem; gap: 2rem; }
  .breadcrumb { padding: 0.75rem 1.25rem; }
}
