/* ============================================
   WOMANITY — Contact Page
   Updated: 2026-05-28 21:00
   ============================================ */

.page-hero {
  background: var(--cream);
  padding: 160px var(--container-padding) 40px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.page-hero__inner { max-width: var(--container-max); margin: 0 auto; }

/* ===== CONTACT LAYOUT ===== */
.contact-page {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

/* ===== LEFT COLUMN — Contact Info ===== */
.contact-info__section { margin-bottom: 56px; }
.contact-info__section:last-child { margin-bottom: 0; }
.contact-info__heading {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); font-weight: 500; margin-bottom: 20px;
}

/* WhatsApp button */
.whatsapp-btn {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(37,211,102,0.04));
  border: 1px solid rgba(37,211,102,0.25); border-radius: 16px;
  padding: 18px 24px; text-decoration: none; margin-bottom: 12px;
  transition: all 0.4s var(--ease-out);
}
.whatsapp-btn:hover {
  background: linear-gradient(135deg, rgba(37,211,102,0.2), rgba(37,211,102,0.08));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.12);
}
.whatsapp-btn__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.whatsapp-btn__icon svg { color: white; }
.whatsapp-btn__label { font-size: 15px; font-weight: 500; color: var(--charcoal); }
.whatsapp-btn__sub { font-size: 13px; color: #888; margin-top: 2px; }

/* Polish WhatsApp */
.whatsapp-btn--pl {
  background: linear-gradient(135deg, rgba(37,211,102,0.06), rgba(37,211,102,0.02));
}

/* Phone link */
.contact-phone {
  display: flex; align-items: center; gap: 14px;
  font-size: 17px; font-weight: 400; color: var(--charcoal);
  text-decoration: none; transition: color 0.2s;
  padding: 4px 0;
}
.contact-phone:hover { color: var(--gold); }
.contact-phone__icon { font-size: 20px; }

/* Address */
.contact-address { font-size: 15px; line-height: 1.8; color: #555; }
.contact-address a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* Hours */
.contact-hours { display: flex; flex-direction: column; gap: 0; }
.contact-hours__row {
  display: flex; justify-content: space-between;
  font-size: 15px; color: #555; padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.contact-hours__row:last-child { border-bottom: none; }
.contact-hours__day { font-weight: 400; }
.contact-hours__time { color: var(--charcoal); font-weight: 400; }

/* ===== RIGHT COLUMN — Map ===== */
.contact-studio {
  border-radius: 24px; overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(0,0,0,0.06);
}
.contact-studio img {
  width: 100%; height: auto; display: block;
}
.contact-map {
  border-radius: 24px; overflow: hidden;
  height: 480px; position: relative;
  border: 1px solid rgba(0,0,0,0.06);
}
.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }
.contact-map__placeholder {
  width: 100%; height: 100%; background: var(--blush-light);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: #888; font-size: 14px; text-align: center; padding: 24px;
}
.contact-map__placeholder a {
  color: var(--gold); text-decoration: underline; text-underline-offset: 3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .contact-page { grid-template-columns: 1fr; gap: 64px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 130px var(--container-padding-mobile) 40px; }
  .contact-page { padding: 60px var(--container-padding-mobile); }
  .contact-map { height: 280px; }
  .whatsapp-btn { padding: 14px 18px; }
}
