.contact-hero > img {
  object-position: center;
}

.contact-section {
  padding: 80px 0 90px;
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 146, 203, 0.12), transparent 28%),
    linear-gradient(180deg, #f4fbfe, #ffffff);
}

.contact-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.contact-heading h2 {
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: clamp(30px, 3.5vw, 44px);
}

.contact-heading p {
  color: #566a76;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1.15fr;
  gap: 20px;
  margin-bottom: 42px;
}

.contact-cards article {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 22px;
  background: var(--white);
  border: 1px solid #dceef6;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 110, 155, 0.09);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-cards article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(0, 146, 203, 0.17);
}

.contact-card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--primary), #33b5e5);
  color: var(--white);
  border-radius: 13px;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-cards h3 {
  margin-bottom: 5px;
  color: var(--text-dark);
  font-size: 16px;
}

.contact-cards address,
.contact-cards a,
.contact-cards small {
  display: block;
  color: #5b6e7a;
  font-size: 12.5px;
  font-style: normal;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.contact-cards a:hover {
  color: var(--primary);
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(0, 110, 155, 0.15);
}

.contact-form-card {
  padding: 38px;
}

.form-intro {
  margin-bottom: 25px;
}

.form-intro > span {
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.form-intro h2,
.map-title h2 {
  color: var(--text-dark);
  font-size: 28px;
}

.form-intro p {
  color: #657783;
  font-size: 13px;
}

.contact-map-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: linear-gradient(150deg, #e8f7fd, #d7f0fa);
}

.map-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.globe-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 146, 203, 0.28);
}

.globe-icon svg {
  width: 30px;
  height: 30px;
}

.map-title small {
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.map-frame {
  flex: 1;
  min-height: 390px;
  overflow: hidden;
  background: #cfe9f4;
  border: 6px solid var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 110, 155, 0.15);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.map-direction-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 20px;
  background: var(--primary-dark);
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.25s, transform 0.25s;
}

.map-direction-btn svg {
  width: 19px;
  height: 19px;
}

.map-direction-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-main {
    grid-template-columns: 1fr;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 450px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 60px 0 70px;
  }

  .contact-form-card,
  .contact-map-card {
    padding: 26px 20px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 340px;
  }
}
