/* Shared CTA */
.shared-cta {
  padding: 0;
  background: #E1E7EB;
}

.shared-cta .container {
  text-align: center;
  padding: 120px 80px 120px;
}

.shared-cta h2 {
  font-family: var(--sans, "Poppins", sans-serif);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.19;
  color: var(--ink, #061C2D);
  margin-bottom: 20px;
  max-width: 1000px;
  margin-inline: auto;
}

.shared-cta p {
  font-family: var(--sans, "Poppins", sans-serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink, #061C2D);
  margin-bottom: 61px;
  max-width: 770px;
  margin-inline: auto;
}

.shared-cta .btn-layout {
  margin-inline: auto;
}

.shared-cta .scenic {
  --parallax-y: 0px;
  position: relative;
  width: 100%;
  min-height: 540px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.90) 100%),
    url("../img/hero-image.webp");
  background-attachment: fixed, fixed;
  background-position:
    center,
    center calc(50% + var(--parallax-y));
  background-repeat: no-repeat;
  background-size: auto, cover;
}

.shared-cta .scenic::after {
  content: none;
}

/* Shared related services */
.related-services .header {
  text-align: left;
  margin-bottom: 98px;
}

.related-services .eyebrow {
  margin-bottom: 8px;
}

.home-services.related-services.interior .section-title {
  margin-bottom: 30px;
}

.related-services .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px 210px;
}

.related-services .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  text-decoration: none;
  transition: transform 0.2s ease;
  gap: 30px;
}

.related-services .card:hover {
  transform: translateY(-4px);
}

.related-services .card img {
  width: 83px;
  height: 83px;
  transition: transform 0.28s ease, filter 0.28s ease;
  transform-origin: center;
}

.related-services .card:hover img {
  transform: translateY(-6px) scale(1.06);
  filter: drop-shadow(0 12px 18px rgba(6, 28, 45, 0.14));
}

