/* Service Areas Template Styles */

.fusion-fullwidth.has-pattern-background {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Hero Section */
.fusion-fullwidth.fusion-builder-row-2 {
  min-height: 500px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 80px 0 !important;
}

.fusion-builder-row-2 .fusion-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  /* Force side-by-side */
  align-items: center !important;
  /* justify-content: space-between !important; */
  max-width: 1280px !important;
  margin: 0 auto !important;
  gap: 0px;
}

.hero-text-col,
.hero-form-col {
  flex: 0 0 calc(50% - 15px) !important;
  max-width: 50% !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  display: flex !important;
}

.hero-content-box {
  background: #ffffff !important;
  padding: 20px !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  /* Softer, more accurate shadow */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0px 25px;
}

.hero-title {
  color: #132c73 !important;
  font-size: 30px !important;
  font-weight: 400 !important;
  /* Lighter weight for parity */
  margin-bottom: 10px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.5px;
}

.hero-description p {
  color: #132c73 !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
  margin-bottom: 10px !important;
}

.hero-form-footer {
  text-align: center;
  margin-top: 15px;
}

.call-us-link {
  color: #fff !important;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.call-us-link:hover {
  opacity: 0.8;
}

/* Contact Form Design Alignment */
.custom-contact-box {
  background: rgba(19, 44, 115, .7) !important;
  padding: 25px 20px !important;
  border-radius: 12px;
  /* Matched radius with white box */
  margin: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 100%;
}

.contact-title,
.custom-contact-box h2,
.custom-contact-box h3 {
  text-align: center !important;
  font-size: 30px !important;
  color: #fff !important;
  font-weight: 400 !important;
  margin-top: 0px !important;
  
}
i.fa.fa-phone {
    transform: rotate(270deg) !important;
}
.custom-field {
  position: relative;
  margin-bottom: 20px;
}

.custom-field input {
  width: 100%;
  padding: 15px 15px 15px 50px !important;
  border: none !important;
  border-radius: 5px;
  font-size: 16px;
  background-color: #fff !important;
  color: #333 !important;
}

.custom-field .icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #132c73 !important;
  font-size: 18px;
  z-index: 10;
}

.submit-btn {
  /* margin-top: 30px; */
}

.submit-btn input[type="submit"] {
  width: 100% !important;
  background-color: #beec42 !important;
  color: #132c73 !important;
  padding: 18px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn input[type="submit"]:hover {
  /* background-color: #a8d538 !important; */
}

.call-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  color: #fff;
}

.call-box.small {
  margin-top: 0px;
  justify-content: center;
}

.custom-contact-box .call-box:not(.small) {
  display: none !important;
}

.call-number {
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Service Areas Grid */
.service-areas-list-section {
  background-color: #fff !important;
      padding-top: 30px ;
    padding-bottom: 10px ;
  position: relative;
  width: 100vw !important;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  box-sizing: border-box !important;
}

.service-areas-list-section .fusion-row,
.service-areas-list-section .fusion-column-wrapper {
  border: none !important;
  box-shadow: none !important;
  /* Side padding for better layout */
  margin: 0 auto !important;
  max-width: 1248px !important;
  width: 100% !important;
  padding: 0px;
}

.service-areas-header {
  margin-bottom: 30px !important;
}

.area-pre-title {
  color: #132c73 !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  margin-bottom: 0px !important;
  line-height: 1.3 !important;
}

.area-main-title {
  color: #132c73 !important;
  font-size: 30px !important;
  font-weight: 400 !important;
  margin-top: 0 !important;
      line-height: 1.4 !important;
}

.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Precise 3-column layout */
  gap: 25px;
  max-width: 1248px;
  width: 100%;
  margin: 0 auto;
}

.service-area-column {
  width: 100%;
  min-width: 0;
}

.region-block {
  margin-bottom: 35px;
}

@media (max-width: 1199px) {
  .service-areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .hero-content-box {
    margin: 0px 30px;
}
.hero-title {
    margin-top: 10px !important;
}
.contact-title {
    font-size: 28px !important;
}
.fusion-column-wrapper {
    margin: 0px 30px !important;
}
  .region-title {

    margin-top: 15px !important;
    margin-bottom: 10px !important;
}
  .region-block {
    margin-bottom: 15px;
}
  .service-areas-grid {
    grid-template-columns: 1fr;
  }
  h4.area-main-title {
    margin-bottom: 0px !important;
    font-size: 28px !important;
}
.service-areas-header {
    margin-bottom: 0px !important;
}
}
.region-title {
  color: #132c73;
  font-size: 17px !important;
  font-weight: 700;
  margin: 0 0 23px 0;
  padding: 0;
  border: none;
}

.region-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 6px;
}

.region-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 14px;
}

.region-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  background-color: #132c73;
  border-radius: 50%;
}

.region-list li a {
  color: #132c73;
  text-decoration: none;
  transition: all 0.3s;
  
}


/* Mobile Responsiveness */
@media (max-width: 991px) {
  .service-area-col {
    flex: 1 1 100%;
  }

  .fusion-fullwidth.fusion-builder-row-2 {
    padding: 40px 0 !important;
  }

  .fusion-builder-row-2 .fusion-row {
    flex-direction: column !important;
    gap: 20px;
  }

  .hero-text-col,
  .hero-form-col {
    width: 100% !important;
    min-width: 100%;
  }

  .hero-text-col .fusion-column-wrapper {
    padding: 25px !important;
  }

  .service-area-column {
    flex: 1 1 100%;
  }
}