/* GLOBAL FIX */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;   /* Prevent horizontal scrolling */
  font-family: "Poppins", sans-serif;
  background: #f3f6fa;
}

/* Because navbar is fixed at top */
body {
  padding-top: 80px;  /* Adjust based on your navbar height */
}

/* HEADER SECTION */
.contact-header {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #004e92, #00356b);
  color: white;
}

.contact-header h1 {
  font-size: 40px;
  font-weight: 800;
}

.contact-header p {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.9;
}

/* MAIN CONTACT CONTENT */
.contact-container {
  max-width: 1200px;
  width: 100%;
  margin: 40px auto;
  display: flex;
  gap: 40px;
  padding: 0 20px;
  flex-wrap: wrap;
}

/* LEFT INFO SIDE */
.contact-info {
  flex: 1;
  min-width: 300px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ff7b00;
}

/* INFO BOXES */
.info-box {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.07);
  width: 100%;
}

.info-box i {
  font-size: 28px;
  color: #004e92;
}

.info-box h4 {
  margin: 0;
  font-weight: 700;
}

/* GET DIRECTIONS BUTTON */
.direction-btn {
  display: inline-block;
  background: #004e92;
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.direction-btn i {
  margin-right: 7px;
}

.direction-btn:hover {
  background: #003a73;
  transform: translateY(-2px);
}

/* CONTACT FORM */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.07);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff7b00;
  box-shadow: 0 0 5px rgba(255,123,0,0.4);
  outline: none;
}

/* SUBMIT BUTTON */
.contact-form .submit-btn {
  width: 100%;
  background: linear-gradient(to right, #ff7b00, #ff9d00);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form .submit-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* RESPONSIVE FIXES */
@media (max-width: 992px) {
  .contact-header h1 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 0 15px;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .info-box {
    flex-direction: row;
  }
}

/* MAP SECTION */
.map-container {
  width: 100%;
  margin-top: 30px;
}

.map-container iframe {
  width: 100% !important;
  height: 350px;
  border: 0;
  border-radius: 10px;
}
