/* =============================
   Contact Page Specific Styles
   ============================= */

.contact-hero {
  padding-top: calc(var(--header-h) + 28px);
  padding-bottom: 26px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: flex-start;
}

/* Form side */
.contact-form-wrap {
  padding: 32px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border-light);
}

.contact-form-wrap h2 {
  font-size: 28px;
  font-weight: 750;
  margin-bottom: 12px;
}

.contact-form-wrap p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Info side */
.contact-info-card {
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.contact-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item__icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  color: var(--brand-primary);
}

.info-item__body {
  flex: 1;
}

.info-item__label {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.info-item__value {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.info-item__value a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  background: linear-gradient(45deg, var(--bg-light), #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-weight: 600;
  border: 1px solid var(--border-light);
  overflow: hidden;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

