/* ===============================
   CTA CONTACT – WRAPPER
================================ */
.cta-contact {
  padding: 0 1rem;
}
.cta-contact__inner {
  max-width: 1400px;
  margin: 50px auto;

  background: #fff;
  border-radius: 24px;
  padding: 0 0 0 1rem;

  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 3rem;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* ===============================
   LEFT CONTENT
================================ */
.cta-contact__content {
  padding: 20px;
}
.cta-contact__content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-contact__subtitle {
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 420px;
}

/* CONTACT LIST */

.cta-contact__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.cta-contact__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.cta-contact__list .icon {
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-contact__list .icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.cta-contact__list a {
  color: var(--color-blue-grey-900);
  font-weight: 500;
  font-size: 1rem;
}

/* BUTTON */

.cta-contact__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: var(--color-blue-grey-900);
  padding: 1rem 1.6rem;
  color: #fff;

  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.cta-contact__button:hover {
  background: var(--color-blue-grey-600);
  transform: translateX(4px);
}

/* ===============================
   RIGHT MAP
================================ */

.cta-contact__map {
  min-height: 300px;
}
.cta-contact__map iframe {
  border-radius: 0 24px 24px 0;
}
/* ===============================
   MOBILE
================================ */

@media (max-width: 900px) {
  .cta-contact__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: unset;
  }

  .cta-contact__content {
    padding: 1rem;
  }
  .cta-contact__map iframe {
    border-radius: 0 0 24px 24px;
  }

  .cta-contact__list li {
    justify-content: center;
  }

  .cta-contact__subtitle {
    margin: 0 auto 2rem;
  }
}
