/* ============================================================
   contact.css — Styles specific to contact.html
   ============================================================ */

/* ------------------------------------------------------------
   PAGE HERO
   ------------------------------------------------------------ */
.page-hero {
  padding: 10rem 5% 5rem;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 151, 90, 0.15), transparent 70%);
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  border: 1px solid rgba(184, 151, 90, 0.2);
  border-radius: 50%;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 400;
  color: white;
  line-height: 1.15;
  max-width: 600px;
}

.page-hero h1 em { font-style: italic; color: var(--gold-light); }

.page-hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  margin-top: 1.2rem;
  font-weight: 300;
}

.breadcrumb { color: rgba(255, 255, 255, 0.4); }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255, 255, 255, 0.2); }

/* ------------------------------------------------------------
   QUICK CONTACT STRIP
   ------------------------------------------------------------ */
.contact-strip {
  background: var(--cream);
  padding: 2rem 5%;
  border-bottom: 1px solid var(--border);
}

.contact-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.strip-item-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: white;
}

.strip-item-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.strip-item-value {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
  margin-top: 0.1rem;
}

.strip-item-value a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s;
}

.strip-item-value a:hover { color: var(--gold); }

/* ------------------------------------------------------------
   CLINIC CARDS
   ------------------------------------------------------------ */
.clinics-section { background: var(--warm-white); }

.clinics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.clinic-card {
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s;
}

.clinic-card.featured {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(184, 151, 90, 0.15);
}

.clinic-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.clinic-card-header {
  padding: 2rem;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.clinic-card.featured .clinic-card-header {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.clinic-card-header::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.clinic-badge {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(184, 151, 90, 0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.clinic-card.featured .clinic-badge {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.2);
}

.clinic-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }

.clinic-card-header h3 {
  font-size: 1.1rem;
  color: white;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

.clinic-card-body { padding: 2rem; }

.clinic-detail {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
}

.clinic-detail-icon { flex-shrink: 0; font-size: 1rem; }

.clinic-detail-text strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.clinic-directions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.2rem;
  padding: 0.7rem 1rem;
  background: var(--charcoal);
  color: white;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  justify-content: center;
  font-weight: 500;
  transition: all 0.3s;
}

.clinic-directions:hover { background: var(--gold); }

/* ------------------------------------------------------------
   CONTACT FORM + INFO
   ------------------------------------------------------------ */
.contact-main {
  background: var(--ivory);
  padding: 7rem 5%;
}

.contact-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: start;
}

/* Form */
.contact-form-wrap {}

.form-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.form-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.form-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}

.form-title em { font-style: italic; color: var(--gold); }

.form-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.field-group.full { grid-template-columns: 1fr; }

.field-wrap { position: relative; }

.field-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.field-label span { color: var(--gold); }

.field-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--warm-white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.field-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 151, 90, 0.1);
}

.field-input::placeholder { color: var(--text-muted); }

select.field-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%238A7F74'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

textarea.field-input {
  resize: vertical;
  min-height: 140px;
}

.field-error {
  font-size: 0.75rem;
  color: var(--error);
  margin-top: 0.3rem;
  display: none;
}

.field-wrap.error .field-input { border-color: var(--error); }
.field-wrap.error .field-error { display: block; }

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.form-success {
  display: none;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
  animation: fadeUp 0.5s ease;
}

.form-success h3 {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-success p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Info panel */
.contact-info-panel { position: sticky; top: 100px; }

.info-block {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.info-block-header {
  background: var(--charcoal);
  padding: 1.2rem 1.5rem;
}

.info-block-header h3 {
  font-size: 1rem;
  color: white;
  font-weight: 400;
}

.info-block-header p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.2rem;
}

.info-block-body { padding: 1.5rem; }

.info-row {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}

.info-row:last-child { margin-bottom: 0; }

.info-row-icon { flex-shrink: 0; font-size: 1rem; }

.info-row-text strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.info-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}

.wa-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.9rem;
  background: #25D366;
  color: white;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s;
  margin-bottom: 0.8rem;
}

.wa-cta:hover { background: #1da855; }

.call-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.9rem;
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}

.call-cta:hover {
  background: var(--charcoal);
  color: white;
}

/* ------------------------------------------------------------
   RESPONSIVE — Contact page
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .clinics-grid { grid-template-columns: 1fr; max-width: 500px; }
  .contact-main-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info-panel { position: static; }
  .contact-strip-inner { justify-content: flex-start; gap: 1.5rem; }
}

@media (max-width: 640px) {
  .field-group { grid-template-columns: 1fr; }
  .form-submit-row { flex-direction: column; align-items: flex-start; }
  .contact-strip-inner { flex-direction: column; gap: 1rem; }
}
