@import url('style.css');

/* Service Cards Custom Styles for Service Pages */
.service-cards-container {
    margin-top: 2rem;
    max-width: 430px;
    width: 100%;
}

.service-card-title {
    margin-top: 0.5rem;
}

.service-item {
    background: #fff;
    color: #23272f;
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 rgba(44,62,80,0.07);
    margin-bottom: 0.7rem;
    padding: 0.55rem 1.1rem;
    display: flex;
    align-items: center;
    transition: box-shadow 0.2s, background 0.2s;
    border: none;
    min-height: 48px;
    max-width: 380px;
    width: 100%;
}

.service-item.dark {
    background: #181a20;
    color: #fff;
}

.service-item .service-icon {
    margin-right: 1.1rem;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
}

.service-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 0.08rem;
    color: inherit;
}

.service-item p {
    margin-bottom: 0;
    margin-top: 0.08rem;
    color: #718096;
    font-size: 0.89rem;
}

/* Accent borders/icons for each card */
.service-item {
    border-left: 6px solid transparent;
}
.service-item.dark {
    background: #181a20;
    color: #fff;
}
.service-item.orange {
    border-left-color: #f39c12;
}
.service-item.red {
    border-left-color: #E53E3E;
}
.service-item.green {
    border-left-color: #68D391;
}
.service-item.blue {
    border-left-color: #3498db;
}
.service-item.violet {
    border-left-color: #8e44ad;
}

/* Active card style */
.service-item.active, .service-item.dark.active {
    background: #181a20;
    color: #fff;
    border-left-color: #3498db;
    box-shadow: 0 4px 24px 0 rgba(44,62,80,0.12);
}

.service-item.active h3, .service-item.dark.active h3 {
    color: #fff;
}

/* Make left column taller to match right column */
.left-column-headings {
    margin-bottom: 1.2rem;
}
.service-description {
    margin-bottom: 1.2rem;
}
.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.7em;
    font-size: 1.08rem;
    margin-bottom: 0.1rem;
    color: #fff;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.feature-list li:before {
    content: '\2192'; /* Unicode right arrow */
    color: #e53e3e;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0.1em;
}
/* --- Why Choose Us Section Adjustments --- */
.why-choose-us-section {
    padding-left: 2rem;
    padding-right: 2rem;
}
.why-choose-us-section .justify-content-start {
    justify-content: center !important;
}

@media (max-width: 767px) {
    .service-item {
        padding: 1rem 1.2rem;
    }
    .service-cards-container {
        margin-top: 1rem;
    }
}
@media (max-width: 991px) {
    .service-cards-container {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
  .testimonial-column .blockquote,
  .pre-services-cta-section .blockquote {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
    padding: 1.2rem 1.2rem 1rem 1.2rem;
    line-height: 1.5;
  }
  .testimonial-column .blockquote p,
  .pre-services-cta-section .blockquote p {
    font-size: 1.05rem !important;
  }
  .testimonial-column img {
    width: 56px !important;
    height: 56px !important;
    margin-right: 1rem !important;
  }
}


@media (max-width: 600px) {
  .hero-section {
    padding: 2.2rem 0.7rem 2.2rem 0.7rem !important;
    min-height: 420px;
  }
  .hero-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
  }
  .hero-section h1,
  .hero-section .display-4 {
    font-size: 2rem !important;
    line-height: 1.15 !important;
    margin-bottom: 0.7rem !important;
    word-break: break-word;
  }
  .hero-section p.lead {
    font-size: 1.05rem !important;
    margin-bottom: 1.2rem !important;
    line-height: 1.4 !important;
  }
  .hero-section .btn,
  .hero-section .btn-silver {
    width: 90%;
    max-width: 320px;
    font-size: 1.08rem;
    margin: 0 auto 0.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .hero-section .btn-arrow {
    margin-left: 0.7em;
    font-size: 1.2em;
    /* display: inline; */
    position: static;
    vertical-align: middle;
  }
   .testimonial-column {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    margin: 0  auto;
  }
   .testimonial-column img {
    margin: 0 auto 0.7rem auto !important;
    display: block;
    float: none;
    order: 1;
  }
  .testimonial-column .blockquote {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 95vw;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto !important;
    text-align: center;
  }
  /* Stack and center CTA row */
  .pre-services-cta-section .row.centered-cta-row {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.5rem;
  }

  /* Reset padding on columns for mobile centering */
  .testimonial-column,
  .call-column {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: auto !important;
    max-width: 95vw;
  }

  /* Center testimonial image and blockquote */
  .testimonial-column img {
    display: block !important;
    margin: 0 auto 0.7rem auto !important;
  }
  .testimonial-column .blockquote {
    margin: 0 auto !important;
    width: auto !important;
    max-width: 95vw;
    text-align: center;
  }

  /* Ensure call column contents are centered */
  .call-column {
    text-align: center !important;
  }
}