/* Contact page redesign with CMS-driven hero and settings-backed contact cards. */
.contact_hero_media img {
  min-height: 300px;
  max-height: 360px;
  object-fit: cover;
}

.contact_hero_overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, rgba(2, 6, 23, 0.84) 16%, rgba(2, 6, 23, 0.55) 58%, rgba(2, 6, 23, 0.35) 100%);
}

.contact_hero_content {
  max-width: 760px;
  margin: 0 auto;
}

.contact_hero_content h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
}

.contact_hero_content p {
  font-size: 1.03rem;
}

.contact_modern {
  background: linear-gradient(180deg, var(--site-surface-alt, #f8fafc) 0%, var(--site-surface, #ffffff) 70%);
}

.contact_info_row {
  margin-top: -36px;
}

.contact_card {
  background: var(--site-surface, #ffffff);
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.15);
}

.contact_card_icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--site-accent, #4f46e5) 16%, white);
  color: var(--site-accent, #4f46e5);
  font-size: 1.25rem;
}

.contact_panel,
.contact_form_wrap {
  background: var(--site-surface, #ffffff);
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  padding: 1.6rem;
}

.contact_panel {
  background: linear-gradient(145deg, #0f172a 4%, #1e293b 92%);
  color: #f8fafc;
  border-color: transparent;
}

.contact_map_wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b1220;
}

.contact_map_embed {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.contact_map_label {
  font-size: 0.875rem;
  color: #cbd5e1;
}

.contact_panel p {
  color: #cbd5e1;
}

.contact_points li {
  margin-bottom: 0.85rem;
  color: #e2e8f0;
}

.contact_points li i {
  color: #34d399;
  margin-right: 0.45rem;
}

.contact_form_wrap .form-control {
  border-radius: 0.75rem;
  border: 1px solid #cbd5e1;
  min-height: 48px;
}

.contact_form_wrap textarea.form-control {
  min-height: 150px;
}

.contact_form_wrap .form-control:focus {
  border-color: var(--site-accent, #4f46e5);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--site-accent, #4f46e5) 24%, transparent);
}

@media screen and (max-width: 991px) {
  .contact_info_row {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .contact_hero_media img {
    min-height: 230px;
    max-height: 280px;
  }

  .contact_hero_content p {
    font-size: 0.95rem;
  }

  .contact_panel,
  .contact_form_wrap {
    padding: 1.2rem;
  }
}
