@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

/* ===== CONTACT PAGE ===== */
.contact {
  padding: 4rem 1.5rem;
  background: #f4f6f9;
}

/* ===== CONTACT TITLE ===== */
.contact__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  color: #020202;
  letter-spacing: 1px;
}

/* ===== CONTACT GRID ===== */
.contact__container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ===== CONTACT BOX ===== */
.contact__box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact__box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact__box h3 {
  margin-bottom: 1.5rem;
  color: #0a3d62;
  font-size: 1.2rem;
}

/* ===== CONTACT INFO ITEMS ===== */
.info__item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #333;
}

.info__item i {
  font-size: 1.2rem;
  color: #0a3d62;
}

/* ===== SOCIAL ICONS ===== */
.contact__social {
  margin-top: 1.5rem;
  display: flex;
  gap: 25px;
}

.contact__social a {
  font-size: 1.4rem;
  color: #0a3d62;
  transition: 0.3s ease;
}

.contact__social a:hover {
  color: #25D366;
  transform: scale(1.1);
}

/* ===== CONTACT FORM ===== */
.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.9rem;
  font-family: "Poppins", sans-serif;
}

.contact__form textarea {
  resize: none;
  height: 90px;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: #0a3d62;
  box-shadow: 0 0 0 2px rgba(10, 61, 98, 0.15);
}

/* ===== SUBMIT BUTTON ===== */
.contact__form button {
  width: 100%;
  padding: 10px;
  border: none;
  background: #0a3d62;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.contact__form button:hover {
  background: #0652dd;
}

/* ===== MAP FIX ===== */
.map {
  display: flex;
  flex-direction: column;
}

.map__title {
  margin-bottom: 1rem;
  color: #0a3d62;
  font-size: 1.2rem;
}

.map__container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
}

.map__container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact {
    padding: 3rem 1rem;
  }

  .contact__box {
    padding: 1.5rem;
  }

  .contact__title {
    font-size: 1.6rem;
  }
}