.related-services .card span:last-child {
  font-family: var(--sans, "Poppins", sans-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink, #061C2D);
  display: block;
}
section.home-services.related-services.interior {
    margin: 110px 0;
}
/* Shared awards */
.shared-awards {
  padding: 90px 0;
  background: var(--bg, #FFFFFF);
}

.shared-awards .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.shared-awards .logos img {
  height: 80px;
  width: auto;
}

/* Shared bottom sections */
.bottom-contact .grid {
  display: flex;
  gap: 131px;
  align-items: stretch;
}
section.bottom-contact {
    background-color: #E7ECEF;
    padding: 80px 0;
}

.bottom-contact .content {
   
}

.bottom-contact .inner {
  max-width: 500px;
}

.bottom-contact .eyebrow {
  margin-bottom: 10px;
}

.bottom-contact h2 {
  margin-bottom: 80px;
}

.bottom-contact .body p {
  margin-bottom: 36px;
}

.bottom-contact .body p:last-child {
  margin-bottom: 0;
}

.bottom-contact .actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-top: 70px;
}

.bottom-contact .actions .btn-layout {
  justify-content: center;
  /* max-width: none; */
  width: 390px;
}

.bottom-contact .phone {
  /* white-space: nowrap; */
}

.bottom-contact .contact-details {
  list-style: none;
  margin: 24px 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bottom-contact .contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans, "Poppins", sans-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.12px;
  color: var(--ink, #061C2D);
  min-width: 0;
}

.bottom-contact .contact-details li > span:not(.cnm-icon),
.bottom-contact .contact-details li > a {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 386px) {
  .bottom-contact .contact-details li {
    font-size: 16px;
    line-height: 1.4;
    gap: 10px;
  }

  .bottom-contact .contact-details .cnm-icon {
    font-size: 16px;
  }
}

.bottom-contact .contact-details .cnm-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.bottom-contact .contact-details a {
  color: inherit;
  text-decoration: none;
}

.bottom-contact .contact-details a:hover {
  text-decoration: underline;
}

.bottom-contact .form {
  flex: 1 1 0;
  /* padding: 80px 60px; */
  display: flex;
  align-items: center;
  align-items: flex-start;
  margin-top: 40px;
  /* justify-content: center; */
}

.bottom-contact.bottom-contact--form-only .grid {
  justify-content: center;
}

.bottom-contact.bottom-contact--form-only .form {
  flex: 0 1 1251px;
  width: 100%;
  margin-top: 0;
}

.bottom-map .map {
  position: relative;
  width: 100%;
  height: clamp(280px, 52vw, 624px);
  line-height: 0;
  overflow: hidden;
}

.bottom-map .map-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 52%;
}

/* Shared newsletter */
.site-footer__newsletter {
  background: var(--charcoal, #404C5A);
  padding: 60px 0;
}

.site-footer__newsletter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.site-footer__newsletter-heading {
  font-family: var(--sans, "Poppins", sans-serif);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bg, #FFFFFF);
  margin: 0;
}

.site-footer__newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.site-footer__newsletter-input {
  font-family: var(--sans, "Poppins", sans-serif);
  font-size: 20px;
  padding: 20px 20px;
  border: none;
  background: var(--bg, #FFFFFF);
  color: var(--ink, #061C2D);
  min-width: 280px;
}

.site-footer__newsletter-input::placeholder {
  color: var(--ink-muted, #707070);
}

.site-footer__newsletter-form .btn-layout {
  border-radius: 0;
  padding: 14px 100px;
  justify-content: center;
}

.site-footer__newsletter-form .btn-layout.blue:hover {
  background: #FFFFFF;
  color: #26526D;
  border-color: #26526D;
}

@media (max-width: 991px) {
  .shared-cta .scenic {
    min-height: 360px;
    background-attachment: scroll, scroll;
  }

  .shared-cta h2 {
    font-size: 32px;
  }
section.home-services.related-services.interior {
    margin: 40px 0;
}
.bottom-contact .inner {
  max-width: 100%;
}
  .bottom-contact .actions .btn-layout {
  justify-content: center;
  /* max-width: none; */
  width: 100%;
}
  section.bottom-contact {
    padding: var(--section-pad-mobile) 0;
  }
  .related-services .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-services h2 {
    font-size: 36px;
  }

  .shared-awards {
    padding: var(--section-pad-mobile) 0;
  }

  .shared-awards .logos {
    gap: 32px;
  }

  .shared-awards .logos img {
    height: 60px;
  }

  .bottom-contact .grid {
    flex-direction: column;
    gap: 0px;
  }

  .bottom-contact .content {
    padding: 50px 30px;
  }

  .bottom-contact h2 {
    font-size: 36px;
  }

  .bottom-contact .form {
    padding: 50px 30px;
  }

  .bottom-contact.bottom-contact--form-only .form {
    padding: 0;
  }

  .bottom-map .map {
    height: clamp(260px, 58vw, 520px);
  }

  .site-footer__newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__newsletter-heading {
    font-size: 28px;
  }
.shared-awards   {
     
   padding:30px 20px 10px!important;
  }
.shared-cta .container {
  text-align: center;
  padding: 80px 20px;
}
}

@media (max-width: 620px) {
  .related-services .cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .related-services h2 {
    font-size: 30px;
  }

  .related-services .card span:last-child {
    font-size: 22px;
  }

  .bottom-contact .content {
    padding: 30px 16px;
  }

  .bottom-contact h2 {
    font-size: 30px;
  }

  .bottom-contact .form {
    padding: 30px 16px;
  }

  .bottom-contact .actions {
    width: 100%;
  }

  .bottom-contact .actions .btn-layout {
    width: 100%;
  }

  .bottom-contact .phone {
    font-size: 16px;
  }

  .bottom-map .map {
    height: 340px;
  }

  .bottom-map .map-image {
    object-position: 50% 52%;
  }

  .site-footer__newsletter {
    padding: var(--section-pad-mobile) 0;
  }

  .site-footer__newsletter-heading {
    font-size: 24px;
  }

  .site-footer__newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .site-footer__newsletter-input {
    min-width: unset;
    width: 100%;
  }

 .shared-awards .logos {
    flex-flow:column;
     
  }
.shared-awards   {
     padding: 50px 0 20px!Important;
  }
}

@media (max-width: 520px) {
  .bottom-map .map {
    height: 360px;
  }

  .bottom-map .map-image {
    object-position: 49% 52%;
  }

  .shared-cta h2 {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shared-cta .scenic {
    background-attachment: scroll, scroll;
  }
}
