/* ==========================================================================
   WHAT MAKES US DIFFERENT (Image + Side Text)
   ========================================================================== */
.what-makes-us-different-image-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.what-makes-us-different-image {
  flex: 0 0 48%;
  max-width: 48%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.no-bs-description.big {
  flex: 1;
  margin: 0;
  color: var(--light-grey);
}

/* ==========================================================================
   HEADINGS & TYPOGRAPHIC FLOW
   ========================================================================== */
.lifetime-guarantee-heading {
  text-wrap: balance;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.25;
}

.lifetime-guarantee-heading .sub-phrase {
  display: block;
  margin-top: 6px;
  font-size: 0.85em;
  opacity: 0.95;
  color: var(--brand-red-color, #a50000);
}

.no-bs-heading {
  text-wrap: balance;
  line-height: 1.25;
  margin: 0 0 20px 0;
  max-width: 720px;
}

.no-bs-heading span {
  display: inline-block;
  white-space: nowrap;
}

/* ==========================================================================
   REVIEWS: 5-STAR RATING & CARD LAYOUT
   ========================================================================== */
.stars-5::before {
  content: "★★★★★";
  letter-spacing: 3px;
  font-size: 1.2rem;
  color: var(--golden-yellow, #f59e0b);
  display: inline-block;
  line-height: 1;
}

/* ==========================================================================
   REVIEW SECTION: TRUE 80% VIEWPORT WIDTH & CONVEYOR SLIDER
   ========================================================================== */
.testimonial-section-wrapper {
  width: 80vw !important;
  max-width: 80vw !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 60px 0;
  box-sizing: border-box;
}

.testimonial-header-content {
  text-align: center;
  margin-bottom: 36px;
}

.testimonial-header-content .uui-heading-medium-2 {
  margin-top: 0;
  margin-bottom: 8px;
}

.testimonial-testimonial15_component {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 45px 50px;
  box-sizing: border-box;
}

.testimonial15_mask {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: 100%;
  box-sizing: border-box;
}

/* Base Card Widths (Desktop default: 4 cards) */
.uui-testimonial15_slide {
  flex: 0 0 25% !important;
  max-width: 25% !important;
  min-width: 0 !important;
  box-sizing: border-box;
  padding: 0 10px;
  flex-shrink: 0;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.uui-testimonial15_content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Navigation Buttons (Carats) */
.testimonial15_arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--gray200, #e5e7eb);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-black, #111);
  z-index: 10;
  user-select: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.testimonial15_arrow:hover {
  background-color: var(--brand-red-color, #d32f2f);
  color: #ffffff;
  transform: translateY(-50%) scale(1.06);
}

.testimonial15_arrow.left  { left: 4px; }
.testimonial15_arrow.right { right: 4px; }

.testimonial15_slide-nav {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gray300, #d1d5db);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.slider-dot.active {
  background-color: var(--brand-red-color, #d32f2f);
  transform: scale(1.25);
}

/* ==========================================================================
   SERVICES GRID WITH CARD IMAGES
   ========================================================================== */
.services-container {
  width: 80vw;
  max-width: 80vw;
  margin: 0 auto;
  padding: 60px 0;
  box-sizing: border-box;
}

.services-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  box-sizing: border-box;
}

.service-card,
.our-services-card {
  background: var(--white, #ffffff) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.service-card:hover,
.our-services-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06) !important;
}

.service-card-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--gray200, #e5e7eb);
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.service-card:hover .service-card-image {
  transform: scale(1.05);
}

.service-card-body {
  padding: 32px 30px 36px 30px !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title,
.our-services-card-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 16px 0 !important;
  color: var(--deep-black, #111827) !important;
  line-height: 1.35 !important;
}

.service-description,
.our-services-card-description {
  font-size: 0.95rem;
  line-height: 1.7 !important;
  color: var(--deep-black, #111827) !important;
  margin: 0 !important;
}

.services-grid.mode-all .service-description {
  font-size: 0.92rem;
  line-height: 1.65;
}

.services-cta-wrapper {
  text-align: center;
  margin-top: 48px;
}

/* Red Section (index.php) */
.section-services.bg-red {
  background-color: var(--brand-red-color, #a50000);
  color: #ffffff;
}

.section-services.bg-red .services-header .uui-heading-medium-2,
.section-services.bg-red .services-header .uui-text-size-large-2 {
  color: #ffffff !important;
}

.section-services.bg-red .service-card {
  background-color: #ffffff !important;
}

.section-services.bg-red .service-title {
  color: #111827 !important;
}

.section-services.bg-red .service-description {
  color: #1f2937 !important;
}

.section-services.bg-red .button-white {
  background-color: #ffffff;
  color: var(--brand-red-color, #a50000);
  font-weight: 700;
  border: 2px solid #ffffff;
  transition: all 0.2s ease;
}

.section-services.bg-red .button-white:hover {
  background-color: transparent;
  color: #ffffff;
}

/* ==========================================================================
   FAQ ACCORDIONS
   ========================================================================== */
.faq-accordion-tittle {
  cursor: pointer;
  user-select: none;
}

.faq-answer {
  height: 0px;
  overflow: hidden;
  box-sizing: border-box;
  transition: height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-accordion.is-open .faq-answer {
  height: auto !important;
  max-height: 400px !important;
  opacity: 1 !important;
}

.accordion-icon_vertical-line {
  transition: transform 0.25s ease;
  transform-origin: center center;
}

.faq-accordion.is-open .accordion-icon_vertical-line {
  transform: rotate(90deg) !important;
  opacity: 0 !important;
}

/* ==========================================================================
   SERVICES PAGE: CENTERED TWO-LINE HEADER
   ========================================================================== */
.our-servicesft-heading-wrapper,
.services-header {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.our-servicesft-heading-wrapper h1,
.our-services-heading,
.services-header h1,
.services-header h2 {
  text-align: center !important;
  width: 100% !important;
}

.our-services-heading {
  color: var(--brand-red-color-2, #8b0000) !important;
  margin: 0 auto 16px auto !important;
}

.our-services-heading .sub-heading {
  display: block;
  font-size: 0.85em;
  margin-top: 8px;
  color: var(--deep-black, #111827);
  font-weight: 600;
}

/* ==========================================================================
   DESKTOP STICKY NAVBAR & HANGING LOGO
   ========================================================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

.section-new.nav {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  background-color: var(--brand-red-color-2, #8b0000) !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3) !important;
  overflow: visible !important;
}

.section-new.nav .navbar,
.section-new.nav .navbar-wrapper,
.section-new.nav .nav-container,
.section-new.nav .w-layout-blockcontainer {
  background-color: transparent !important;
  overflow: visible !important;
}

.brand.w-nav-brand {
  position: relative !important;
  z-index: 99 !important;
  overflow: visible !important;
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
}

.brand.w-nav-brand .image {
  height: 90px !important;
  max-height: none !important;
  max-width: none !important;
  width: auto !important;
  margin-bottom: -40px !important;
  position: relative !important;
  top: 0px !important;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
  transition: transform 0.2s ease;
}

.brand.w-nav-brand:hover .image {
  transform: scale(1.03);
}

.section-new.nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
}

.section-new.nav .nav-link:hover,
.section-new.nav .nav-link.w--current {
  color: #f3f4f6 !important;
  opacity: 0.85;
}

.nav-phone-cta {
  display: inline-flex;
  align-items: center;
  background-color: #e4ce06;
  color: var(--brand-red-color-2, #8b0000) !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  margin-left: 14px;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-phone-cta:hover {
  background-color: var(--deep-black, #111827);
  color: #ffffff !important;
  transform: scale(1.03);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-mobile-toggle .hamburger-bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* ==========================================================================
   ABOUT US: CONTACT INFO BAR
   ========================================================================== */
.address-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.address-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px;
}

.address-wrapper .text-block-2,
.address-wrapper .addrs-text {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--brand-red-color-2, #8b0000);
  margin-bottom: 4px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (CONSOLIDATED)
   ========================================================================== */

/* 1. Laptops / Small Desktops (<= 1199px) */
@media screen and (max-width: 1199px) {
  .uui-testimonial15_slide {
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
  }
}

/* 2. Tablets (<= 991px) */
@media screen and (max-width: 991px) {
  .testimonial-testimonial15_component {
    padding: 0 40px 45px;
  }

  .uui-testimonial15_slide {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .section-new.nav .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--brand-red-color-2, #8b0000);
    flex-direction: column;
    padding: 20px 24px;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  }

  .section-new.nav .nav-menu.is-active {
    display: flex !important;
  }

  .nav-phone-cta {
    margin-left: 0;
    margin-top: 8px;
    justify-content: center;
  }
}

/* 3. Mobile Devices (<= 767px) */
@media screen and (max-width: 767px) {
  /* Scroll offset for compact bar */
  html {
    scroll-padding-top: 66px !important;
  }

  /* Section Padding */
  .section-new,
  .section-services,
  .testimonial-section-wrapper {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }

  .testimonial-section-wrapper {
    width: 92vw !important;
    max-width: 92vw !important;
  }

  .testimonial-testimonial15_component {
    padding: 0 35px 45px;
  }

  .uui-testimonial15_slide {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 4px;
  }

  /* Layout flow */
  .what-makes-us-different-image-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .what-makes-us-different-image,
  .no-bs-description.big {
    max-width: 100%;
    flex-basis: 100%;
  }

  .services-container {
    width: 92vw;
    max-width: 92vw;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Typography Scale */
  .hero-heading {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
    text-wrap: balance;
  }

  .header-description {
    font-size: 1.05rem !important;
    line-height: 1.45 !important;
    margin-bottom: 20px !important;
  }

  .no-bs-heading,
  .lifetime-guarantee-heading,
  .our-services-page-heading,
  .faq-heading-new,
  .uui-heading-medium-2 {
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
    margin-top: 0 !important;
    margin-bottom: 8px !important;
    text-wrap: balance;
  }

  .lifetime-guarantee-heading .sub-phrase,
  .our-services-heading .sub-heading {
    font-size: 1.15rem !important;
    line-height: 1.3 !important;
    margin-top: 4px !important;
  }

  .lg-description,
  .uui-text-size-large-2,
  .our-services-page-heading-desc,
  .faq-desc {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 24px !important;
  }

  .no-bs-description.big {
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }

  .bullet-points-wrapper {
    margin-top: 14px !important;
  }

  .no-bs-bullet-points {
    font-size: 0.92rem !important;
    line-height: 1.45 !important;
    margin-bottom: 8px !important;
  }

  .service-title,
  .our-services-card-heading {
    font-size: 1.18rem !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }

  .faq-accordion-tittle-text {
    font-size: 1rem !important;
    line-height: 1.35 !important;
  }

  .faq-text-answer {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
  }

  /* -------------------------------------------------------------
     MOBILE NAVBAR: PIN LOGO TO LEFT & HAMBURGER TO FAR RIGHT
     ------------------------------------------------------------- */
  .section-new.nav {
    padding: 0 !important;
  }

  .section-new.nav .container-new,
  .section-new.nav .w-container,
  .section-new.nav .navbar,
  .section-new.nav .navbar-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .section-new.nav .nav-container {
    width: 100% !important;
    max-width: 100% !important;
    height: 56px !important;
    min-height: 56px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
    padding: 0 16px !important;
    position: relative !important;
  }

  /* Logo firmly left */
  .brand.w-nav-brand {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    margin: 0 auto 0 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
  }

  .brand.w-nav-brand .image {
    height: 38px !important;
    max-height: 38px !important;
    width: auto !important;
    position: static !important;
    top: auto !important;
    margin: 0 !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
  }

  /* Hamburger firmly right */
  .nav-mobile-toggle {
    display: flex !important;
    margin: 0 0 0 auto !important;
    align-self: center !important;
    flex-shrink: 0 !important;
  }

  /* Dropdown drawer under the 56px bar */
  .section-new.nav .nav-menu {
    position: absolute !important;
    top: 56px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35) !important;
  }
}

/* 4. Extra Small Phones (<= 479px) */
@media screen and (max-width: 479px) {
  .hero-heading {
    font-size: 1.65rem !important;
  }

  .no-bs-heading,
  .lifetime-guarantee-heading,
  .uui-heading-medium-2 {
    font-size: 1.45rem !important;
  }

  .service-card-body {
    padding: 20px 18px 24px 18px !important;
  }

  .section-new.nav .nav-container {
    padding: 0 12px !important;
  }
}

/* ==========================================================================
   MOBILE FIX: "42 YEARS OF..." BOTTOM BANNER
   ========================================================================== */
@media screen and (max-width: 767px) {
  /* Target any banner heading / text near the bottom callout */
  .heading-huge,
  .display-heading,
  .footer-banner-heading,
  .cta-heading,
  .community-heading,
  .community-service-heading,
  .section-new:last-of-type h1,
  .section-new:last-of-type h2,
  .section-new:last-of-type h3,
  .section-new:last-of-type .heading,
  div:has(> .footer) -before h2,
  /* Universal catch for headings inside any pre-footer callout section */
  .section-new:not(.nav) h2:last-child,
  .section-new:not(.nav) h1:last-child {
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
    text-align: center !important;
    margin: 0 auto 12px auto !important;
    max-width: 90% !important;
  }
}

@media screen and (max-width: 479px) {
  .heading-huge,
  .display-heading,
  .footer-banner-heading,
  .cta-heading,
  .community-heading,
  .community-service-heading,
  .section-new:last-of-type h1,
  .section-new:last-of-type h2,
  .section-new:last-of-type h3,
  .section-new:last-of-type .heading {
    font-size: 1.3rem !important;
    line-height: 1.25 !important;
  }
}