/* ===== Contacts Page ===== */

/* Hero */
.contacts-hero {
  padding: 0 0 40px 0;
}
.contacts-hero__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
  margin-bottom: 16px;
}
.contacts-hero__desc {
  font-size: 18px;
  line-height: 160%;
  color: #64748b;
  max-width: 640px;
}

/* Contact Cards */
.contacts-cards {
  padding: 0 0 60px 0;
}
.contacts-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contacts-card {
  background: #f2f7fd;
  border-radius: 20px;
  padding: 28px 24px;
  text-decoration: none;
  color: #0f172a;
  transition: all 0.2s ease;
  display: block;
}
.contacts-card:hover {
  background: #e8f3fe;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 137, 249, 0.12);
}
.contacts-card__icon {
  width: 56px;
  height: 56px;
  background: radial-gradient(100% 100% at 50% 0%, rgba(26, 137, 249, 0.6) 0%, #1a89f9 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.contacts-card__icon svg {
  width: 28px;
  height: 28px;
}
.contacts-card__icon--tg {
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
}
.contacts-card__label {
  font-size: 13px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 8px;
}
.contacts-card__value {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 8px;
}
.contacts-card__hint {
  font-size: 14px;
  color: #64748b;
}

/* Form + Map Section */
.contacts-main {
  padding: 60px 0 80px 0;
}
.contacts-main__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Form */
.contacts-form {
  background: #f2f7fd;
  border-radius: 32px;
  padding: 40px;
}
.contacts-form__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 125%;
  margin-bottom: 12px;
}
.contacts-form__desc {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 32px;
}
.contacts-form__form .input-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.contacts-form__form .form-control {
  border: 1px solid #e2e8f0;
  width: 100%;
  height: 56px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  font-size: 15px;
}
.contacts-form__form .form-control::placeholder {
  color: #94a3b8;
}
.contacts-form__form .form-control:focus {
  border-color: #1a89f9;
  outline: none;
}
.contacts-form__form .form-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contacts-form__form .blue-btn {
  height: 60px;
  width: 100%;
  justify-content: center;
  font-size: 17px;
}

/* Map */
.contacts-map {
  border-radius: 32px;
  overflow: hidden;
  background: #f2f7fd;
}
.contacts-map__wrapper {
  width: 100%;
  height: 520px;
}
.contacts-map__wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Details */
.contacts-details {
  padding: 0 0 80px 0;
}
.contacts-details__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 125%;
  margin-bottom: 32px;
}
.contacts-details__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contacts-details__item {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #f1f5f9;
}
.contacts-details__label {
  font-size: 13px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 8px;
}
.contacts-details__value {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #0f172a;
}
.contacts-details__value a {
  color: #1a89f9;
  text-decoration: none;
}
.contacts-details__value a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .contacts-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contacts-main__grid {
    grid-template-columns: 1fr;
  }
  .contacts-map__wrapper {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contacts-hero__title {
    font-size: 32px;
  }
  .contacts-hero__desc {
    font-size: 16px;
  }
  .contacts-details__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contacts-form {
    padding: 24px;
  }
  .contacts-form__form .input-boxes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contacts-cards__grid {
    grid-template-columns: 1fr;
  }
  .contacts-hero__title {
    font-size: 28px;
  }
  .contacts-details__grid {
    grid-template-columns: 1fr;
  }
  .contacts-form__title {
    font-size: 22px;
  }
  .contacts-card__value {
    font-size: 16px;
  }
  .contacts-map__wrapper {
    height: 300px;
  }
}