/**
 * XRoof — responsive overflow & layout fixes
 * Loaded after main.css. Prefer root-cause overrides over hiding overflow alone.
 */

/* --------------------------------------------------------------------------
   1. Global containment
   -------------------------------------------------------------------------- */
html {
  overflow-x: clip;
  max-width: 100%;
}

body {
  overflow-x: clip;
  max-width: 100%;
  /* Never split words mid-letter — wrap only between words */
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: normal;
  hyphens: none;
  -webkit-hyphens: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Override aggressive mid-word breaking from older rules */
p, span, a, li, button, label, td, th, .body-text,
.services-details__text, .area-details__text,
.faq__question, .faq__answer, .faq__answer p {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

/* Contain media without fighting original object-fit / cover sizing */
img,
video,
iframe {
  max-width: 100%;
}

/* Flex/grid children must be allowed to shrink */
.row > [class*="col"],
.services__card,
.projects__card,
.why-choose-us__card,
.testimonials__card,
.footer__brand,
.footer__links,
.footer__hours,
.footer__newsletter,
.about__left,
.about__right,
.hero__left,
.hero__right {
  min-width: 0;
}

/* Long labels / headings must wrap, not stretch the layout */
h1, h2, h3, h4, h5, h6,
.title-xxl,
.title-xl,
.title-xl-white,
.services__card-title,
.projects__card-title,
.services-details__highlight-title,
.breadcrumbs__title,
.why-choose-us__card-title,
.about__title,
.hero__title,
.contact__title,
.footer__cta-title,
.nav__link {
  overflow-wrap: break-word;
  word-break: normal;
}

/* --------------------------------------------------------------------------
   2. Header / desktop dropdowns (long service & area names)
   -------------------------------------------------------------------------- */
.header .nav__submenu {
  min-width: min(280px, 90vw);
  max-width: min(320px, 92vw);
}

.header .nav__submenu .nav__link {
  white-space: normal;
  line-height: 1.35;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.header .nav__btn {
  flex-shrink: 0;
}

@media (max-width: 400px) {
  .header .nav__btn {
    font-size: 0.8125rem;
    padding-inline: 0.75rem;
  }

  .header .nav__btn svg {
    display: none;
  }
}

.header__container,
.header__bottom .container,
.header__top-container {
  max-width: 100%;
}

/* --------------------------------------------------------------------------
   3. Offcanvas mobile accordion (Services / Areas dropdowns)
   -------------------------------------------------------------------------- */
.offcanvas {
  max-width: min(600px, 100vw);
  padding-inline: 1rem;
  -webkit-overflow-scrolling: touch;
}

.offcanvas .nav__submenu {
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: max-height 0.35s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.offcanvas .nav__submenu.active {
  /* Enough room for 8+ service/area links; scroll if still tall */
  max-height: min(70vh, 900px) !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.offcanvas .nav__submenu .nav__link {
  font-size: 1rem;
  white-space: normal;
  line-height: 1.35;
  padding-block: 0.85rem;
  min-height: 44px;
  pointer-events: auto;
  touch-action: manipulation;
}

.offcanvas .nav__item-has-children > .nav__link {
  gap: 0.5rem;
  min-height: 48px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.offcanvas .nav__item-has-children > .nav__link.active,
.offcanvas .nav__link:hover,
.offcanvas .current-menu-item > .nav__link {
  color: #167CF5;
}

/* Sidebar service / area “tabs” — tappable + brand active */
.sidebar__services .sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 0;
  list-style: none;
}

.sidebar__services .sidebar__item {
  margin-bottom: 0 !important;
}

.sidebar__services .sidebar__item a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  color: #0f0e0e !important;
  text-decoration: none !important;
  font-weight: 500;
  background: #fff;
  border: 1px solid rgba(15, 14, 14, 0.08);
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(22, 124, 245, 0.15);
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.sidebar__services .sidebar__item a:hover {
  border-color: #167CF5;
  color: #167CF5 !important;
}

.sidebar__services .sidebar__item.is-active a,
.sidebar__services .sidebar__item--active a {
  background: #167CF5 !important;
  border-color: #167CF5 !important;
  color: #ffffff !important;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   4. Hero — bg image only (no man), quote form restored, gap before stats
   -------------------------------------------------------------------------- */
.hero--style-1 {
  overflow: hidden;
}

.hero--bg-only .hero__left,
.hero--bg-only .hero__right {
  position: relative;
  z-index: 15;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.hero--bg-only .hero__container {
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.hero--bg-only .hero__stats {
  position: relative;
  z-index: 2;
  margin-top: clamp(1.5rem, 3vw, 3rem);
}

.hero__right-content,
.hero__form-wrap {
  max-width: 100%;
  width: 100%;
}

.hero__stats {
  gap: clamp(1rem, 4vw, 7rem) !important;
  flex-wrap: wrap !important;
}

.hero__stats-item {
  flex: 1 1 140px;
  min-width: 0;
}

@media (max-width: 575.98px) {
  .hero__btn-wrap {
    flex-direction: column;
    align-items: flex-start !important;
  }

  /* Appointment CTA can stretch; phone circle must stay 48×48 */
  .hero__btn-wrap .hero__btn.btn-icon-right-primary {
    justify-content: center;
    width: 100%;
  }

  .hero__btn-wrap .hero__btn.btn-phn-primary {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }
}

/* --------------------------------------------------------------------------
   5. About — image left / text right from lg; smaller 99% badge on image right
   -------------------------------------------------------------------------- */
.about--style-1 .about__left {
  justify-content: flex-start;
  margin-right: 0;
  width: 100%;
}

.about--style-1 .about__img-wrap {
  max-width: 100%;
}

.about--style-1 .about__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.about--style-1 .about__right {
  margin-left: 0;
  padding-top: 0;
}

.about--style-1 .about__stat {
  left: auto;
  right: 0.75rem;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  max-width: 140px;
  width: auto;
  padding: 0.75rem 1rem !important;
}

.about--style-1 .about__stat-number {
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
  line-height: 1.1 !important;
}

.about--style-1 .about__stat-text {
  font-size: 13px;
  line-height: 1.3;
}

@media (max-width: 991.98px) {
  .about--style-1 .about__stat {
    position: absolute;
    right: 0.75rem;
    top: auto;
    bottom: 0.75rem;
    transform: none;
    max-width: 130px;
  }

  .about--style-1 .about__right {
    padding-top: 0.5rem;
  }
}

/* --------------------------------------------------------------------------
   6. Services / Areas cards
   -------------------------------------------------------------------------- */
.services--style-1 .services__card {
  height: 100%;
  max-width: 100%;
}

.services--style-1 .services__card-title {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
}

.services--style-1 .services__card-text {
  overflow-wrap: break-word;
  word-break: normal;
}

.services--secondary .services__card {
  flex-wrap: wrap;
}

.services--secondary .services__card-image,
.services--secondary .services__card-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.services__header,
.projects__header,
.team__header,
.blog__header {
  flex-wrap: wrap !important;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   7. Why Choose Us — keep original 125% shape; clip overflow only
   -------------------------------------------------------------------------- */
.why-choose-us {
  overflow: hidden;
}

@media (max-width: 1199.98px) {
  .why-choose-us__shape {
    display: none;
  }
}

.why-choose-us__cards {
  min-width: 0;
}

.why-choose-us__card-description {
  overflow-wrap: break-word;
  word-break: normal;
}

/* --------------------------------------------------------------------------
   8. Projects grid + lightbox thumbs
   -------------------------------------------------------------------------- */
/* Project assets are ~459×350 (~4:3); frame matches original cover behavior */
.projects__card-thumb-wrap {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 459 / 350;
}

.projects__card-thumb-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.projects__card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.projects__card-title {
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  margin-bottom: 0;
}

.projects__desc {
  max-width: 100%;
}

.projects__filter {
  column-gap: 0.75rem !important;
  row-gap: 0.75rem !important;
  padding-inline: 0.25rem;
}

.projects__filter-item {
  font-size: clamp(0.75rem, 2.2vw, 1.125rem);
  padding: 0.4rem 0.9rem;
}

/* GLightbox mobile safety */
.glightbox-container img,
.gslide-image img {
  max-width: 100vw !important;
  max-height: 85vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

.goverlay {
  max-width: 100vw;
}

/* --------------------------------------------------------------------------
   9. Achievement / testimonials — single image left, copy right
   -------------------------------------------------------------------------- */
.achievement {
  overflow: hidden;
}

.achievement--white-bg,
.achievement.achievement--white-bg {
  background: #ffffff !important;
  background-image: none !important;
  background-attachment: scroll !important;
}

.achievement__left,
.achievement__right {
  min-width: 0;
}

.achievement__img-wrap {
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.achievement__img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.achievement__right {
  padding-top: 0;
}

.testimonials__card {
  max-width: 100%;
}

.testimonials__text,
.testimonials__card-text {
  overflow-wrap: break-word;
  word-break: normal;
}

/* --------------------------------------------------------------------------
   9b. Home FAQ + footer CTA solid red (no placeholder image)
   -------------------------------------------------------------------------- */
.faq--style-1 {
  background: #ECF5FE;
}

.faq--style-1 .faq__title {
  text-align: center;
}

.faq--style-1 .faq__list {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.footer__cta {
  background: #167CF5 !important;
}

.footer__cta-bg {
  display: none !important;
  background-image: none !important;
}

/* --------------------------------------------------------------------------
   10. Compact header
   -------------------------------------------------------------------------- */
.header--style-1 .header__top {
  padding-top: 0.35rem !important;
  padding-bottom: 0.35rem !important;
}

.header--style-1 .header__info-text {
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.header--style-1 .header__social-link {
  width: 26px;
  height: 26px;
}

.header--style-1 .header__bottom {
  max-height: 72px;
  margin-bottom: -72px;
}

.header--style-1 .header__bottom .header__container {
  padding-top: 0.55rem !important;
  padding-bottom: 0.55rem !important;
}

.header--style-1 .nav__logo {
  max-width: 180px;
  flex-shrink: 1;
  min-width: 0;
}

.header--style-1 .nav__logo .nav__link {
  display: flex;
  align-items: center;
  max-width: 100%;
}

.header--style-1 .nav__logo-img {
  max-height: 46px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

/* Footer + offcanvas: keep uploaded logos inside brand slots */
.footer__logo-wrap {
  max-width: 200px;
}

.footer__logo {
  max-height: 56px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.offcanvas__logo {
  max-width: 180px;
  min-width: 0;
}

.offcanvas__logo-img {
  max-height: 40px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.header--style-1 .nav__menu > .nav__item > .nav__link {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  font-size: 0.95rem;
}

.header--style-1 .nav__btn {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  font-size: 0.9rem;
}

.hero--style-1 {
  padding-top: 118px;
}

@media (max-width: 1024px) {
  .hero--style-1 {
    padding-top: 100px;
  }
}

/* --------------------------------------------------------------------------
   11. Vision & Values + owner video
   -------------------------------------------------------------------------- */
.vision--style-1 {
  background: #ffffff;
  overflow: hidden;
}

.vision__video-thumb-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.vision__video-link {
  display: block;
  position: relative;
}

.vision__video-thumb {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.vision__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: transform 0.25s ease;
}

.vision__video-link:hover .vision__play {
  transform: scale(1.06);
}

.vision__video-caption {
  color: #555;
  max-width: 36rem;
}

.vision__title {
  max-width: 34rem;
}

.vision__desc {
  max-width: 36rem;
}

.vision__value {
  padding: 1.1rem 1.25rem;
  border-left: 3px solid #167CF5;
  background: #ECF5FE;
  border-radius: 0 10px 10px 0;
  height: 100%;
}

.vision__value-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: #111;
}

.vision__value-text {
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   12. Testimonials horizontal slider
   -------------------------------------------------------------------------- */
.testimonials--slider .testimonials__slider-wrap {
  overflow: hidden;
}

.testimonials--slider .testimonials__slide {
  padding: 0.25rem;
}

.testimonials--slider .testimonials__card {
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.testimonials--slider .testimonials__card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.testimonials--slider .testimonials__card-author {
  margin-top: auto;
}

.testimonials__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #167CF5;
  background: #ffffff;
  color: #167CF5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.testimonials__nav-btn:hover {
  background: #167CF5;
  color: #ffffff;
}

.testimonials__google-reviews {
  display: flex;
  justify-content: center;
  width: 100%;
}

.testimonials__google-btn {
  margin-top: 0;
}

/* Ensure Why Choose Us has breathing room */
.why-choose-us--style-1 .why-choose-us__container {
  padding-top: clamp(3rem, 6vw, 5.5rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
}

/* --------------------------------------------------------------------------
   13. Owner message + mission/values (about + home)
   -------------------------------------------------------------------------- */
.owner-message--style-1,
.mission-values--style-1 {
  background: #ffffff;
  overflow: hidden;
}

.mission-values--style-1 {
  background: #ECF5FE;
}

.owner-message__title {
  max-width: 34rem;
}

.owner-message__desc {
  max-width: 36rem;
}

.owner-message--centered .owner-message__header {
  text-align: center;
}

.owner-message--centered .owner-message__title,
.owner-message--centered .owner-message__desc {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.owner-message--centered .owner-message__video-wrap {
  width: 100%;
  max-width: 920px;
}

.owner-message--centered .vision__video-thumb {
  aspect-ratio: 16 / 9;
  min-height: 280px;
}

@media (min-width: 992px) {
  .owner-message--centered .vision__video-thumb {
    min-height: 420px;
  }
}

.testimonials--slider .testimonials__card-author-img-wrap {
  display: none !important;
}

.testimonials--slider .testimonials__card-author {
  align-items: flex-start;
}

/* Area SEO pages: content-first, no decorative media */
.area-details--seo .services-details__highlight-thumb,
.area-details--seo .area-details__highlight-thumb {
  display: none !important;
}

.area-seo-sub {
  margin-top: 2rem;
}

.area-seo-sub h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.related-projects {
  margin-top: 2.5rem;
}

.related-projects__card {
  height: 100%;
  background: #ECF5FE;
  border-radius: 12px;
  overflow: hidden;
}

.related-projects__thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.related-projects__body {
  padding: 1.1rem 1.25rem 1.35rem;
}

.related-projects__title {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.related-projects__title a {
  color: inherit;
  text-decoration: none;
}

.related-projects__title a:hover {
  color: #167CF5;
}

/* Compact emergency CTA on services/areas listing */
.services__card--emergency-compact {
  max-width: 640px;
  margin-inline: auto;
  min-height: 0 !important;
  padding: 1.25rem 1.5rem !important;
}

.services__card--emergency-compact .services__card-image {
  max-width: 180px;
}

.services__card--emergency-compact .services__card-title {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

@media (max-width: 767.98px) {
  .services__card--emergency-compact .services__card-image {
    display: none;
  }
}

/* Area sidebar Serving card — solid pink */
.sidebar__appointment-card--pink {
  min-height: 280px !important;
  background: #ECF5FE !important;
  background-image: none !important;
}

.sidebar__appointment-card--pink::before {
  display: none !important;
}

.sidebar__appointment-card--pink .appointment-card__body {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  height: auto !important;
  padding: 1.5rem !important;
  justify-content: flex-start !important;
}

.sidebar__appointment-card--pink .appointment-card__heading,
.sidebar__appointment-card--pink .appointment-card__description {
  color: #111 !important;
}

.sidebar__appointment-card--pink .appointment-card__description {
  opacity: 1 !important;
}

/* Area SEO page title in black */
.area-details__title--dark,
.area-details--seo .area-details__highlight-title,
.area-details--seo h1.services-details,
.services-details__highlight-title {
  color: #111 !important;
}

/* Breadcrumbs: restore standard background image treatment */
.breadcrumbs--style-1 {
  background-color: #1a1a1a;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.breadcrumbs--style-1 .breadcrumbs__title {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   10. Service / Area detail
   -------------------------------------------------------------------------- */
.services-details,
.services-details__right,
.services-details__content {
  max-width: 100%;
  min-width: 0;
}

.services-details__highlight-thumb {
  width: 100%;
  overflow: hidden;
}

.services-details__highlight-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.sidebar {
  max-width: 100%;
}

.sidebar__item,
.sidebar__item a {
  overflow-wrap: break-word;
  word-break: normal;
}

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */
.footer__inner {
  column-gap: clamp(1.25rem, 3vw, 5rem) !important;
  row-gap: 2rem !important;
}

.footer__brand,
.footer__newsletter {
  max-width: 100% !important;
  flex: 1 1 220px;
}

.footer__links,
.footer__hours {
  flex: 1 1 160px;
}

.footer__cta-container {
  width: 100%;
  padding-inline: clamp(0.75rem, 3vw, 1.5rem);
}

.footer__cta-title,
.footer__cta-desc {
  max-width: 100%;
}

.footer__cta-bg {
  max-width: min(900px, 100%);
}

.footer__bottom-wrap,
.footer__bootom-nav,
.footer__nav {
  flex-wrap: wrap;
  max-width: 100%;
}

@media (max-width: 767.98px) {
  .footer__cta-container {
    margin-bottom: -5rem;
  }

  .footer__content {
    padding-top: 5rem;
  }
}

/* --------------------------------------------------------------------------
   12. 404 — fixed min-widths caused horizontal scroll under ~760px
   -------------------------------------------------------------------------- */
.error__area {
  min-width: 0 !important;
  width: min(760px, calc(100vw - 2rem)) !important;
  max-width: calc(100vw - 2rem) !important;
  left: 50%;
  box-sizing: border-box;
}

.error__title,
.error__subtitle,
.error__text {
  overflow-wrap: break-word;
  word-break: normal;
}

/* --------------------------------------------------------------------------
   13. Contact / FAQ / breadcrumbs
   -------------------------------------------------------------------------- */
.contact__container,
.faq__container,
.breadcrumbs__container {
  max-width: 100%;
}

.breadcrumbs__list {
  flex-wrap: wrap;
}

.faq__question {
  overflow-wrap: break-word;
  word-break: normal;
  text-align: left;
}

.hero__form-textarea {
  resize: vertical;
  min-height: 5.5rem;
  font: inherit;
}

.contact-form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status,
.contact-form__status {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status.is-success,
.contact-form__status.is-success {
  color: #1b6b3a;
}

.form-status.is-error,
.contact-form__status.is-error {
  color: #b42318;
}

.hero__form-input.is-invalid,
.hero__form-textarea.is-invalid,
.contact-form__input.is-invalid,
.contact-form__textarea.is-invalid {
  border-color: #b42318 !important;
}

.hero__form-submit:disabled,
.contact-form__btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.contact-form__input,
.contact-form__textarea,
.hero__form-input {
  max-width: 100%;
}

/* --------------------------------------------------------------------------
   14. Utility: prevent accidental page-wide scroll from absolute deco
   -------------------------------------------------------------------------- */
.about--style-1,
.hero--style-1,
.why-choose-us--style-1,
.services--style-1,
.projects--style-1,
.achievement--style-1,
.testimonials--style-1,
.vision--style-1,
.contact--style-1,
.contact--style-2,
.breadcrumbs--style-1 {
  overflow-x: clip;
  max-width: 100%;
}

section {
  max-width: 100vw;
}

/* --------------------------------------------------------------------------
   15. Projects header BG + quick contact FAB
   -------------------------------------------------------------------------- */
.breadcrumbs--style-1 {
  position: relative;
  background-position: center center !important;
  background-size: cover !important;
}

.breadcrumbs--style-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 0;
}

.breadcrumbs--style-1 > * {
  position: relative;
  z-index: 1;
}

.progress-circle {
  display: none !important;
}

.quick-contact-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.quick-contact-fab__toggle {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: #167CF5;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(22, 124, 245, 0.35);
  transition: transform 0.25s ease, background 0.2s ease;
}

.quick-contact-fab__toggle:hover {
  background: #167CF5;
}

.quick-contact-fab__icon {
  display: block;
}

.quick-contact-fab__icon--close {
  display: none;
}

.quick-contact-fab.is-open .quick-contact-fab__icon--contact {
  display: none;
}

.quick-contact-fab.is-open .quick-contact-fab__icon--close {
  display: block;
}

.quick-contact-fab__menu {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: center;
}

.quick-contact-fab__menu[hidden] {
  display: none !important;
}

.quick-contact-fab__link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: #167CF5;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.quick-contact-fab__link:hover {
  background: #167CF5;
  color: #ffffff;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   16. Process steps (home compact + services detailed)
   -------------------------------------------------------------------------- */
.process-steps {
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

.process-steps__intro {
  max-width: 640px;
}

#our-process {
  scroll-margin-top: 100px;
}

.process-steps__item--compact {
  height: 100%;
  padding: 1.5rem 1.25rem;
  border-top: 3px solid #167CF5;
  background: #f7f7f7;
}

.process-steps__num {
  display: inline-block;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: #167CF5;
  margin-bottom: 0.75rem;
}

.process-steps__title {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  margin-bottom: 0.65rem;
  color: #111;
}

.process-steps__text {
  color: #555;
  line-height: 1.55;
}

.process-steps__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 900px;
  margin-inline: auto;
}

.process-steps__item--detailed {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.5rem;
  align-items: start;
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  background: #f7f7f7;
  border-left: 3px solid #167CF5;
}

.process-steps__item--detailed .process-steps__num {
  font-size: 1.35rem;
  margin-bottom: 0;
  line-height: 1.2;
  min-width: 2.5rem;
}

@media (max-width: 575.98px) {
  .process-steps__item--detailed {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* --------------------------------------------------------------------------
   17. Why choose a local roofer (areas page)
   -------------------------------------------------------------------------- */
.local-roofer {
  padding-block: clamp(3rem, 6vw, 5.5rem);
  background: #f7f7f7;
}

.local-roofer__intro {
  max-width: 640px;
}

.local-roofer__card {
  height: 100%;
  padding: 1.5rem 1.35rem;
  background: #ffffff;
  border-top: 3px solid #167CF5;
}

.local-roofer__card-title {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 0.75rem;
  color: #111;
}

.local-roofer__card-text {
  color: #555;
  line-height: 1.55;
}

/* Bootstrap row negative margins stay inside clipped parents */
.container,
.container-fluid {
  max-width: 100%;
}

/* Terms / Privacy legal pages */
.legal-page__heading {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #111;
  line-height: 1.35;
}

.legal-page a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Our Story (About page) — text left, photo right, white bg
   -------------------------------------------------------------------------- */
.our-story {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  overflow: clip;
}

.our-story__title {
  margin: 0 0 1rem;
}

.our-story__text {
  margin: 0;
  max-width: 36rem;
  color: #555;
  line-height: 1.7;
}

.our-story__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f0f0;
}

.our-story__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .our-story__copy {
    margin-bottom: 0.5rem;
  }
}
