/* Contact Section */
.contact {
  background: #efefef;
  padding-bottom: 80px;
}
/* Visit Us Hero Section */
.visit-hero {
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.75),   /* dark at the top */
      rgba(0, 0, 0, 0.4),    /* medium middle */
      rgba(0, 0, 0, 0.15)    /* light at bottom */
    ),
    url("../img/sincerely-media-4dSXcNTyXaI-unsplash.jpg") center/cover no-repeat;
  min-height: 60vh;
  padding-top: 100px;    /* space for navbar */
  padding-bottom: 40px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.visit-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.visit-subtitle {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.map-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tablets */
@media (max-width: 991px) {
  .visit-hero {
    min-height: 25vh;
    padding-top: 80px;
    padding-bottom: 30px;
  }
  .visit-title {
    font-size: 32px;
  }
  .visit-subtitle {
    font-size: 16px;
    padding: 0 20px;
  }
}

/* Phones */
@media (max-width: 576px) {
  .visit-hero {
    min-height: 25vh;
    padding-top: 70px;
    padding-bottom: 25px;
  }
  .visit-title {
    font-size: 26px;
  }
  .visit-subtitle {
    font-size: 15px;
    line-height: 1.5;
    padding: 0 15px;
  }
}
/* Info Boxes */
/* Info Boxes Layout */
.info-map-boxes {
  margin-top: -80px;
  position: relative;
  z-index: 2;
}


.info-map-boxes .col-md-6 {
  display: flex;
  align-items: stretch;
}

.info-map-boxes-item {
  background: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
}

.info-map-boxes-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}


/* Icons */
.info-map-boxes-item i {
  font-size: 50px;
  color: #006400;
  margin-bottom: 15px;
  display: block;
}

/* Headings */
.info-map-boxes-item h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #006400;
  text-transform: uppercase;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

/* Text */
.info-map-boxes-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.info-map-boxes-item a {
  color: #006400;
  font-weight: 600;
  text-decoration: none;
}

.info-map-boxes-item a:hover {
  text-decoration: underline;
}


/* Reset on mobile */
@media (max-width: 991px) {
  .info-map-boxes {
    margin-top: 0;
  }
}
/* Contact Section */
.contact-section {
  background: #f9f9f9;
  padding: 60px 0;
}

/* Title + Subtitle */
.contact-title {
  font-size: 32px;
  font-weight: 600;
  color: #006400;
}

.contact-subtitle {
  font-size: 18px;
  color: #555;
}

/* Form Column */
.contact-form-col {
  padding: 40px;
}

.custom-input {
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  padding: 12px;
}

/* Submit Button */
.custom-btn {
  background-color: #006400;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.custom-btn:hover {
  background-color: #004d00;
}

/* Contact Info Column */
.contact-info-col {
  padding: 40px;
}

.contact-icon {
  color: #006400;
  margin-right: 8px;
}

.contact-link {
  color: #006400;
  text-decoration: underline;
}

.contact-description {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* Divider Icon */
.contact-divider {
  font-size: 28px;
  color: #006400;
}
/* iPad Pro & Large Tablets */
@media (min-width: 992px) and (max-width: 1366px) {
  /* Contact section padding */
  .contact {
    padding-bottom: 60px;
  }

  /* Visit Hero */
  .visit-hero {
    min-height: 30vh;
    padding-top: 120px; /* a bit more space for nav/logo */
    padding-bottom: 30px;
    text-align: center;
  }

  .visit-title {
    font-size: 34px;
  }

  .visit-subtitle {
    font-size: 16px;
    max-width: 600px;
  }

  /* Map container tweaks */
  .map-container {
    padding-top: 50%; /* adjust ratio so it's not too tall */
  }
}
