/* ================= CONTACT PAGE ================= */
.contact-section {
  padding: 80px 0;
  background: #ffffff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* INFO */
.contact-info h2 {
  font-size: 28px;
  color: #0a2540;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-item i {
  font-size: 18px;
  color: #0a2540;
  margin-top: 4px;
}

.contact-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.contact-item a {
  color: #0a2540;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 300px;
  }

  .contact-info h2 {
    font-size: 24px;
  }
}
