/* =========================================
   PAGE STRUCTURE
========================================= */
main {
  width: 95%;
  max-width: 1200px;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* PAGE TITLE */
.page-title {
  color: #013c74;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 1.8em;
  border-bottom: 3px solid #d0e3f5;
  padding-bottom: 8px;
}

/* =========================================
   CONTACT CONTAINER
========================================= */
.contact-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* =========================================
   CONTACT DETAILS
========================================= */
.contact-details {
  flex: 1;
  min-width: 320px;
  background: #f9fbff;
  border: 1px solid #d0e3f5;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(172, 204, 233, 0.15);
}

.contact-details h3 {
  color: #013c74;
  font-weight: 600;
  margin-bottom: 12px;
  border-bottom: 2px solid #d0e3f5;
  padding-bottom: 6px;
}

.contact-details p {
  color: #2e4a6b;
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* SOCIAL MEDIA LINKS */
.social-media {
  margin-top: 20px;
}

.social-media h3 {
  color: #013c74;
  margin-bottom: 10px;
  font-weight: 600;
}

.social-media a {
  display: inline-block;
  margin: 5px 8px 5px 0;
  background: #f3f9ff;
  border: 1px solid #d0e3f5;
  color: #013c74;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-media a:hover {
  background: #013c74;
  color: #ffd700;
}

/* =========================================
   CONTACT FORM
========================================= */
.contact-form {
  flex: 1;
  min-width: 340px;
  background: #f3f9ff;
  border: 1px solid #d0e3f5;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(172, 204, 233, 0.15);
  transition: all 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(1, 60, 116, 0.15);
}

.contact-form h3 {
  color: #013c74;
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 2px solid #d0e3f5;
  padding-bottom: 6px;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #cfd8e6;
  border-radius: 6px;
  background: #fff;
  font-size: 0.95em;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
  border-color: #013c74;
  box-shadow: 0 0 5px rgba(1, 60, 116, 0.25);
}

/* BUTTON */
.contact-form button {
  margin-top: 18px;
  width: 100%;
  background: #013c74;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #0254a2;
  transform: translateY(-2px);
}

/* =========================================
   MAP SECTION
========================================= */
.map-section {
  margin-top: 50px;
  background: #f9fbff;
  border: 1px solid #d0e3f5;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(172, 204, 233, 0.15);
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 2px 8px rgba(1, 60, 116, 0.1);
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 992px) {
  main {
    padding: 25px;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-details,
  .contact-form {
    width: 100%;
  }

  .map-section iframe {
    height: 300px;
  }
}

@media (max-width: 600px) {
  main {
    padding: 20px;
  }

  .page-title {
    font-size: 1.5em;
  }

  .contact-details,
  .contact-form,
  .map-section {
    padding: 18px;
  }

  .social-media a {
    padding: 6px 10px;
    font-size: 0.9em;
  }

  .map-section iframe {
    height: 250px;
  }
}
