/* ============================================================
   FAQ & CONTACT STYLES
   ============================================================ */

/* ── FAQ ── */
.faq-outer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: var(--space-24) 0 var(--space-20);
}
.faq-header { text-align: center; margin-bottom: var(--space-14); }
.faq-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--navy-900);
  line-height: 1.12;
  margin-bottom: var(--space-3);
}
.faq-lead { font-size: 1.0625rem; color: var(--text-secondary); }
.faq-header .section-label { justify-content: center; }
.faq-header .section-label::before { display: none; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}
.faq-col { display: flex; flex-direction: column; gap: var(--space-2); }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5);
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--navy-900);
  text-align: left;
  background: transparent;
  cursor: pointer;
  border: none;
  transition: color var(--dur-fast);
}
.faq-q:hover { color: var(--blue-600); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--slate-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: var(--slate-500);
  transition: all var(--dur-base) var(--ease-out);
}
.faq-q[aria-expanded="true"] .faq-icon {
  background: var(--blue-500);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 var(--space-5) var(--space-5);
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  animation: faqOpen var(--dur-base) var(--ease-out);
}
.faq-a strong { color: var(--navy-900); }
@keyframes faqOpen {
  from { opacity:0; transform: translateY(-6px); }
  to   { opacity:1; transform:none; }
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  padding: var(--space-8);
  background: var(--slate-50);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
}
.faq-cta p { font-size: .9375rem; color: var(--text-secondary); font-weight: 500; }

/* ── CONTACT ── */
.ct-outer {
  background: var(--slate-50);
  border-top: 1px solid var(--border);
  padding: var(--space-14) 0;
}
.ct-header { text-align: center; margin-bottom: var(--space-10); }
.ct-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--navy-900);
  line-height: 1.12;
  margin-bottom: var(--space-3);
}
.ct-lead { font-size: 1.0625rem; color: var(--text-secondary); max-width: 500px; margin: 0 auto; }
.ct-header .section-label { justify-content: center; }
.ct-header .section-label::before { display: none; }

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

/* Left panel — single card */
.ct-panel {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ct-rows { display: flex; flex-direction: column; }
.ct-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background var(--dur-fast);
}
.ct-row--static { pointer-events: none; }
a.ct-row:hover { background: var(--slate-50); }
.ct-rows .ct-row:last-child { border-bottom: none; }
.ct-row-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-lg);
  background: var(--slate-100);
  color: var(--slate-500);
  display: flex; align-items: center; justify-content: center;
  font-size: .9375rem;
  flex-shrink: 0;
}
.ct-row-icon--wa { background: rgba(37,211,102,.12); color: #16a34a; }
.ct-row-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ct-row-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ct-row-val {
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--navy-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ct-row-arrow {
  margin-left: auto;
  font-size: .75rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--dur-fast), color var(--dur-fast);
}
a.ct-row:hover .ct-row-arrow { transform: translateX(3px); color: var(--blue-500); }
.ct-panel-actions {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--border);
  background: var(--slate-50);
}
.ct-panel-actions .btn { flex: 1; justify-content: center; }

/* Right column — map + hours */
.ct-map-col { display: flex; flex-direction: column; gap: var(--space-3); }
.ct-map-placeholder {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.ct-map-svg { width: 100%; height: auto; display: block; }
.ct-map-btn {
  position: absolute;
  bottom: var(--space-3); right: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: .5rem 1rem;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: .8125rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: all var(--dur-base) var(--ease-out);
}
.ct-map-btn:hover { background: var(--navy-800); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.ct-map-btn i { font-size: 13px; }

/* Compact hours strip */
.ct-hours-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  row-gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
}
.ct-hours-inline-title {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--navy-900);
  display: flex; align-items: center; gap: var(--space-2);
  white-space: nowrap; flex-shrink: 0;
}
.ct-hours-inline-title i { color: var(--blue-500); }
.ct-hours-inline-rows {
  display: flex; align-items: center; gap: var(--space-3);
  flex-wrap: wrap;
  font-size: .8125rem; color: var(--text-secondary);
}
.ct-hours-inline-rows strong { color: var(--navy-900); font-weight: 600; }
.ct-hi-sep { color: var(--text-muted); }
.ct-hours-note {
  margin-left: auto;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.ct-hours-note.open   { background: #DCFCE7; color: #16a34a; }
.ct-hours-note.closed { background: #FEE2E2; color: #dc2626; }
.ct-status-dot { font-size: .5rem; vertical-align: middle; margin-right: .35rem; }

/* Responsive */
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
  .ct-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ct-outer { padding: var(--space-10) 0; }
  .ct-panel-actions { flex-direction: column; }
  .ct-hours-note { margin-left: 0; }
}
