/* ================= CONTACT HEADER ================= */
.contact-header-section {
  background: #021061;
  padding: 120px 0 80px; /* Top padding accounts for fixed navbar */
  color: white;
  position: relative;
}

.contact-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-subtitle {
  font-size: 18px;
  color: #f4f8ff;
  opacity: 0.9;
}

/* ================= CONTACT CONTENT WRAPPER ================= */
.contact-content-section {
  padding: 80px 0;
  background-color: #f4f8ff;
}

/* ================= LEFT SIDE: INFO ================= */
.contact-info-wrapper {
  padding-right: 20px;
}

.info-heading {
  color: #021061;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
}

.info-desc {
  color: #555;
  margin-bottom: 40px;
  font-size: 16px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: #e6f2ff;
  color: #021061;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid #4AAFFA;
  transition: 0.3s;
}

.info-item:hover .info-icon {
  background-color: #4AAFFA;
  color: white;
}

.info-item h5 {
  font-weight: 700;
  color: #021061;
  margin-bottom: 5px;
  font-size: 18px;
}

.info-item p {
  color: #555;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.info-item p a {
  color: #555;
  text-decoration: none;
  transition: 0.3s;
}

.info-item p a:hover {
  color: #4AAFFA;
}

/* ================= RIGHT SIDE: FORM ================= */
.contact-form-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(2, 16, 97, 0.1);
  border-top: 4px solid #4AAFFA;
}

.contact-form-box h3 {
  color: #021061;
  font-weight: 700;
  margin-bottom: 30px;
}

.custom-input {
  background-color: #f8f9fa;
  border: 1px solid #eee;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 15px;
  color: #021061;
}

.custom-input:focus {
  background-color: white;
  border-color: #4AAFFA;
  box-shadow: 0 0 0 4px rgba(74, 175, 250, 0.15);
}

.contact-submit-btn {
  background-color: #021061;
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  width: 100%;
  transition: 0.3s;
}

.contact-submit-btn:hover {
  background-color: #4AAFFA;
  color: #021061;
}

/* ================= MAP SECTION ================= */
.map-section {
  border-top: 5px solid #021061;
  border-bottom: 5px solid #021061;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
  .contact-title {
    font-size: 36px;
  }
  
  .contact-form-box {
    padding: 30px 20px;
  }
}