/* ===== CONTACT MAIN ===== */
.contact-main {
  background: var(--navy-deep); padding: 5rem 2rem;
}

/* ===== FAQ ===== */
.faq-section { background: var(--off-white); padding: 5rem 2rem; }
.faq-list {
  max-width: 800px; margin: 0 auto;
}
.faq-item {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--teal); }
.faq-item.open { border-color: var(--teal); }
.faq-question {
  width: 100%; padding: 1.25rem 1.5rem;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; gap: 1rem;
  font-family: inherit;
}
.faq-question span {
  font-size: 0.95rem; font-weight: 600;
  color: var(--navy); text-align: left;
}
.faq-question .faq-icon {
  width: 24px; height: 24px;
  background: rgba(29,184,160,0.08);
  border: 1px solid rgba(29,184,160,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-question .faq-icon {
  background: rgba(29,184,160,0.15);
}
.faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem; color: var(--gray-600);
  line-height: 1.8;
}

/* ===== MAP PLACEHOLDER ===== */
.map-section { background: white; padding: 5rem 2rem; }
.map-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.map-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--gray-600);
}
.map-placeholder svg { margin-bottom: 1rem; color: var(--teal); opacity: 0.5; }
.map-placeholder p { font-size: 0.85rem; }
.address-card {
  background: white; border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-100);
}
.address-card h3 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: 1.25rem;
}
.address-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 1rem;
}
.address-item:last-child { margin-bottom: 0; }
.address-item-icon {
  width: 36px; height: 36px;
  background: rgba(29,184,160,0.08);
  border: 1px solid rgba(29,184,160,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); flex-shrink: 0;
}
.address-item-text strong {
  display: block; font-size: 0.8rem;
  color: var(--navy); margin-bottom: 4px;
}
.address-item-text p {
  font-size: 0.85rem; color: var(--gray-600); line-height: 1.5;
}

/* ===== OFFICE HOURS / RESPONSE ===== */
.hours-section { background: var(--off-white); padding: 5rem 2rem; }
.hours-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hours-card {
  background: white; border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; text-align: center;
  border: 1px solid var(--gray-100);
  transition: border-color 0.2s, transform 0.2s;
}
.hours-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.hours-icon {
  width: 56px; height: 56px;
  background: rgba(29,184,160,0.08);
  border: 1px solid rgba(29,184,160,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--teal);
}
.hours-card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.5rem;
}
.hours-card p {
  font-size: 0.85rem; color: var(--gray-600); line-height: 1.7;
}
.hours-card .highlight {
  color: var(--teal); font-weight: 700;
  font-size: 1.5rem; display: block;
  margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .map-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hours-grid { grid-template-columns: 1fr; }
}
