.contact {
  margin-top: 128px;
  margin-bottom: 128px;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  background-color: #f5f5f5;
  padding-right: 0 !important;
}

.contact li a {
  color: var(--color-accent);
}

.contact li {
  list-style-type: none;
}

.contact-headline {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 32px;
}

.contact-headline p {
  margin-top: 32px;
}

.contact-map {
  position: relative;
}

.contact-map img {
  width: 100%;
  height: 800px;
  object-fit: contain;
}

.contact-map span {
  position: absolute;
  bottom: 10%;
  right: 10%;
  font-size: 14px;
}

.contact-cta {
  margin-top: 44px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.contact-cta img {
  height: 36px;
}

.contact-cta:hover {
  cursor: pointer;
  color: var(--color-accent);
}

.contact-map-mobile {
  display: none;
  position: relative;
  width: 100%;
  height: 240px;
}

.contact-map-mobile img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.contact-map-mobile span {
  position: absolute;
  bottom: 10%;
  right: 10%;
  font-size: 14px;
}

/* ===========================
   Responsives Design (Breakpoints)
   Range: 320px – 1920px
=========================== */

/* Extra Large Devices (1200px – 1599px) */
@media (min-width: 1200px) and (max-width: 1599px) {
  .contact-map img {
    height: 600px;
  }
}

/* Large Devices (992px – 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-map img {
    width: 600px;
    height: auto;
  }
}

/* Medium Devices (768px – 991px) */
@media (max-width: 991px) {
  .contact {
    flex-direction: column-reverse;
    margin-top: 36px;
    height: auto;
    padding: 0 0px !important;
    gap: 24px;
    margin-bottom: 0;
  }

  .contact-info {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-map {
    display: none;
  }

  .contact-map-mobile {
    display: block;
  }
  .contact-map-mobile img {
    width: 100%;
  }

  .contact-cta {
    margin-bottom: 32px;
  }
}

/* Small Devices (576px – 767px) */
@media (max-width: 767px) {
  .contact-map-mobile img {
    width: 100%;
    object-fit: cover;
  }
}

@media (max-width: 675px) {
  .contact-map-mobile img {
    width: 100%;
    height: 240px;
  }
}

/* Extra Small Smartphones (320px – 575px) */
@media (max-width: 400px) {
  .contact-map-mobile img {
    width: 100%;
    height: 160px;
  }

  .contact-map-mobile span {
    bottom: 20%;
  }

  .contact-headline {
    margin-top: 0;
  }
}
