/* =============================================
   location.css — shared styles for all county pages
   Extends styles.css
   ============================================= */

/* ── Breadcrumb ──────────────────────────────── */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--text-mid); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span:last-child { color: var(--text-dark); font-weight: 500; }

/* ── Location Hero ───────────────────────────── */
.location-hero {
  background: var(--navy);
  padding: 52px 0 48px;
}

.loc-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.loc-type {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,247,242,0.6);
  font-weight: 500;
}

.location-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}

.loc-sub {
  font-size: 1rem;
  color: rgba(250,247,242,0.75);
  max-width: 620px;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 32px;
}

.loc-quick-facts {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  display: inline-flex;
  overflow: hidden;
}

.qf-item {
  display: flex;
  flex-direction: column;
  padding: 14px 22px;
}

.qf-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250,247,242,0.5);
  margin-bottom: 3px;
}

.qf-val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
}

.qf-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ── Location Body ───────────────────────────── */
.location-body {
  padding: 48px 0 72px;
  background: var(--cream);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: flex-start;
}

/* ── Location Cards ──────────────────────────── */
.loc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.loc-card:last-child { margin-bottom: 0; }

.loc-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--cream-mid);
}

.office-detail-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--cream-mid);
}
.office-detail-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.office-detail-block h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-mid);
  margin-bottom: 14px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 14px;
  font-size: 0.92rem;
}
.info-table tr { border-bottom: 1px solid var(--cream-mid); }
.info-table tr:last-child { border-bottom: none; }
.info-table th {
  padding: 9px 14px 9px 0;
  color: var(--text-light);
  font-weight: 400;
  width: 36%;
  vertical-align: top;
  text-align: left;
}
.info-table td {
  padding: 9px 0;
  color: var(--text-dark);
  font-weight: 500;
  vertical-align: top;
}

.office-tip {
  font-size: 0.88rem;
  color: var(--text-mid);
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.6;
}

/* ── Requirements List ───────────────────────── */
.req-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.req-list li {
  padding: 14px 16px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--navy);
}

.req-list strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.req-list span {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ── Process Steps ───────────────────────────── */
.process-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-steps li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-mid);
}
.process-steps li:last-child { border-bottom: none; padding-bottom: 0; }

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.process-steps strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.process-steps p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ── Tips Grid ───────────────────────────────── */
.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tip-item {
  display: flex;
  gap: 12px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px;
}

.tip-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.tip-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 5px;
}

.tip-item p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ── FAQ on location page ────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.loc-card .faq-item {
  padding: 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--cream-mid);
  padding-bottom: 18px;
  border-radius: 0;
}
.loc-card .faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.loc-card .faq-item h3 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 8px;
  border: none;
  padding: 0;
}

.loc-card .faq-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── Sidebar ─────────────────────────────────── */
.loc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 80px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cream-mid);
}

.sidebar-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 12px;
}

.sidebar-card .info-table th { width: 44%; }

.nearby-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.nearby-list li {
  font-size: 0.87rem;
  color: var(--text-mid);
}
.nearby-list a {
  font-weight: 600;
  color: var(--navy);
}
.nearby-list a:hover { color: var(--gold); }

.sidebar-link {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 0;
  border-top: 1px solid var(--cream-mid);
}
.sidebar-link:first-of-type { margin-top: 4px; }
.sidebar-link:hover { color: var(--gold); }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 900px) {
  .loc-grid {
    grid-template-columns: 1fr;
  }
  .loc-sidebar {
    position: static;
    order: -1;
  }
  .tips-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .loc-quick-facts {
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .qf-div { display: none; }
  .qf-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .loc-card { padding: 22px 18px; }
}
