/* Contact Information Section Styles */
.contact-information {
  padding: 3.75rem 0; /* 80px */
}

.contact-wrapper {
  position: relative;
  min-height: 53.75rem; /* 860px */
  border-radius: 1.25rem; /* 20px */
  overflow: hidden;
  background: #1a1715;
}

/* Map Background */
.contact-map-bg {
  position: absolute;
  top: -8%;
  left: -9%;
  right: -9%;
  bottom: -6%;
}

.contact-map-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Card */
.contact-card {
  position: absolute;
  top: 3.75rem; /* 60px */
  left: 3.75rem; /* 60px */
  width: 35.5rem; /* 568px */
  background: #ffffff;
  border-radius: 1.25rem; /* 20px */
  padding: 2.5rem; /* 40px */
}

.contact-card-title {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 3.125rem; /* 50px */
  line-height: 3.125rem; /* 50px */
  letter-spacing: -0.0625rem; /* -1px */
  color: #000000;
  margin: 0 0 1.875rem; /* 30px */
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem; /* 25px */
}

.contact-section {
  display: flex;
  flex-direction: column;
  gap: 0.625rem; /* 10px */
}

.contact-section-title {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 1.5rem; /* 24px */
  line-height: 1.875rem; /* 30px */
  color: #37818d;
  margin: 0;
}

.contact-label {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1.375rem; /* 22px */
  text-transform: capitalize;
  color: #000000;
  margin: 0;
}

/* Contact Item */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6875rem; /* 11px */
  position: relative;
}

/* Direction Icon - positioned at right */
.direction-icon {
  position: absolute;
  right: 0;
  top: 0%;
  transform: translateY(-50%);
  width: 1.875rem; /* 30px */
  height: 1.875rem; /* 30px */
  background: rgba(55, 129, 141, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.direction-icon:hover {
  background: rgba(55, 129, 141, 0.2);
}

.direction-icon svg {
  width: 1.875rem;
  height: 1.875rem;
}

.contact-icon {
  width: 1.25rem; /* 20px */
  height: 1.25rem; /* 20px */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem; /* 2px */
}

.contact-icon svg {
  width: 100%;
  height: auto;
}

.contact-icon-small {
  width: 0.8125rem; /* 13px */
  height: 0.8125rem; /* 13px */
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.6875rem; /* 11px */
}

.contact-text p {
  font-family: "Dubai";
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1.25rem; /* 20px */
  color: #000000;
  margin: 0;
}

.contact-link {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1.375rem; /* 22px */
  color: #37818d;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-link:hover {
  opacity: 0.8;
}

.contact-text-label {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1.25rem; /* 20px */
  color: #000000;
}

.contact-text-value {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 1rem; /* 16px */
  line-height: 1.25rem; /* 20px */
  color: #464647;
}

.contact-email {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1.25rem; /* 20px */
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-email:hover {
  color: #37818d;
}

/* Direction Button */
.contact-direction-btn {
  position: absolute;
  top: 3rem; /* 48px */
  right: 2.5rem; /* 40px */
  width: 1.875rem; /* 30px */
  height: 1.875rem; /* 30px */
  border-radius: 50%;
  background: rgba(55, 129, 141, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
  transition: all 0.3s ease;
}

.contact-direction-btn:hover {
  background: rgba(55, 129, 141, 0.2);
}

.contact-direction-btn svg {
  transform: rotate(180deg);
}

/* Responsiveness */
@media (max-width: 1200px) {
  .contact-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 35.5rem; /* 568px */
    margin: 2.5rem; /* 40px */
  }

  .contact-wrapper {
    min-height: 37.5rem; /* 600px */
    display: flex;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .contact-card {
    margin: 1.25rem; /* 20px */
    padding: 1.875rem; /* 30px */
  }

  .contact-card-title {
    font-size: 2.25rem; /* 36px */
    line-height: 2.625rem; /* 42px */
  }
}
