* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Poppins",
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-weight: 400; /* default regular weight */
  line-height: 1.6;
  color: #333;
  line-height: 1.6;
  color: #333;
  background-color: #f9fafb;
  margin-top: 70px;
}

.contact-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* HERO */

.contact-hero {
  width: 100%;
  background: linear-gradient(to right, #1e3a8a, #3f7cff);
  padding: 100px 0 90px;
  text-align: center;
  color: white;
}

.wrapper {
  width: 85%;
  margin: auto;
}

.contact-hero h1 {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-hero p {
  opacity: 0.9;
  font-size: 1.2em;
}

/* CONTACT SECTION */

.contact-section {
  padding: 80px 0;
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* LEFT INFO */

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-info > p {
  margin-bottom: 30px;
  color: #555;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.icon {
  width: 45px;
  height: 45px;
  background: #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 24px;
}

.icon i {
  color: #1e3a8a;
}

.address-icon {
  /* margin-right: 20px; */
  padding: 18px 24px;
}

.address {
  width: 80%;
}

.info-item h4 {
  margin-bottom: 4px;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 22px;
  background: #22c55e;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

/* FORM */

.contact-form {
  background: white;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  margin-bottom: 5px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.send-btn {
  width: 100%;
  padding: 14px;
  border: none;
  background: linear-gradient(30deg, #1e3a8a, #0056b3);
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

/* MAP */

.map-section {
  padding: 80px 0;
  text-align: center;
}

.map-title {
  margin-bottom: 30px;
}

.map-container {
  width: 100%;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-direction {
  margin-top: 20px;
}

.map-direction a {
  background: #1e3a8a;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.map-direction a:hover {
  transition: 0.3s ease;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    margin-top: 20px;
    padding: 60px;
  }

  .contact-hero h1 {
    font-size: 32px;
  }
}
