/*************************************************************
 * CUSTOMER REVIEWS SECTION
 *************************************************************/
 .customer-reviews-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #fff url('/images/customer-review-background.webp') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* parallax on large screens */
  color: #ffffff;
  font-family: 'IBM Plex Sans', sans-serif;
  padding: 0;
}
.reviews-overlay {
  background: rgba(0, 0, 0, 0.4);
  padding: 60px 2%;
  box-sizing: border-box;
  height: auto;
}
.reviews-header {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}
.reviews-headline {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
}
.reviews-intro {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 20px;
}
.reviews-trust-metrics {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 30px 0 40px;
  text-align: center;
}
.star-rating-badge {
  font-size: 18px;
  color: #ffffff;
}
.rating-text {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}
.big-stars {
  font-size: 22px;
  color: #FFB600;
  margin-bottom: 5px;
}
.verified-count {
  font-size: 14px;
  color: #f0f0f0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 40px;
}
.review-card {
  background-color: #ffffff;
  color: #333333;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: transform 0.3s ease;
}
.review-card:hover {
  transform: scale(1.02);
}
.google-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: auto;
}
.google-icon svg {
  width: 100%;
  height: auto;
}
.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.reviewer-pfp {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.reviewer-name {
  font-size: 16px;
  font-weight: 600;
  color: #234882;
}
.review-date {
  font-size: 12px;
  color: #666666;
  line-height: 1.2;
}
.review-stars {
  font-size: 20px;
  color: #FFB600;
  margin-bottom: 10px;
}
.review-text {
  font-size: 14px;
  line-height: 1.4;
}
.reviews-cta {
  text-align: center;
  margin-top: 20px;
}
.cta-button {
  display: inline-block;
  background-color: #fff;
  color: #1b346b;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 3em;
  border-color: #1b346b;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 620;
  transition: font-size 0.3s ease;
}
.cta-button:hover {
  font-size: 1.135rem;
}

/* On-scroll animations */
.animate-on-scroll {
  opacity: 0;
}
.fade-from-top {
  transform: translateY(-20px);
  transition: opacity 1s ease, transform 1.25s ease;
}
.fade-from-left {
  transform: translateX(-20px);
  transition: opacity 1s ease, transform 1.25s ease;
}
.fade-from-right {
  transform: translateX(20px);
  transition: opacity 1s ease, transform 1.25s ease;
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* Media Queries: disable parallax, 2 columns on tablets, etc. */
@media (max-width: 1024px) {
  .customer-reviews-section {
      background-attachment: scroll; /* disable parallax on smaller screens */
  }
}
@media (min-width: 768px) {
  .reviews-grid {
      grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .reviews-overlay {
      padding: 40px 5%;
  }
  .reviews-headline {
      font-size: 24px;
  }
  .reviews-intro {
      font-size: 14px;
  }
  .reviews-trust-metrics {
      margin: 20px 0 30px;
  }
  .review-card {
      padding: 15px;
  }
  .cta-button {
      padding: 8px 16px;
  }
}

/*************************************************************
* FAQ CONTAINER & ACCORDION
*************************************************************/
.faq-container {
  margin: 0 auto;
  padding: 4rem;
  max-width: 1300px;
  font-family: 'IBM Plex Sans', sans-serif;
}
.faq-container h2 {
  text-align: center;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  color: #072B59;
}
.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 2em 0;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  color: #063573;
  font-size: 1.45rem;
  font-weight: 500;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
}
.accordion button .accordion-title {
  padding: 1em 1.25em 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1.25px solid;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded='true'] {
  color: #072B59;
  font-weight: 600;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 19px;
  font-weight: 400;
  margin: 2em 0;
}

.accordion .accordion-content p strong{
  color: #072B59;
  font-weight: 600;

}

.accordion .accordion-content p a{
  color: #072B59;
  text-decoration: none;
  font-weight: bold;
}

@media(max-width:991.98px) {
  .accordion .accordion-content p {
      font-size: 17px;
      font-weight: 375;
      margin: 1.75em 0;
  }
  .accordion button {
      font-size: 22px;
      font-weight: 500;
  }
  .faq-container h2 {
      font-size: 32px;
  }
}
@media(max-width:768px) {
  .accordion .accordion-content p {
      font-size: 14px;
      font-weight: 300;
      margin: 1em 0;
  }
  .accordion button {
      font-size: 17px;
      font-weight: 400;
  }
  .faq-container h2 {
      font-size: 25px;
  }
}

@media(max-width:378px) {

  .accordion button[aria-expanded='true'] + .accordion-content {
    max-height: 9.85em;

  }
}

/*************************************************************
* SERVICES SECTION
*************************************************************/
.services-section {
  padding: 80px 2%;
  background-image: linear-gradient(to bottom, #ffffff, #f9f9f9, #f2f2f2);
  font-family: 'IBM Plex Sans', sans-serif;
  position: relative;
}
.services-heading {
  text-align: center;
  font-size: 40px;
  color: #072B59;
  margin-bottom: 10px;
  line-height: 1.2;
}
.services-subheading {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}
/* Base: 4 columns */
.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 1.25s ease, opacity 0.75s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(80px);
}
.service-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
/* Header */
.service-header {
  position: relative;
  height: 220px;
}
.service-header-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(100%);
  display: block;
  transition: filter 0.3s ease;
}
.service-card:nth-child(1) .service-header-image {
  object-position: 50% 70%;
}
.service-card:nth-child(4) .service-header-image {
  object-position: 50% 90%;
}
.service-card:hover .service-header-image {
  filter: brightness(116%);
}
.service-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  pointer-events: none;
  z-index: 0;
}
.service-title {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  font-size: 26px;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  margin: 0;
  white-space: nowrap;
  z-index: 1;
}
.service-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-tagline {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.4;
}
.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  flex: 1;
}
.service-list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 12px;
  color: #3b3b3b;
  line-height: 1.3;
}
.service-list li i {
  color: #063573;
  margin-right: 12px;
  font-size: 20px;
}
.service-buttons {
  display: flex;
  gap: 15px;
  margin-top: auto;
  flex-wrap: wrap;
}
.service-button {
  text-decoration: none;
  color: white;
  padding: 12px 20px;
  border-radius: 3em;
  font-size: 16px;
  font-weight: 555;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  cursor: pointer;
}
.primary-button {
  background-image: linear-gradient(to bottom, #072B59, #063573);
  flex: 1;
  min-width: 60%;
}
.secondary-button {
  background: #fff;
  border: 2px solid #072B59;
  color: #072B59;
  flex: 1;
  min-width: 40%;
}
.service-button:hover {
  filter: brightness(110%);
}
.service-button:focus {
  outline: 3px solid #f3150d;
  outline-offset: 2px;
}

/* @media adjustments for up to 1200px, 768px, etc. */
@media (max-width: 1200px) {
.services-container {
  grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.services-container {
  grid-template-columns: 1fr;
}
.service-card {
  width: 100%;
}
.services-heading {
  font-size: 32px;
}
.services-subheading {
  font-size: 16px;
}
.service-title {
  font-size: 20px;
  white-space: normal; 
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.service-list li {
  font-size: 14px;
}
.service-button {
  padding: 10px 15px;
  font-size: 15px;
}
.primary-button {
  width: 100%;
}
.secondary-button {
  width: 100%;
}
.service-buttons {
  flex-direction: column;
  gap: 10px;
}
}
@media (max-width: 480px) {
.service-title {
  font-size: 18px;
}
.services-subheading {
  font-size: 15px;
}
.service-button {
  padding: 8px 12px;
  font-size: 14px;
}
}

/*************************************************************
* SERVICE AREA SECTION
*************************************************************/
.service-area-section {
width: 100%;
padding: 60px 2%;
background-color: #ffffff;
font-family: 'IBM Plex Sans', sans-serif;
}
.service-area-container {
display: flex;
flex-direction: column;
align-items: center;
max-width: 1200px;
width: 100%;
margin: 0 auto;
gap: 20px;
text-align: center;
}
.service-area-text-block {
order: 1;
width: 100%;
max-width: 700px;
}
.service-area-heading {
font-size: 32px;
color: #072B59;
margin-bottom: 15px;
line-height: 1.2;
}
.service-area-subheading {
font-size: 20px;
font-weight: 600;
color: #F29A2E;
margin-bottom: 20px;
line-height: 1.4;
}
.service-area-text-block p {
font-size: 16px;
line-height: 1.6;
margin-bottom: 15px;
}
.service-area-list {
list-style: none;
margin: 20px auto;
padding: 0;
text-align: left;
}
.service-area-list li {
display: flex;
align-items: center;
margin-bottom: 8px;
}
.service-area-list li::before {
content: '>';
color: #063573;
margin-right: 8px;
}
.service-area-map-block {
order: 2;
width: 100%;
max-width: 650px;
border-radius: 8px;
overflow: hidden;
text-align: center;
}
.service-area-image {
width: 100%;
height: auto;
object-fit: cover;
object-position: center;
transform: scale(2.2);
transform-origin: center center;
cursor: zoom-in;
transition: outline 0.2s ease;
}
.service-area-image:hover,
.service-area-image:focus {
outline: 3px solid rgba(243, 21, 13, 0.3);
}

/* Two-column city list at 430px */
@media (min-width: 430px) {
.two-column-list {
  -webkit-columns: 2 auto;
  -moz-columns: 2 auto;
  columns: 2 auto;
  column-gap: 40px;
}
}
/* Side-by-side layout on >=992px */
@media (min-width: 992px) {
.service-area-container {
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
}
.service-area-text-block {
  order: 2;
  max-width: 500px;
  text-align: left;
}
.service-area-map-block {
  order: 1;
  width: 650px;
  height: 560px;
  max-width: none;
}
}

/*************************************************************
* MAINTENANCE PLAN SECTION
*************************************************************/
.maintenance-plan-section {
background-color: #f7f7f7;
padding: 60px 20px;
font-family: 'Lato', sans-serif;
color: #333;
}
.maintenance-plan-container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
.maintenance-plan-title {
font-family: 'IBM Plex Sans', sans-serif;
font-weight: 700;
font-size: 36px;
margin-bottom: 10px;
color: #072B59;
}
.maintenance-plan-subtitle {
font-size: 20px;
max-width: 700px;
margin: 0 auto 40px auto;
line-height: 1.5;
color: #444;
}
.maintenance-plan-highlights {
list-style: none;
padding: 0;
margin: 0 auto 40px auto;
max-width: 800px;
text-align: left;
}
.maintenance-plan-highlights li {
position: relative;
margin-bottom: 20px;
padding-left: 36px;
font-size: 18px;
line-height: 1.4;
}
.maintenance-plan-highlights li::before {
content: "\2713";
position: absolute;
left: 0;
top: 0;
color: #F29A2E;
font-size: 24px;
font-weight: 700;
}
.maintenance-plan-disclaimer-note {
display: block;
font-size: 0.9em;
color: #666;
margin-top: 5px;
}
.maintenance-plan-table-wrapper {
overflow-x: auto;
margin-bottom: 30px;
}
.maintenance-plan-table {
width: 100%;
border-collapse: collapse;
margin: 0 auto;
max-width: 800px;
font-size: 16px;
text-align: left;
}
.maintenance-plan-table thead {
background-image: linear-gradient(to bottom, #072B59, #063573);
color: #fff;
}
.maintenance-plan-table th,
.maintenance-plan-table td {
padding: 14px 20px;
border: 1px solid #ddd;
}
.maintenance-plan-table th {
font-weight: 700;
font-family: 'IBM Plex Sans', sans-serif;
}
.maintenance-plan-table tbody tr:nth-child(even) {
background-color: #f0f0f0;
}
.maintenance-plan-button-wrap {
margin: 25px 0;
}
.maintenance-plan-cta-btn {
display: inline-block;
text-decoration: none;
background-image: linear-gradient(to bottom, #072B59, #063573);
color: #fff;
font-weight: 600;
font-family: 'IBM Plex Sans', sans-serif;
font-size: 18px;
padding: 16px 34px;
border-radius: 3em;
font-weight: 620;
transition: all 0.3s ease;
}
.maintenance-plan-cta-btn:hover {
filter: brightness(115%);
}
.maintenance-plan-disclaimer {
font-size: 14px;
color: #666;
margin-top: 25px;
line-height: 1.4;
}
@media (max-width: 768px) {
.maintenance-plan-title {
  font-size: 28px;
}
.maintenance-plan-subtitle {
  font-size: 18px;
}
.maintenance-plan-highlights li {
  font-size: 16px;
  margin-bottom: 15px;
}
.maintenance-plan-table th,
.maintenance-plan-table td {
  padding: 10px 14px;
}
.maintenance-plan-cta-btn {
  font-size: 16px;
  padding: 12px 24px;
}
}
@media (max-width: 480px) {
.maintenance-plan-title {
  font-size: 24px;
}
.maintenance-plan-subtitle {
  font-size: 16px;
}
.maintenance-plan-highlights li {
  font-size: 15px;
  padding-left: 30px;
}
.maintenance-plan-cta-btn {
  font-size: 15px;
  padding: 10px 20px;
}
}

/*************************************************************
* WHY CHOOSE US SECTION
*************************************************************/
.why-choose-section {
background-image: linear-gradient(to bottom, #063573, #072B59);
padding: clamp(1.5rem, 4vw, 4rem) 1rem;
margin: 0 auto;
font-family: 'Lato', sans-serif;
color: #fff;
}
.why-choose-container {
max-width: 1200px;
margin: 0 auto;
}
.why-choose-header {
text-align: center;
margin-bottom: 2rem;
}
.why-choose-title {
font-family: 'IBM Plex Sans', sans-serif;
font-weight: 700;
font-size: clamp(1.8rem, 3vw, 2.4rem);
margin-bottom: 0.5rem;
color: #fff;
}
.why-choose-subtitle {
font-size: clamp(1rem, 2.5vw, 1.25rem);
color: #fff;
max-width: 700px;
line-height: 1.5;
margin: 0 auto;
}
.why-choose-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
align-items: start;
}
.why-choose-image-wrap {
display: flex;
justify-content: center;
align-items: center;
}
.why-choose-image {
width: 100%;
height: auto;
object-fit: cover;
border-radius: 6px;
}
.why-choose-text-wrap {
display: flex;
flex-direction: column;
justify-content: flex-start;
text-align: left;
}
.why-choose-list {
list-style: none;
margin: 0;
padding: 0;
margin-bottom: 1rem;
}
.feature {
display: flex;
align-items: flex-start;
margin-bottom: 1rem;
font-size: clamp(1rem, 2vw, 1.125rem);
line-height: 1.5;
}
.feature-icon {
color: #fff;
margin-right: 15px;
font-size: clamp(1.25rem, 2.5vw, 1.5rem);
flex-shrink: 0;
position: relative;
top: 0.26rem;
}
.fa-dollar-sign {
margin-left: 5px;
}
.up-text {
margin-left: 5px;
}
.feature-text strong {
font-weight: 700;
}
.why-choose-final-callout {
font-size: clamp(1rem, 2vw, 1.25rem);
color: #fff;
font-weight: 600;
margin-top: 2rem;
}
.why-choose-button-wrap {
margin-top: 3rem;
}
.why-choose-cta-button {
background-image: linear-gradient(to bottom, #F29A2E, #F2AC29);
color: #072B59;
width: 240px;
font-size: 16px;
font-family: 'IBM Plex Sans', sans-serif;
font-weight: 700;
text-decoration: none;
margin: 0 auto;
padding: 1rem 1rem;
display: block;
border-radius: 3em;
text-align: center;
transition: background-color 0.3s ease;
}
.why-choose-cta-button:hover {
background-color: #c7110a;

}

@media (max-width: 768px) {
.why-choose-grid {
  grid-template-columns: 1fr;
}
.why-choose-image {
  width: 80%;
  max-width: 450px;
  margin: 0 auto;
}
.why-choose-cta-button {
  font-size: 1.125rem;
}
}
@media (max-width: 480px) {
.feature {
  margin-bottom: 0.25rem;
}
.feature-icon {
  margin-right: 0.5rem;
}
.why-choose-final-callout {
  margin-top: 1rem;
}

}
