/* ============================================================
   GARAGE DOOR SPRINGS INDIANAPOLIS IN
   Organized stylesheet
   ============================================================
   01. Variables / Reset
   02. Header / Navbar
   03. Hero
   04. About
   05. Problems / Warning Signs
   06. Spring Repair Process
   07. Why Choose Us
   08. Offers
   09. Sub Section
   10. FAQ / CTA
   11. Reviews
   12. Contact
   13. Footer
   ============================================================ */

:root {
    --olive-green: #b9d175;
  --deep-forest: #450C3F;

  --white: #ffffff;
  --black: #000000;

  --light-bg: #f7f8f2;
  --border-color: #F5FBDA;

  --text-dark: #000f07;
  --text-muted: rgb(93, 98, 95);
}

/*
 * =========================
 * GENERAL
 * =========================
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--light-bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* ============================================================
   02. HEADER / NAVBAR
   ============================================================ */
.site-header {
  position: relative;
  z-index: 1000;
  background: var(--white);
}

.site-header .navbar {
  min-height: 6rem;
  padding: 0.1rem 0.1rem;
  margin: 0.5rem;
  border-radius: 1.2rem;
  background: var(--olive-green);
}

.site-header .navbar .container {
  display: flex;
  align-items: center;
}

/* Logo */

.site-header .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

.site-header .navbar-brand img {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
  flex-shrink: 0;
}

.site-header .navbar-brand__name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
  white-space: nowrap;
}

.site-header .navbar-brand__name strong {
  color: var(--deep-forest);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.site-header .navbar-brand__name small {
  margin-top: 0.3rem;
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Main Navigation */

.site-header .navbar-nav {
  gap: 0.1rem;
}

.site-header .navbar-nav .nav-item {
  position: relative;
}

.site-header .navbar-nav .nav-link {
  position: relative;
  padding: 0.8rem 0.7rem;
  border: 0;
  color: var(--deep-forest);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link:focus,
.site-header .navbar-nav .nav-link.active {
  color: var(--text-dark) !important;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 700;
}

/* Dropdown */

.site-header .dropdown .dropdown-toggle {
  cursor: pointer;
}

.site-header .dropdown .dropdown-toggle::after {
  margin-left: 0.4rem;
  vertical-align: middle;
}

.site-header .dropdown-menu {
  min-width: 17rem;
  margin-top: 0.65rem;
  padding: 0.55rem;
  border: 0.0625rem solid rgba(0, 15, 7, 0.08);
  border-radius: 0.9rem;
  background: var(--white);
  box-shadow: 0 1.2rem 2.5rem rgba(0, 15, 7, 0.12);
}

.site-header .dropdown-menu .dropdown-item {
  padding: 0.75rem 0.9rem;
  border-radius: 0.6rem;
  color: var(--deep-forest);
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.site-header .dropdown-menu .dropdown-item:hover,
.site-header .dropdown-menu .dropdown-item:focus {
  color: var(--deep-forest);
  background: rgba(232, 249, 0, 0.25);
}

.site-header .dropdown-menu .dropdown-item:active {
  color: var(--deep-forest);

}

/* CTA */

.site-header .navbar-actions {
  flex-shrink: 0;
  margin-left: 0.8rem;
}

.site-header .navbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.35rem 0.4rem 0.35rem 1.15rem;
  border-radius: 3rem;
  color: var(--deep-forest);
 background-color: var(--border-color);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.site-header .navbar-cta__icon {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--deep-forest);
  background: var(--white);
  transition: transform 0.25s ease;
}

.site-header .navbar-cta:hover {
color: var(--deep-forest);
  background: var(--olive-green);
  transform: translateY(-0.125rem);
}

.site-header .navbar-cta:hover .navbar-cta__icon {
  color: var(--deep-forest);
  transform: translateX(0.15rem);
}

/* Mobile Toggle */

.site-header .navbar-toggler {
  width: 3rem;
  height: 3rem;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--olive-green);
  box-shadow: none;
}

.site-header .navbar-toggler span {
  width: 1.25rem;
  height: 0.125rem;
  display: block;
  border-radius: 1rem;
  background: var(--deep-forest);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.site-header .navbar-toggler:focus {
  box-shadow: none;
}

.site-header .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.425rem) rotate(45deg);
}

.site-header .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.425rem) rotate(-45deg);
}

/* ============================================================
   HEADER / NAVBAR - RESPONSIVE
   ============================================================ */

@media (max-width: 1199px) {
  .site-header .navbar-collapse {
    width: 100%;
    flex-basis: 100%;
    margin-top: 0.75rem;
    overflow: hidden;
    border: 0.0625rem solid rgba(0, 15, 7, 0.08);
    border-radius: 1rem;
    background: var(--white);
    box-shadow: 0 1rem 2.5rem rgba(0, 15, 7, 0.12);
  }

  .site-header .navbar-nav {
    width: 100%;
    padding: 0.75rem;
  }

  .site-header .navbar-brand {
    gap: 0.55rem;
  }

  .site-header .navbar-brand img {
    width: 4.25rem;
    height: 4.25rem;
  }

  .site-header .navbar-brand__name strong {
    font-size: 0.85rem;
  }

  .site-header .navbar-brand__name small {
    font-size: 0.6rem;
  }
}

@media (max-width: 991px) {
  .site-header .navbar {
    min-height: 5rem;
  }

  .site-header .navbar-toggler {
    display: flex;
  }

  .site-header .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: 0 1rem 2.5rem rgba(0, 15, 7, 0.1);
  }

  .site-header .navbar-nav {
    align-items: stretch !important;
  }

  .site-header .navbar-nav .nav-link {
    width: 100%;
    padding: 0.9rem;
    border-radius: 0.6rem;
    text-align: left;
  }

  .site-header .navbar-nav .nav-link:hover {
    background: rgba(185, 209, 117, 0.12);
  }

  .site-header .navbar-actions {
    margin: 1rem 0 0;
  }

  .site-header .navbar-cta {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .site-header .navbar-brand img {
    width: 9.5rem;
  }
}

@media (max-width: 575px) {
  .site-header .navbar-brand img {
    width: 2.75rem !important;
    height: 2.75rem;
  }

  .site-header .navbar-brand__name {
    display: none;
  }
}

/* ============================================================
   03. HERO
   ============================================================ */

.hero-section {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - 7rem);
  margin: 0 0.5rem 1rem;
  overflow: hidden;
  border-radius: 1.4rem;
  color: var(--deep-forest);
  isolation: isolate;
}

.hero-section__background {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("/img/garage-door-spring-repair.webp") center center / cover no-repeat;
}

.hero-section__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    90deg,
    rgba(245, 251, 218, 0.85) 0%,
    rgba(245, 251, 218, 0.68) 32%,
    rgba(245, 251, 218, 0.36) 60%,
    rgba(245, 251, 218, 0.12) 100%
  );
}

.hero-section__container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding-top: 5rem;
  padding-bottom: 9rem;
}

.hero-section__content {
  max-width: 48rem;
}

.hero-section h1 {
  max-width: 60rem;
  margin: 0;
  color: var(--deep-forest);
  font-size: clamp(2.9rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero-section h1 strong {
  display: inline;
  color: var(--black);
  font-weight: 800;
}

.hero-section__heading-light {
  display: inline;
  color: var(--deep-forest);
}

.hero-section__heading-outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 0.3rem rgba(69, 12, 63, 0.85);
  text-stroke: 0.5rem rgba(69, 12, 63, 0.85);
}

.hero-section__description {
  max-width: 40rem;
  margin: 1.8rem 0 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-section__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-section .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.3rem;
  padding: 0.4rem 0.45rem 0.4rem 1.3rem;
  border-radius: 3rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.hero-section .hero-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  border-radius: 50%;
}

.hero-section .hero-btn:hover {
  transform: translateY(-0.15rem);
}

.hero-section .hero-btn--primary {
  color: var(--deep-forest);
  background: var(--white);
}

.hero-section .hero-btn--primary .hero-btn__icon {
  color: var(--deep-forest);
  background: var(--white);
}

.hero-section .hero-btn--primary:hover {
  background: var(--white);
}

.hero-section .hero-btn--outline {
  border: 0.0625rem solid rgba(255, 255, 255, 0.55);
  color: var(--deep-forest);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(0.3rem);
}

.hero-section .hero-btn--outline .hero-btn__icon {
  color: var(--deep-forest);
  background: var(--white);
}

.hero-section .hero-btn--outline:hover {
  border-color: var(--olive-green);
  background: rgba(185, 209, 117, 0.1);
}

.hero-section__stats {
  position: absolute;
  right: 0.75rem;
  bottom: 2rem;
  left: 0.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 1.5rem !important;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.16);
}

.hero-section__stat {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 4rem;
  padding: 0 1.5rem;
  border-right: 0.0625rem solid rgba(0, 0, 0, 0.5);
}

.hero-section__stat:first-child {
  padding-left: 0;
}

.hero-section__stat:last-child {
  border-right: 0;
}

.hero-section__stat strong {
  color: var(--deep-forest);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-section__stat span {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
  opacity: 0.7;
}

@media (max-width: 1199px) {
  .hero-section h1 {
    font-size: clamp(3.4rem, 7vw, 5.8rem);
  }
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
  }

  .hero-section__container {
    padding-top: 6rem;
    padding-bottom: 12rem;
  }

  .hero-section__stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-section__stat:nth-child(4) {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-section {
    margin: 0 0.4rem 0.75rem;
    border-radius: 1rem;
  }

  .hero-section__background {
    background-position: 65% center;
  }

  .hero-section__container {
    padding-top: 4.5rem;
    padding-bottom: 15rem;
  }

  .hero-section h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .hero-section__description {
    font-size: 0.95rem;
  }

  .hero-section__buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-section .hero-btn {
    width: 100%;
    justify-content: space-between;
  }

  .hero-section__stats {
    bottom: 1rem;
  }

  .hero-section__stat {
    padding: 0 0.8rem;
  }

  .hero-section__stat strong {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .hero-section__rating {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }

  .hero-section h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
    line-height: 0.92;
  }

  .hero-section__container {
    padding-top: 1rem;
    padding-bottom: 20rem;
  }

  .hero-section__stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-section__stat {
    padding: 0.1rem 0;
    border-right: 0;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.12);
  }

  .hero-section__stat:last-child {
    border-bottom: 0;
  }

  .hero-section__stat strong {
    min-width: 2rem;
    font-size: 1rem;
  }
}

/* ============================================================
   04. ABOUT
   ============================================================ */
.about-section {
  position: relative;
  width: 100%;
  padding: 6.5rem 0;
  overflow: hidden;
  background: var(--light-bg);
}

.about-section .container {
  width: 100%;
  max-width: 82rem;
}

/* =========================================================
   TOP CONTENT
========================================================= */

.about-section__top {
  margin-bottom: 2.75rem;
}

.about-section__title {
  max-width: 48rem;
  margin: 0;

  color: var(--text-dark);

  font-size: clamp(3.4rem, 4.5vw, 4.75rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.about-section__title em {
  color: var(--deep-forest);

  font-weight: 500;
  font-style: italic;
}

.about-section__intro {
  max-width: 30rem;
  margin-left: auto;
  padding-bottom: 0.65rem;
}

.about-section__intro p {
  margin: 0;

  color: var(--text-muted);

  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

/* =========================================================
   MEDIA AREA
========================================================= */

.about-section__media {
  align-items: stretch;
}

.about-section__media > [class*="col-"] {
  display: flex;
}

/* =========================================================
   IMAGES
========================================================= */

.about-section__image {
  position: relative;
  width: 100%;
  overflow: hidden;

  border: 0.0625rem solid var(--border-color);
  border-radius: 1.6rem;

  background: var(--border-color);

  isolation: isolate;
}

.about-section__image::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 60%,
      rgba(0, 0, 0, 0.08) 100%
    );
}

.about-section__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.about-section__image:hover img {
  transform: scale(1.025);
}

/* =========================================================
   LARGE IMAGE
========================================================= */

.about-section__image--large {
  min-height: 35rem;
  height: 100%;
}

.about-section__image--large img {
  min-height: 35rem;
}

/* =========================================================
   RIGHT COLUMN
========================================================= */

.about-section__side {
  display: flex;

  width: 100%;
  height: 100%;

  flex-direction: column;

  gap: 1.5rem;
}

/* =========================================================
   SMALL IMAGE
========================================================= */

.about-section__image--small {
  min-height: 21.5rem;
  flex: 1 1 auto;
}

.about-section__image--small img {
  min-height: 21.5rem;
}

/* =========================================================
   IMAGE BADGE
========================================================= */

.about-section__badge {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;

  z-index: 3;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 0.65rem;

  max-width: calc(100% - 3rem);

  padding: 0.72rem 1.05rem;

  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  border-radius: 100rem;

  background: var(--deep-forest);
  color: var(--white);

  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12);

  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;

  white-space: nowrap;
}

.about-section__badge-dot {
  display: block;

  width: 0.5rem;
  height: 0.5rem;

  flex: 0 0 0.5rem;

  border-radius: 50%;

  background: var(--olive-green);
}

/* =========================================================
   STAT CARD
========================================================= */

.about-section__stat {
  position: relative;

  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;

  min-height: 11rem;

  align-content: center;
  align-items: baseline;

  padding: 1.85rem 2rem;

  overflow: hidden;

  border: 0.0625rem solid rgba(69, 12, 63, 0.08);
  border-radius: 1.6rem;

  background: var(--olive-green);
  color: var(--text-dark);
}

.about-section__stat::after {
  content: "";

  position: absolute;
  right: -3.5rem;
  top: -5rem;

  width: 10rem;
  height: 10rem;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.14);

  pointer-events: none;
}

.about-section__stat-number {
  position: relative;
  z-index: 2;

  color: var(--deep-forest);

  font-size: clamp(3.8rem, 5vw, 5.4rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.about-section__stat-unit {
  position: relative;
  z-index: 2;

  margin-left: 0.65rem;

  color: var(--deep-forest);

  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-section__stat p {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 22rem;

  margin: 1.15rem 0 0;

  color: var(--text-dark);

  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {
  .about-section {
    padding: 7rem 0;
  }

  .about-section .container {
    max-width: 84rem;
  }

  .about-section__image--large {
    min-height: 36rem;
  }

  .about-section__image--large img {
    min-height: 36rem;
  }

  .about-section__image--small {
    min-height: 22rem;
  }

  .about-section__image--small img {
    min-height: 22rem;
  }
}

/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 1199.98px) {
  .about-section {
    padding: 5.5rem 0;
  }

  .about-section__title {
    font-size: clamp(3.2rem, 5.5vw, 4.8rem);
  }

  .about-section__image--large {
    min-height: 32rem;
  }

  .about-section__image--large img {
    min-height: 32rem;
  }

  .about-section__image--small {
    min-height: 19rem;
  }

  .about-section__image--small img {
    min-height: 19rem;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .about-section {
    padding: 4.5rem 0;
  }

  .about-section__top {
    margin-bottom: 2rem;
  }

  .about-section__title {
    max-width: 44rem;

    font-size: clamp(3.1rem, 8vw, 4.8rem);
    line-height: 0.98;
  }

  .about-section__intro {
    max-width: 42rem;

    margin-left: 0;
    padding-bottom: 0;
  }

  .about-section__intro p {
    line-height: 1.6;
  }

  .about-section__media > [class*="col-"] {
    display: block;
  }

  .about-section__image--large {
    min-height: 32rem;
    height: auto;
  }

  .about-section__image--large img {
    min-height: 32rem;
  }

  .about-section__side {
    height: auto;

    gap: 1.5rem;
  }

  .about-section__image--small {
    min-height: 26rem;
  }

  .about-section__image--small img {
    min-height: 26rem;
  }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .about-section {
    padding: 3.75rem 0;
  }

  .about-section__top {
    margin-bottom: 1.75rem;
  }

  .about-section__title {
    max-width: 100%;

    font-size: clamp(2.9rem, 11vw, 4rem);
    line-height: 0.99;
    letter-spacing: -0.045em;
  }

  .about-section__intro {
    margin-top: 0.5rem;
  }

  .about-section__image {
    border-radius: 1.35rem;
  }

  .about-section__image--large {
    min-height: 27rem;
  }

  .about-section__image--large img {
    min-height: 27rem;
  }

  .about-section__image--small {
    min-height: 20rem;
  }

  .about-section__image--small img {
    min-height: 20rem;
  }

  .about-section__badge {
    left: 1rem;
    bottom: 1rem;

    max-width: calc(100% - 2rem);

    padding: 0.7rem 1rem;

    white-space: normal;

    font-size: 0.85rem;
  }

  .about-section__stat {
    min-height: 12rem;

    padding: 1.75rem;

    border-radius: 1.35rem;
  }

  .about-section__stat-number {
    font-size: 4.3rem;
  }

  .about-section__stat-unit {
    font-size: 1.8rem;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .about-section {
    padding: 3.25rem 0;
  }

  .about-section .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .about-section__top {
    margin-bottom: 1.5rem;
  }

  .about-section__title {
    font-size: clamp(2.65rem, 12.5vw, 3.6rem);
  }

  .about-section__intro p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .about-section__image--large {
    min-height: 23rem;
  }

  .about-section__image--large img {
    min-height: 23rem;
  }

  .about-section__image--small {
    min-height: 17.5rem;
  }

  .about-section__image--small img {
    min-height: 17.5rem;
  }

  .about-section__side {
    gap: 1.25rem;
  }

  .about-section__badge {
    gap: 0.5rem;

    font-size: 0.8rem;
  }

  .about-section__stat {
    min-height: 11.5rem;

    padding: 1.5rem;
  }

  .about-section__stat-number {
    font-size: 3.8rem;
  }

  .about-section__stat-unit {
    margin-left: 0.45rem;

    font-size: 1.6rem;
  }

  .about-section__stat p {
    margin-top: 0.9rem;

    font-size: 0.95rem;
    line-height: 1.45;
  }
}

/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 399.98px) {
  .about-section {
    padding: 2.75rem 0;
  }

  .about-section__title {
    font-size: 2.6rem;
  }

  .about-section__image--large {
    min-height: 20rem;
  }

  .about-section__image--large img {
    min-height: 20rem;
  }

  .about-section__image--small {
    min-height: 15rem;
  }

  .about-section__image--small img {
    min-height: 15rem;
  }

  .about-section__stat-number {
    font-size: 3.3rem;
  }

  .about-section__stat-unit {
    font-size: 1.4rem;
  }
}

/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .about-section__image img {
    transition: none;
  }

  .about-section__image:hover img {
    transform: none;
  }
}

/* ============================================================
   05. PROBLEMS / WARNING SIGNS
   ============================================================ */
.problems-section {
  --olive-green: #b9d175;
  --deep-forest: #450C3F;
  --white: #ffffff;
  --black: #000000;
  --light-bg: #f7f8f2;
  --border-color: #F5FBDA;
  --text-dark: #000f07;
  --text-muted: rgb(93, 98, 95);

  position: relative;

  padding: 6rem 0;

  overflow: hidden;
background:
    radial-gradient(
      circle at 10% 15%,
      rgba(255, 255, 255, 0.05),
      transparent 25rem
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(69, 12, 63, 0.3),
      transparent 27rem
    ),
    var(--olive-green);
}

/* .problems-section .container {
  max-width: 82rem;
} */

/* ==========================================
   HEADER
========================================== */

.problems-section__header {
  margin-bottom: 1rem;
}

.problems-section__label {
  display: inline-flex;
  align-items: center;

  gap: 0.65rem;

  margin-bottom: 1rem;

  color: var(--deep-forest);

  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.problems-section__label::before {
  content: "";

  width: 1rem;
  height: 0.1rem;

  background: var(--deep-forest);
}

.problems-section__header h2 {
  max-width: 42rem;

  margin: 0;

  color: var(--deep-forest);

  font-size: clamp(2.3rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.02;

  letter-spacing: -0.05em;
}

.problems-section__header h2 span {
  display: block;
}

.problems-section__intro {
  max-width: 32rem;

  margin: 0 0 0 auto;

  color: rgba(69, 12, 63, 0.75);

  font-size: 1rem;
  line-height: 1.65;
}

/* ==========================================
   GRID
========================================== */

.problems-section__grid {
  align-items: stretch;
}

.problems-section__grid > div {
  display: flex;
}

/* ==========================================
   COMPONENT CARD
========================================== */

.problem-component {
  position: relative;

  display: flex;

  width: 100%;
  min-height: 17rem;

  flex-direction: column;

  padding: 1.75rem;

  overflow: hidden;

  border: 0.0625rem solid rgba(69, 12, 63, 0.22);
  border-radius: 1.25rem;

  background: rgba(255, 255, 255, 0.14);

  color: var(--deep-forest);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.problem-component:hover {
  border-color: var(--deep-forest);

  background: var(--deep-forest);
  color: var(--white);

  transform: translateY(-0.25rem);
}

/* ==========================================
   CARD TOP
========================================== */

.problem-component__top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 2.7rem;
}

/* NUMBER */

.problem-component__number {
  color: rgba(69, 12, 63, 0.28);

  font-size: 2rem;
  font-weight: 500;
  line-height: 1;

  transition: color 0.3s ease;
}

.problem-component:hover .problem-component__number {
  color: rgba(255, 255, 255, 0.32);
}

/* ==========================================
   ICON
========================================== */

.problem-component__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 3rem;
  height: 3rem;

  flex: 0 0 3rem;

  border: 0.0625rem solid rgba(69, 12, 63, 0.3);
  border-radius: 50%;

  color: var(--deep-forest);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.problem-component__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.problem-component:hover .problem-component__icon {
  border-color: var(--olive-green);

  background: var(--olive-green);
  color: var(--deep-forest);

  transform: rotate(8deg);
}

/* ==========================================
   CARD TITLE
========================================== */

.problem-component h2 {
  max-width: 19rem;

  margin: auto 0 0.75rem;

  color: inherit;

  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.25;

  letter-spacing: -0.03em;
}

/* ==========================================
   CARD TEXT
========================================== */

.problem-component p {
  margin: 0;

  color: rgba(69, 12, 63, 0.72);

  font-size: 0.92rem;
  line-height: 1.55;

  transition: color 0.3s ease;
}

.problem-component:hover p {
  color: rgba(255, 255, 255, 0.72);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

  .problems-section {
    padding: 4.5rem 0;
  }

  .problems-section__header {
    margin-bottom: 2.5rem;
  }

  .problems-section__header h2 {
    max-width: 45rem;

    font-size: clamp(2.8rem, 7vw, 4rem);
  }

  .problems-section__intro {
    max-width: 40rem;

    margin-left: 0;
  }

  .problem-component {
    min-height: 16rem;
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

  .problems-section {
    padding: 3.75rem 0;
  }

  .problems-section__header {
    margin-bottom: 2.25rem;
  }

  .problems-section__header h2 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .problem-component {
    min-height: 15rem;

    padding: 1.5rem;
  }

  .problem-component__top {
    margin-bottom: 2rem;
  }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 575.98px) {

  .problems-section {
    padding: 3.25rem 0;
  }

  .problems-section .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .problems-section__header h2 {
    font-size: clamp(2.3rem, 11vw, 3rem);
  }

  .problem-component {
    min-height: 14rem;

    border-radius: 1rem;
  }

  .problem-component__number {
    font-size: 1.7rem;
  }

  .problem-component__icon {
    width: 2.7rem;
    height: 2.7rem;

    flex-basis: 2.7rem;
  }

  .problem-component h2 {
    font-size: 1.3rem;
  }
}

/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

  .problem-component,
  .problem-component__icon {
    transition: none;
  }

  .problem-component:hover,
  .problem-component:hover .problem-component__icon {
    transform: none;
  }
}

/* ============================================================
   06. SPRING REPAIR PROCESS
   ============================================================ */
/* ==========================================
   SPRING PROCESS SECTION
========================================== */

.spring-process-section {
  position: relative;
  padding: 6rem 0;
  background: var(--deep-forest);
  overflow: hidden;
}

.spring-process-section .container {
  max-width: 82rem;
}

/* ==========================================
   TOP AREA
========================================== */

.spring-process-section__top {
  margin-bottom: 4rem;
}

.spring-process-section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;

  color: var(--border-color);

  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.spring-process-section__label span {
  width: 1rem;
  height: 0.125rem;
  display: block;
  background: var(--olive-green);
}

.spring-process-section__intro {
  max-width: 50rem;
}

.spring-process-section__title {
  margin: 0 0 1.25rem;

  color: var(--white);

  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.spring-process-section__intro p {
  max-width: 44rem;
  margin: 0;

  color: rgba(255, 255, 255, 0.62);

  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

/* ==========================================
   STEPS
========================================== */

.spring-process-section__steps {
  position: relative;
}

.spring-process-card {
  height: 100%;
  padding-top: 1.5rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.12);
}

.spring-process-card__number {
  display: inline-block;
  margin-bottom: 1.5rem;

  color: var(--olive-green);

  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.spring-process-card__title {
  margin: 0 0 0.9rem;

  color: var(--white);

  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.spring-process-card p {
  margin: 0;

  color: rgba(255, 255, 255, 0.58);

  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.65;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1199.98px) {
  .spring-process-section {
    padding: 5rem 0;
  }

  .spring-process-section__top {
    margin-bottom: 3.5rem;
  }
}

@media (max-width: 991.98px) {
  .spring-process-section {
    padding: 4.5rem 0;
  }

  .spring-process-section__top {
    margin-bottom: 3rem;
  }

  .spring-process-section__intro {
    max-width: 100%;
  }

  .spring-process-section__title {
    font-size: clamp(2.5rem, 7vw, 4rem);
  }
}

@media (max-width: 767.98px) {
  .spring-process-section {
    padding: 3.75rem 0;
  }

  .spring-process-section__top {
    margin-bottom: 2.5rem;
  }

  .spring-process-section__title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 1.08;
  }

  .spring-process-card {
    padding-top: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .spring-process-section {
    padding: 3.25rem 0;
  }

  .spring-process-section .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .spring-process-section__title {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .spring-process-section__intro p,
  .spring-process-card p {
    font-size: 0.95rem;
  }
}

/* ============================================================
   07. WHY CHOOSE US
   ============================================================ */
/* =====================================================
   WHY CHOOSE SECTION
===================================================== */

.why-choose-section {
  position: relative;
  padding: 6.5rem 0;

  overflow: hidden;

  background:  #450C3F;
  color: var(--white);
}

.why-choose-section .container {
  max-width: 82rem;
}

/* =====================================================
   LABEL
===================================================== */

.why-choose-section__label {
  display: inline-flex;
  align-items: center;

  gap: 0.65rem;

  margin-bottom: 1.5rem;

  color: var(--olive-green);

  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;

  text-transform: uppercase;
}

.why-choose-section__label span {
  display: block;

  width: 1rem;
  height: 0.1rem;

  background: var(--olive-green);
}

/* =====================================================
   HEADER
===================================================== */

.why-choose-section__header {
  margin-bottom: 3.5rem;
}

.why-choose-section__header h2 {
  max-width: 47rem;

  margin: 0;

  color: var(--white);

  font-size: clamp(2.3rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.why-choose-section__header h2 em {
  color: var(--olive-green);

  font-weight: 400;
  font-style: italic;
}

.why-choose-section__header p {
  max-width: 30rem;

  margin: 2rem 0 0 auto;

  color: rgba(255, 255, 255, 0.55);

  font-size: 1rem;
  line-height: 1.65;
}

/* =====================================================
   LIST
===================================================== */

.why-choose-section__list {
  width: 100%;
}

/* =====================================================
   ITEM
===================================================== */

.why-choose-item {
  display: grid;

  grid-template-columns:
    minmax(21rem, 1fr)
    minmax(20rem, 0.9fr)
    3rem;

  align-items: center;

  gap: 2rem;

  min-height: 6.7rem;

  padding: 1.4rem 0;

  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.12);

  color: var(--white);

  text-decoration: none;

  transition:
    padding 0.3s ease,
    border-color 0.3s ease;
}

.why-choose-item:first-child {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.12);
}

.why-choose-item:hover {
  padding-left: 0.5rem;

  border-color: rgba(185, 209, 117, 0.55);
}

/* =====================================================
   ITEM NAME
===================================================== */

.why-choose-item__name {
  display: flex;
  align-items: center;

  gap: 1rem;
}

.why-choose-item__number {
  min-width: 2.2rem;

  color: rgba(255, 255, 255, 0.35);

  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
}

.why-choose-item__title {
  color: var(--white);

  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.2;

  letter-spacing: -0.025em;

  transition: color 0.25s ease;
}

.why-choose-item:hover .why-choose-item__title {
  color: var(--olive-green);
}

/* =====================================================
   DESCRIPTION
===================================================== */

.why-choose-item__text {
  margin: 0;

  color: rgba(255, 255, 255, 0.73);

  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
}

/* =====================================================
   ICON
===================================================== */

.why-choose-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 2.5rem;
  height: 2.5rem;

  border: 0.0625rem solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;

  color: var(--white);

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.why-choose-item__icon svg {
  width: 1rem;
  height: 1rem;
}

.why-choose-item:hover .why-choose-item__icon {
  border-color: var(--olive-green);

  background: var(--olive-green);
  color: var(--text-dark);

  transform: rotate(45deg);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

  .why-choose-section {
    padding: 4.5rem 0;
  }

  .why-choose-section__header {
    margin-bottom: 3rem;
  }

  .why-choose-section__header h2 {
    max-width: 44rem;

    font-size: clamp(2.8rem, 7vw, 4rem);
  }

  .why-choose-section__header p {
    max-width: 40rem;

    margin: 0;
  }

  .why-choose-item {
    grid-template-columns: 1fr auto;

    gap: 1rem 2rem;

    padding: 1.6rem 0;
  }

  .why-choose-item__text {
    grid-column: 1 / 2;

    max-width: 37rem;

    padding-left: 3.2rem;
  }

  .why-choose-item__icon {
    grid-column: 2;
    grid-row: 1 / 3;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

  .why-choose-section {
    padding: 3.75rem 0;
  }

  .why-choose-section__header h2 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .why-choose-item {
    grid-template-columns: 1fr auto;

    gap: 0.8rem 1rem;

    min-height: auto;

    padding: 1.5rem 0;
  }

  .why-choose-item__number {
    min-width: 1.8rem;

    font-size: 1.3rem;
  }

  .why-choose-item__name {
    gap: 0.7rem;
  }

  .why-choose-item__title {
    font-size: 1.35rem;
  }

  .why-choose-item__text {
    padding-left: 2.5rem;

    font-size: 0.9rem;
  }

  .why-choose-item__icon {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {

  .why-choose-section {
    padding: 3.25rem 0;
  }

  .why-choose-section .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .why-choose-section__header {
    margin-bottom: 2.5rem;
  }

  .why-choose-section__header h2 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .why-choose-item__text {
    padding-left: 0;

    grid-column: 1 / -1;
  }

  .why-choose-item__icon {
    grid-row: 1;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

  .why-choose-item,
  .why-choose-item__title,
  .why-choose-item__icon {
    transition: none;
  }

  .why-choose-item:hover {
    padding-left: 0;
  }

  .why-choose-item:hover .why-choose-item__icon {
    transform: none;
  }
}

/* ============================================================
   08. OFFERS
   ============================================================ */
/* ==========================================
   OFFERS SECTION
========================================== */

.offers-section {
  position: relative;
  padding: 6rem 0;

  overflow: hidden;

  background: var(--light-bg);
}

.offers-section .container {
  max-width: 82rem;
}

/* ==========================================
   LABEL
========================================== */

.offers-section__label {
  display: inline-flex;
  align-items: center;

  gap: 0.65rem;

  margin-bottom: 1.5rem;

  color: var(--deep-forest);

  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;

  text-transform: uppercase;
}

.offers-section__label span {
  display: block;

  width: 1rem;
  height: 0.1rem;

  background: var(--deep-forest);
}

/* ==========================================
   HEADER
========================================== */

.offers-section__header {
  margin-bottom: 3.2rem;
}

.offers-section__header h2 {
  max-width: 45rem;

  margin: 0;

  color: var(--text-dark);

  font-size: clamp(2.3rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.04;

  letter-spacing: -0.05em;
}

.offers-section__intro {
  max-width: 31rem;

  margin-left: auto;
}

.offers-section__intro p {
  margin: 0 0 1.4rem;

  color: var(--text-muted);

  font-size: 1rem;
  line-height: 1.6;
}

/* ==========================================
   HEADER CTA
========================================== */

.offers-section__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 0.8rem;

  min-height: 3.4rem;

  padding: 0.75rem 1.35rem;

  border-radius: 100rem;

  background: var(--deep-forest);
  color: var(--white);

  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 600;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.offers-section__cta:hover {
  background: var(--olive-green);
  color: var(--text-dark);

  transform: translateY(-0.12rem);
}

/* ==========================================
   GRID
========================================== */

.offers-section__grid {
  align-items: stretch;
}

/* ==========================================
   OFFER CARD
========================================== */

.offer-card {
  position: relative;

  display: flex;

  height: 100%;

  flex-direction: column;

  padding: 1rem;

  overflow: hidden;

  border: 0.0625rem solid rgba(69, 12, 63, 0.14);
  border-radius: 1.3rem;

  background: var(--white);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.offer-card:hover {
  border-color: var(--olive-green);

  transform: translateY(-0.3rem);

  box-shadow:
    0 1.3rem 3rem rgba(69, 12, 63, 0.08);
}

/* ==========================================
   OFFER NUMBER
========================================== */

.offer-card__number {
  display: inline-block;

  margin-bottom: 1rem;

  color: var(--deep-forest);

  font-size: 1.2rem;
  font-weight: 700;

  text-transform: uppercase;
}

/* ==========================================
   BIG PRICE SHAPE
========================================== */

.offer-card__price {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width:12rem;
  height:12rem;

  margin-bottom: 1.6rem;

  border-radius: 50%;

  background: var(--olive-green);
  color: var(--deep-forest);

  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.offer-card:hover .offer-card__price {
  transform: rotate(-3deg) scale(1.03);
}

.offer-card__currency {
  align-self: flex-start;

  margin-top: 2.5rem;
  margin-right: 0.15rem;

  font-size: 4.5rem;
  font-weight: 700;
}

.offer-card__price strong {
  font-size: 6rem;
  font-weight: 500;
  line-height: 1;

  letter-spacing: -0.07em;
}

.offer-card__off {
  position: absolute;
  right: .4rem;
  bottom: 0.6rem;

  font-size: 1.85rem;
  font-weight: 800;

  letter-spacing: 0.04em;
}

/* ==========================================
   OFFER CONTENT
========================================== */

.offer-card h2 {
  margin: 0 0 0.7rem;

  color: var(--text-dark);

  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.2;

  letter-spacing: -0.03em;
}

.offer-card p {

  display: none;
}

/* ==========================================
   OFFER LINK
========================================== */

.offer-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 1rem;

  margin-top: auto;
  padding-top: 1rem;

  border-top: 0.0625rem solid rgba(69, 12, 63, 0.12);

  color: var(--deep-forest);

  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 600;
}

.offer-card > a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 2rem;
  height: 2rem;

  border-radius: 50%;

  background: var(--deep-forest);
  color: var(--white);

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.offer-card > a:hover span {
  background: var(--olive-green);
  color: var(--text-dark);

  transform: rotate(45deg);
}

/* ==========================================
   FEATURED $200 CARD
========================================== */

.offer-card--featured {
  border-color: var(--deep-forest);

  background: var(--deep-forest);
}

.offer-card--featured .offer-card__number {
  color: var(--olive-green);
}

.offer-card--featured .offer-card__price {
  width: 14rem;
  height: 14rem;

  background: var(--olive-green);
}

.offer-card--featured .offer-card__price strong {
  font-size: 5.2rem;
}

.offer-card--featured h2 {
  color: var(--white);
}

.offer-card--featured p {
  color: rgba(255, 255, 255, 0.7);
}

.offer-card--featured > a {
  border-top-color: rgba(255, 255, 255, 0.15);

  color: var(--white);
}

.offer-card--featured > a span {
  background: var(--olive-green);
  color: var(--text-dark);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {
  .offers-section {
    padding: 4.5rem 0;
  }

  .offers-section__header {
    margin-bottom: 2.7rem;
  }

  .offers-section__header h2 {
    font-size: clamp(2.8rem, 7vw, 4rem);
  }

  .offers-section__intro {
    max-width: 38rem;

    margin-left: 0;
  }

  .offer-card {
    min-height: 29rem;
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {
  .offers-section {
    padding: 3.75rem 0;
  }

  .offers-section__header h2 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .offer-card {
    min-height: auto;
  }

  .offer-card__price {
    width: 11.5rem;
    height: 11.5rem;
  }

  .offer-card__price strong {
    font-size: 4.2rem;
  }

  .offer-card--featured .offer-card__price {
    width: 12.5rem;
    height: 12.5rem;
  }

  .offer-card--featured .offer-card__price strong {
    font-size: 4.5rem;
  }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 575.98px) {
  .offers-section {
    padding: 3.25rem 0;
  }

  .offers-section .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .offer-card {
    padding: 1.5rem;
  }

  .offer-card__price {
    width: 10.5rem;
    height: 10.5rem;
  }

  .offer-card__price strong {
    font-size: 3.8rem;
  }

  .offer-card__currency {
    margin-top: 2.2rem;

    font-size: 1.35rem;
  }

  .offer-card--featured .offer-card__price {
    width: 11.5rem;
    height: 11.5rem;
  }

  .offer-card--featured .offer-card__price strong {
    font-size: 4rem;
  }
}

/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {
  .offer-card,
  .offer-card__price,
  .offer-card > a span,
  .offers-section__cta {
    transition: none;
  }

  .offer-card:hover,
  .offer-card:hover .offer-card__price,
  .offers-section__cta:hover {
    transform: none;
  }
}

/* ============================================================
   09. SUB SECTION
   ============================================================ */
.sub-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: var(--light-bg);
}

.sub-section .container {
  max-width: 82rem;
}

/* ==============================
   TOP
============================== */

.sub-section__top {
  margin-bottom: 3rem;
}

/* ==============================
   TITLE
============================== */

.sub-section__title {

  margin: 0;

  color: var(--text-dark);

  font-size: clamp(2.3rem, 2.5vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
}

.sub-section__title span {
  display: block;

  color: var(--deep-forest);
}

/* ==============================
   CONTENT
============================== */

.sub-section__content {
  max-width: 40rem;
  margin-left: auto;
}

.sub-section__content p {
  margin: 0;

  color: var(--text-muted);

  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
}

/* ==============================
   IMAGE
============================== */

.sub-section__image {
  position: relative;

  width: 100%;

  overflow: hidden;

  border-radius: 1.5rem;

  background: var(--border-color);
}

.sub-section__image img {
  display: block;

  width: 100%;
  height: 100%;
  height: 35rem;

  object-fit: cover;
  object-position: center top; 
}

/* ==============================
   TABLET
============================== */

@media (max-width: 991.98px) {
  .sub-section {
    padding: 4.5rem 0;
  }

  .sub-section__top {
    margin-bottom: 2.5rem;
  }

  .sub-section__title {
    max-width: 44rem;

    font-size: clamp(2.8rem, 8vw, 4.3rem);
  }

  .sub-section__content {
    max-width: 100%;
    margin-left: 0;
  }

  .sub-section__image,
  .sub-section__image img {
    min-height: 25rem;
  }
}

/* ==============================
   MOBILE
============================== */

@media (max-width: 767.98px) {
  .sub-section {
    padding: 3.75rem 0;
  }

  .sub-section__title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .sub-section__image,
  .sub-section__image img {
    min-height: 22rem;
  }
}

/* ==============================
   SMALL MOBILE
============================== */

@media (max-width: 575.98px) {
  .sub-section {
    padding: 3.25rem 0;
  }

  .sub-section .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .sub-section__top {
    margin-bottom: 2rem;
  }

  .sub-section__title {
    font-size: clamp(2.3rem, 11vw, 3rem);
  }

  .sub-section__content p {
    font-size: 0.95rem;
  }

  .sub-section__image {
    border-radius: 1.1rem;
  }

  .sub-section__image,
  .sub-section__image img {
    min-height: 19rem;
  }
}

/* ============================================================
   10. FAQ / CTA
   ============================================================ */
/* =====================================================
   FAQ CONTACT SECTION
===================================================== */

.faq-contact-section {
  position: relative;
  width: 100%;
  padding: 5.5rem 0 6rem;
  overflow: hidden;
  background: var(--white);
  color: var(--text-dark);
}

.faq-contact-section .container {
  width: 100%;
  max-width: 82rem;
}

/* =====================================================
   FAQ TOP AREA
===================================================== */

.faq-contact-section__top {
  margin-bottom: 5rem;
}

/* =====================================================
   LEFT INTRO
===================================================== */

.faq-contact-section__intro {
  display: flex;
  min-height: 23rem !important;
  flex-direction: column;
}

.faq-contact-section__intro h2 {

  margin: 0 0 1.3rem;

  color: var(--text-dark);

  font-size: clamp(2.65rem, 3.7vw, 3.8rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.faq-contact-section__intro h2 span {
  display: block;
}

.faq-contact-section__intro p {
  max-width: 22rem;
  margin: 0;

  color: var(--text-muted);

  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

/* =====================================================
   SOCIAL ICONS
===================================================== */

.faq-contact-section__social {
  display: flex;
  align-items: center;
  gap: .5rem;

  margin-top: auto;
}

.faq-contact-section__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 1.3rem;
  height: 1.3rem;

  color: var(--deep-forest);

  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.faq-contact-section__social a svg {
  display: block;
  width: 100%;
  height: 100%;
}

.faq-contact-section__social a:hover {
  color: var(--olive-green);
  transform: translateY(-0.15rem);
}

/* =====================================================
   ACCORDION WRAPPER
===================================================== */

.faq-contact-section__accordion {
  width: 100%;
}

/* =====================================================
   ACCORDION ITEM
===================================================== */

.faq-contact-section__accordion .accordion-item {
  overflow: hidden;

  border: 0;
  border-bottom: 0.0625rem solid #dedfda;

  border-radius: 0;

  background: transparent;
}

.faq-contact-section__accordion .accordion-item:first-child {
  margin-bottom: 1rem;

  border-bottom: 0;

  border-radius: 0.5rem;
}

/* =====================================================
   ACCORDION HEADER
===================================================== */

.faq-contact-section__accordion .accordion-header {
  margin:0;
}

/* =====================================================
   ACCORDION BUTTON
===================================================== */

.faq-contact-section__accordion .accordion-button {
  position: relative;

  display: flex;
  align-items: center;

  width: 100%;

  padding: 1rem 1.4rem;

  border: 0;
  border-radius: 0;

  background: transparent;
  color: var(--text-dark);

  box-shadow: none;

  font-size: clamp(0.9rem, 1vw, 1.1rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.025em;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    padding 0.3s ease;
}

.faq-contact-section__accordion .accordion-button:focus {
  z-index: 2;

  border: 0;

  outline: none;

  box-shadow: none;
}

/* ==========================================
   CUSTOM ACCORDION ARROW
========================================== */

.faq-contact-section__accordion .accordion-button::after {
  content: "";

  width: 0.5rem;
  height: 0.5rem;

  flex-shrink: 0;

  margin-left: auto;

  border-right: 0.125rem solid var(--text-dark);
  border-bottom: 0.125rem solid var(--text-dark);

  background-image: none !important;
  background-size: auto !important;

  transform: rotate(45deg);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

/* Open accordion = arrow points up */

.faq-contact-section__accordion
  .accordion-button:not(.collapsed)::after {
  border-color: var(--white);

  background-image: none !important;

  transform: rotate(225deg);

  filter: none !important;
}

/* Closed accordion = arrow points down */

.faq-contact-section__accordion
  .accordion-button.collapsed::after {
  border-color: var(--text-dark);

  transform: rotate(45deg);
}

/* =====================================================
   ACTIVE ACCORDION BUTTON
===================================================== */

.faq-contact-section__accordion
  .accordion-button:not(.collapsed) {
  padding: 1.45rem 1.4rem 0.55rem;

  border-radius: 0.5rem 0.5rem 0 0;

  background: var(--deep-forest);
  color: var(--white);

  box-shadow: none;
}

/* =====================================================
   ACCORDION BODY
===================================================== */

.faq-contact-section__accordion .accordion-body {
  padding: 0.4rem 1.4rem 1.55rem;

  border-radius: 0 0 0.5rem 0.5rem;

  background: var(--deep-forest);

  color: rgba(255, 255, 255, 0.78);

  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
}

/* =====================================================
   COLLAPSE
===================================================== */

.faq-contact-section__accordion .accordion-collapse {
  background: transparent;
}

/* =====================================================
   CTA WRAPPER
===================================================== */

.faq-contact-section__cta {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 25rem;

  overflow: hidden;

  border: 0.0625rem solid rgba(69, 12, 63, 0.08);
  border-radius: 1rem;

  background: var(--deep-forest);

  isolation: isolate;
}

/* =====================================================
   CTA IMAGE
===================================================== */

.faq-contact-section__cta > img {
  position: absolute;
  inset: 0;

  z-index: -3;

  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

/* =====================================================
   CTA OVERLAY
===================================================== */

.faq-contact-section__cta-overlay {
  position: absolute;
  inset: 0;

  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(0, 15, 7, 0.78) 0%,
      rgba(0, 15, 7, 0.68) 45%,
      rgba(0, 15, 7, 0.73) 100%
    );
}

/* =====================================================
   CTA CONTENT
===================================================== */

.faq-contact-section__cta-content {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 45rem;

  padding: 3.5rem 2rem;

  text-align: center;

  color: var(--white);
}

.faq-contact-section__cta-content h2 {
  max-width: 39rem;

  margin: 0 auto 1rem;

  color: var(--white);

  font-size: clamp(2.25rem, 3.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.faq-contact-section__cta-content h2 span {
  display: block;
}

.faq-contact-section__cta-content p {
  max-width: 38rem;

  margin: 0 auto 1.9rem;

  color: rgba(255, 255, 255, 0.78);

  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

/* =====================================================
   CTA ACTIONS
===================================================== */

.faq-contact-section__cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  gap: 1rem;
}

/* =====================================================
   CTA BUTTON BASE
===================================================== */

.faq-contact-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 0.85rem;

  min-height: 3.35rem;

  padding: 0.45rem 0.5rem 0.45rem 1.2rem;

  border: 0.0625rem solid transparent;
  border-radius: 100rem;

  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

/* =====================================================
   PRIMARY CTA BUTTON
===================================================== */

.faq-contact-section__btn--primary {
  background: var(--olive-green);
  color: var(--text-dark);
}

.faq-contact-section__btn--primary:hover {
  background: var(--white);
  color: var(--deep-forest);

  transform: translateY(-0.12rem);
}

/* =====================================================
   OUTLINE CTA BUTTON
===================================================== */

.faq-contact-section__btn--outline {
  border-color: rgba(255, 255, 255, 0.65);

  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.faq-contact-section__btn--outline:hover {
  border-color: var(--white);

  background: var(--white);
  color: var(--deep-forest);

  transform: translateY(-0.12rem);
}

/* =====================================================
   BUTTON ICON
===================================================== */

.faq-contact-section__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 2.35rem;
  height: 2.35rem;

  flex: 0 0 2.35rem;

  border-radius: 50%;

  background: var(--white);
  color: var(--deep-forest);
}

.faq-contact-section__btn-icon svg {
  width: 1rem;
  height: 1rem;
}

/* =====================================================
   PRIMARY BUTTON ICON
===================================================== */

.faq-contact-section__btn--primary
  .faq-contact-section__btn-icon {
  background: var(--white);
  color: var(--deep-forest);
}

/* =====================================================
   OUTLINE BUTTON ICON
===================================================== */

.faq-contact-section__btn--outline
  .faq-contact-section__btn-icon {
  background: var(--white);
  color: var(--deep-forest);
}

/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {
  .faq-contact-section {
    padding: 6rem 0 6.5rem;
  }

  .faq-contact-section .container {
    max-width: 84rem;
  }

  .faq-contact-section__cta {
    min-height: 26rem;
  }
}

/* =====================================================
   SMALL DESKTOP
===================================================== */

@media (max-width: 1199.98px) {
  .faq-contact-section {
    padding: 5rem 0 5.5rem;
  }

  .faq-contact-section__intro {
    min-height: 20rem;
  }

  .faq-contact-section__intro h2 {
    font-size: clamp(2.4rem, 3.5vw, 3.3rem);
  }

  .faq-contact-section__accordion .accordion-button {
    font-size: 1.15rem;
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {
  .faq-contact-section {
    padding: 4.5rem 0 5rem;
  }

  .faq-contact-section__top {
    margin-bottom: 3.5rem;
  }

  .faq-contact-section__intro {
    min-height: 12rem !important;
     padding-left: 2rem;
  }

  .faq-contact-section__intro h2 {

   

    font-size: clamp(1.5rem, 3vw, 1.2rem);
  }

  .faq-contact-section__intro p {
    max-width: 36rem;
  }

  .faq-contact-section__social {
    margin-top: 2rem;
  }

  .faq-contact-section__accordion {
    margin-top: 1.5rem;
  }

  .faq-contact-section__cta {
    min-height: 24rem;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {
  .faq-contact-section {
    padding: 3.75rem 0 4rem;
  }

  .faq-contact-section__top {
    margin-bottom: 3rem;
  }

  .faq-contact-section__intro h2 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    line-height: 1.05;
  }

  .faq-contact-section__intro p {
    font-size: 1rem;
  }

  .faq-contact-section__accordion .accordion-button {
    padding: 1.45rem 1rem;

    font-size: 1.05rem;
    line-height: 1.4;
  }

  .faq-contact-section__accordion
    .accordion-button:not(.collapsed) {
    padding: 1.25rem 1rem 0.5rem;
  }

  .faq-contact-section__accordion .accordion-body {
    padding: 0.35rem 1rem 1.25rem;

    font-size: 0.95rem;
  }

  .faq-contact-section__cta {
    min-height: 25rem;

    border-radius: 0.85rem;
  }

  .faq-contact-section__cta-content {
    padding: 3rem 1.5rem;
  }

  .faq-contact-section__cta-content h2 {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }

  .faq-contact-section__cta-content p {
    max-width: 31rem;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {
  .faq-contact-section {
    padding: 3.25rem 0 3.5rem;
  }

  .faq-contact-section .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .faq-contact-section__top {
    margin-bottom: 2.5rem;
  }

  .faq-contact-section__intro h2 {
    margin-bottom: 1rem;

    font-size: clamp(2.4rem, 11vw, 3rem);
  }

  .faq-contact-section__social {
    gap: 1.15rem;
  }

  .faq-contact-section__accordion
    .accordion-item:first-child {
    border-radius: 0.65rem;
  }

  .faq-contact-section__accordion
    .accordion-button:not(.collapsed) {
    border-radius: 0.65rem 0.65rem 0 0;
  }

  .faq-contact-section__accordion .accordion-body {
    border-radius: 0 0 0.65rem 0.65rem;
  }

  .faq-contact-section__cta {
    min-height: 28rem;
  }

  .faq-contact-section__cta-content {
    padding: 2.5rem 1.25rem;
  }

  .faq-contact-section__cta-content h2 {
    font-size: 2.35rem;
  }

  .faq-contact-section__cta-actions {
    flex-direction: column;

    width: 100%;
  }

  .faq-contact-section__btn {
    width: 100%;
    max-width: 18rem;

    justify-content: space-between;
  }
}

/* =====================================================
   EXTRA SMALL MOBILE
===================================================== */

@media (max-width: 399.98px) {
  .faq-contact-section {
    padding: 2.75rem 0 3rem;
  }

  .faq-contact-section__intro h2 {
    font-size: 2.25rem;
  }

  .faq-contact-section__accordion .accordion-button {
    padding: 1.25rem 0.9rem;

    font-size: 1rem;
  }

  .faq-contact-section__accordion
    .accordion-button:not(.collapsed) {
    padding: 1.1rem 0.9rem 0.45rem;
  }

  .faq-contact-section__accordion .accordion-body {
    padding: 0.3rem 0.9rem 1.15rem;
  }

  .faq-contact-section__cta {
    min-height: 29rem;
  }

  .faq-contact-section__cta-content h2 {
    font-size: 2.05rem;
  }

  .faq-contact-section__cta-content p {
    font-size: 0.95rem;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .faq-contact-section__social a,
  .faq-contact-section__btn,
  .faq-contact-section__accordion .accordion-button,
  .faq-contact-section__accordion .accordion-button::after {
    transition: none;
  }

  .faq-contact-section__social a:hover,
  .faq-contact-section__btn:hover {
    transform: none;
  }
}

/* ============================================================
   11. REVIEWS
   ============================================================ */
/* =====================================================
   REVIEWS SECTION
===================================================== */

.reviews-section {
  position: relative;

  width: 100%;

  padding: 6rem 0;

  overflow: hidden;

  background: var(--light-bg);
}

.reviews-section .container {
  max-width: 82rem;
}

/* =====================================================
   HEADER
===================================================== */

.reviews-section__header {
  margin-bottom: 3rem;
}

.reviews-section__header h2 {
  max-width: 47rem;

  margin: 0;

  color: var(--text-dark);

  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 0.98;

  letter-spacing: -0.05em;
}

.reviews-section__header h2 em {
  color: var(--deep-forest);

  font-weight: 500;
  font-style: italic;
}

.reviews-section__intro {
  max-width: 31rem;

  margin: 0 0 0 auto;
  padding-bottom: 0.7rem;

  color: var(--text-muted);

  font-size: 1rem;
  line-height: 1.6;
}

/* =====================================================
   SWIPER
===================================================== */

.reviews-swiper {
  position: relative;

  width: 100%;

  overflow: visible;
}

.reviews-swiper .swiper-wrapper {
  align-items: stretch;
}

.reviews-swiper .swiper-slide {
  display: flex;

  height: auto;
}

/* =====================================================
   REVIEW CARD
===================================================== */

.review-card {
  display: flex;

  width: 100%;
  min-height: 19rem;

  flex-direction: column;

  padding: 2.4rem 2.5rem;

  border: 0.0625rem solid rgba(69, 12, 63, 0.04);
  border-radius: 1.5rem;

  background: var(--white);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-0.25rem);

  box-shadow:
    0 1.2rem 2.8rem rgba(69, 12, 63, 0.07);
}

/* =====================================================
   STARS
===================================================== */

.review-card__stars {
  display: flex;
  align-items: center;

  gap: 0.3rem;

  margin-bottom: 1.4rem;

  color: var(--olive-green);

  font-size: 1.05rem;
  line-height: 1;
}

/* =====================================================
   QUOTE
===================================================== */

.review-card blockquote {
  max-width: 32rem;

  margin: 0;

  color: var(--text-dark);

  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 500;
  line-height: 1.4;

  letter-spacing: -0.02em;
}

/* =====================================================
   AUTHOR
===================================================== */

.review-card__author {
  display: flex;
  align-items: center;

  gap: 0.9rem;

  margin-top: auto;
  padding-top: 2rem;
}

/* =====================================================
   AVATAR
===================================================== */

.review-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 2.75rem;
  height: 2.75rem;

  flex: 0 0 2.75rem;

  overflow: hidden;

  border-radius: 50%;

  background: var(--deep-forest);

  color: var(--white);

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.03em;
}

.review-card__avatar img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* =====================================================
   AUTHOR TEXT
===================================================== */

.review-card__name {
  margin: 0 0 0.15rem;

  color: var(--text-dark);

  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

.review-card__location {
  margin: 0;

  color: var(--text-muted);

  font-size: 0.85rem;
  line-height: 1.3;
}

/* =====================================================
   CONTROLS
===================================================== */

.reviews-section__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 1.5rem;

  margin-top: 2rem;
}

/* =====================================================
   PAGINATION
===================================================== */

.reviews-pagination {
  position: static !important;

  display: flex;

  width: auto !important;

  align-items: center;

  gap: 0.45rem;
}

.reviews-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;

  margin: 0 !important;

  border-radius: 100rem;

  background: rgba(69, 12, 63, 0.25);

  opacity: 1;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.reviews-pagination .swiper-pagination-bullet-active {
  width: 1.8rem;

  background: var(--deep-forest);
}

/* =====================================================
   ARROWS
===================================================== */

.reviews-section__arrows {
  display: flex;
  align-items: center;

  gap: 0.6rem;
}

.reviews-prev,
.reviews-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 2.8rem;
  height: 2.8rem;

  padding: 0;

  border: 0.0625rem solid rgba(69, 12, 63, 0.15);
  border-radius: 50%;

  background: var(--white);
  color: var(--deep-forest);

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.reviews-prev:hover,
.reviews-next:hover {
  border-color: var(--deep-forest);

  background: var(--deep-forest);
  color: var(--white);

  transform: translateY(-0.1rem);
}

.reviews-prev svg,
.reviews-next svg {
  width: 1.05rem;
  height: 1.05rem;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {
  .reviews-section {
    padding: 4.5rem 0;
  }

  .reviews-section__header {
    margin-bottom: 2.5rem;
  }

  .reviews-section__header h2 {
    max-width: 44rem;

    font-size: clamp(3rem, 8vw, 4.8rem);
  }

  .reviews-section__intro {
    max-width: 38rem;

    margin-left: 0;
    padding-bottom: 0;
  }

  .review-card {
    min-height: 18rem;

    padding: 2rem;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {
  .reviews-section {
    padding: 3.75rem 0;
  }

  .reviews-section__header {
    margin-bottom: 2rem;
  }

  .reviews-section__header h2 {
    font-size: clamp(2.8rem, 11vw, 4rem);
    line-height: 1;
  }

  .review-card {
    min-height: 19rem;

    padding: 1.75rem;

    border-radius: 1.25rem;
  }

  .review-card blockquote {
    font-size: 1.15rem;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {
  .reviews-section {
    padding: 3.25rem 0;
  }

  .reviews-section .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .reviews-section__header h2 {
    font-size: clamp(2rem, 4vw, 2.4rem);
  }

  .review-card {
    min-height: 20rem;

    padding: 1.5rem;
  }

  .reviews-section__controls {
    margin-top: 1.5rem;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .review-card,
  .reviews-prev,
  .reviews-next,
  .reviews-pagination .swiper-pagination-bullet {
    transition: none;
  }

  .review-card:hover,
  .reviews-prev:hover,
  .reviews-next:hover {
    transform: none;
  }
}

/* ============================================================
   12. CONTACT
   ============================================================ */
.contact-section {
  padding: 6rem 0;
  background: var(--white);
}

.contact-section__info {
  max-width: 40rem;
}

.contact-section__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--olive-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-section__info h2 {
  max-width: 38rem;
  margin: 0;
  color: var(--deep-forest);
  font-size: clamp(1.3rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.contact-section__info h2 span {
  display: block;
}

/*
 * Contact Details
 */

.contact-details {
  margin-top: 1rem;
  border-top: 0.0625rem solid rgba(0, 15, 7, 0.14);
}

.contact-details__item {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 0.0625rem solid rgba(0, 15, 7, 0.14);
}

.contact-details__label {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.contact-details__value {
  color: var(--deep-forest);
  font-size: 1rem;
  font-weight: 700;
}

.contact-details__value a {
  color: var(--deep-forest);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-details__value a:hover {
  color: var(--olive-green);
}

.contact-details__value address {
  margin: 0;
  font-style: normal;
}

.contact-details__hours {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/*
 * Service Areas
 */

.contact-service-areas {
  margin-top: 2rem;
}

.contact-service-areas__heading {
  display: inline-block;
  margin-bottom: 1rem;
  padding-bottom: 0.35rem;
  border-bottom: 0.125rem solid var(--olive-green);
  color: var(--deep-forest);
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-service-areas__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-service-areas__list span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border: 0.0625rem solid rgba(0, 15, 7, 0.14);
  border-radius: 3rem;
  color: var(--deep-forest);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-service-areas__list svg {
  color: var(--olive-green);
}

/*
 * =========================
 * FORM CARD
 * =========================
 */

.contact-form-wrapper {
  padding: 2.5rem;
  border: 0.0625rem solid rgba(0, 15, 7, 0.11);
  border-radius: 1.25rem;
  background: #f2f3ef;
  box-shadow: 0 1.25rem 3rem rgba(0, 15, 7, 0.06);
}

/*
 * Form
 */

form.CUS input.subject {
  display: none;
}

.contact-form fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.contact-form__group {
  width: 100%;
}

.contact-form__group label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--deep-forest);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
  width: 100%;
  min-height: 2rem;
  padding: 0.5rem 0.5rem;
  border: 0.0625rem solid rgba(0, 15, 7, 0.13);
  border-radius: 0.7rem;
  outline: none;
  color: var(--deep-forest);
  background: var(--white);
  font-size: 0.9rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder {
  color: #8a8f8c;
}

.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
  border-color: var(--olive-green);
  box-shadow: 0 0 0 0.2rem rgba(72, 87, 0, 0.1);
}

.contact-form__group textarea {
  min-height: 7rem;
  resize: vertical;
}

/*
 * Submit
 */

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.2rem;
  padding: 0.65rem 1.4rem;
  border: 0;
  border-radius: 3rem;
  color: var(--deep-forest);
  background: var(--olive-green);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.contact-form__submit:hover {
  color: var(--white);
  background: var(--olive-green);
  transform: translateY(-0.125rem);
}

/*
 * =========================
 * MAP
 * =========================
 */

.contact-map {
  margin-top: 5rem;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 0.0625rem solid rgba(0, 15, 7, 0.1);
  background: var(--light-bg);
}

.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 16rem;
}

/* ============================================================
   CONTACT - RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
  .contact-section {
    padding: 4.5rem 0;
  }

  .contact-section__info {
    max-width: 100%;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .contact-map {
    margin-top: 3.5rem;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 3.5rem 0;
  }

  .contact-section__info h2 {
    font-size: 2.4rem;
  }

  .contact-details__item {
    grid-template-columns: 6rem 1fr;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .contact-map {
    margin-top: 3rem;
    border-radius: 1rem;
  }

  .contact-map iframe {
    min-height: 22rem;
  }
}

@media (max-width: 575px) {
  .contact-section {
    padding: 3rem 0;
  }

  .contact-section__info h2 {
    font-size: 2rem;
  }

  .contact-section__intro {
    font-size: 0.95rem;
  }

  .contact-details__item {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .contact-details__value {
    overflow-wrap: anywhere;
  }

  .contact-service-areas__list span {
    font-size: 0.75rem;
  }

  .contact-form-wrapper {
    padding: 1.2rem;
  }

  .contact-form__submit {
    width: 100%;
  }

  .contact-map iframe {
    min-height: 19rem;
  }
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.site-footer {
  position: relative;

  padding: 5.5rem 0 0;

  overflow: hidden;

  background: var(--border-color);
  color: var(--deep-forest);
}

.site-footer .container {
  max-width: 92rem;
}

/* =====================================================
   TOP
===================================================== */

.site-footer__top {
  padding-bottom: 3rem;
}

/* =====================================================
   BRAND
===================================================== */

.site-footer__brand {
  display: flex;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.site-footer__brand img {
  display: block;

  width: auto;
  max-width: 15rem;
  height: auto;

  object-fit: contain;
}

/* =====================================================
   DESCRIPTION
===================================================== */

.site-footer__description {
  max-width: 38rem;

  margin: 0;

  color: var(--deep-forest);
  margin-top: 2.5rem;
  font-size: 3rem;
  line-height: 1.2;
}

/* =====================================================
   SOCIAL
===================================================== */

.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 0.85rem;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 2.8rem;
  height: 2.8rem;

  flex: 0 0 2.8rem;

  border: 0.0625rem solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;

 color: var(--deep-forest);

  text-decoration: none;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.site-footer__social a:hover {
  border-color: var(--olive-green);

  background: var(--olive-green);
  color: var(--deep-forest);

  transform: translateY(-0.15rem);
}

.site-footer__social svg {
  width: 1.05rem;
  height: 1.05rem;
}

.site-footer__social-letter {
  color: inherit;

  font-size: 1rem;
  font-weight: 700;
}

/* =====================================================
   CONTACT INFO
===================================================== */

.site-footer__contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 0.85rem 2rem;

  margin-top: 2.5rem;
}

.site-footer__contact a,
.site-footer__contact-item {
  display: inline-flex;
  align-items: center;

  gap: 0.6rem;

   color: var(--deep-forest);
  font-size: 0.88rem;
  line-height: 1.4;

  text-decoration: none;
}

.site-footer__contact a {
  transition: color 0.25s ease;
}

.site-footer__contact a:hover {
  color: var(--olive-green);
}

.site-footer__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 1.4rem;
  height: 1.4rem;

  flex: 0 0 1.4rem;

  color: var(--olive-green);
}

.site-footer__contact-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

/* =====================================================
   DIVIDER
===================================================== */

.site-footer__divider {
  width: 100%;
  height: 0.0625rem;

  background: rgba(255, 255, 255, 0.18);
}

/* =====================================================
   COLUMNS
===================================================== */

.site-footer__columns {
  padding: 2rem 0;
}

/* =====================================================
   COLUMN TITLE
===================================================== */

.site-footer__title {
  display: block;

  margin-bottom: 1.5rem;

  color: var(--deep-forest);

  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;

  letter-spacing: -0.02em;
}

/* =====================================================
   COLUMN LIST
===================================================== */
.site-footer__column ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.5rem;

  margin: 0;
  padding: 0;

  list-style: none;
}

.site-footer__column ul li {
  margin: 0;
}

.site-footer__column ul li a {
  display: inline-block;
  color: var(--deep-forest);
  font-size: 0.96rem;
  line-height: 1.4;

  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.site-footer__column ul li a:hover {
  color: var(--deep-forest);
  transform: translateX(0.2rem);
}

/* Mobile */
@media (max-width: 575.98px) {
  .site-footer__column ul {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
}
/* =====================================================
   ZIP CODES
===================================================== */

.site-footer__zips {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 0.75rem;
}

.site-footer__zips span {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 2.45rem;

  padding: 0.4rem 0.65rem;

  border: 0.0625rem solid rgba(255, 255, 255, 0.28);
  border-radius: 100rem;

  background: rgba(255, 255, 255, 0.07);

    color: var(--deep-forest);

  font-size: 0.85rem;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.site-footer__zips span:hover {
  border-color: var(--olive-green);

  background: var(--olive-green);
  color: var(--deep-forest);
}

/* =====================================================
   FOOTER BOTTOM
===================================================== */

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 2rem;

  padding: 2rem 0;

  border-top: 0.0625rem solid rgba(0, 0, 0, 0.18);
}

.site-footer__bottom p {
  margin: 0;

   color: var(--deep-forest);

  font-size: 0.85rem;
}

.site-footer__bottom nav {
  display: flex;
  align-items: center;

  gap: 2rem;
}

.site-footer__bottom nav a {
  color: rgba(255, 255, 255, 0.72);

  font-size: 0.85rem;

  text-decoration: none;

  transition: color 0.25s ease;
}

.site-footer__bottom nav a:hover {
  color: var(--olive-green);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

  .site-footer {
    padding-top: 4.5rem;
  }

  .site-footer__social {
    justify-content: flex-start;

    margin-top: 0.5rem;
  }

  .site-footer__contact {
    margin-top: 2rem;
  }

  .site-footer__columns {
    padding: 3.5rem 0;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

  .site-footer {
    padding-top: 3.75rem;
  }

  .site-footer__top {
    padding-bottom: 2.5rem;
  }

  .site-footer__description {
    font-size: 0.95rem;
  }

  .site-footer__contact {
    align-items: flex-start;
    flex-direction: column;

    gap: 0.9rem;
  }

  .site-footer__columns {
    padding: 3rem 0;
  }

  .site-footer__title {
    margin-bottom: 1.2rem;

    font-size: 1.1rem;
  }

  .site-footer__column ul {
    gap: 0.7rem;
  }

  .site-footer__column li a {
    font-size: 0.9rem;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;

    gap: 1rem;
  }

  .site-footer__bottom nav {
    flex-wrap: wrap;

    gap: 0.75rem 1.5rem;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {

  .site-footer {
    padding-top: 3.25rem;
  }

  .site-footer .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .site-footer__brand img {
    max-width: 13rem;
  }

  .site-footer__social a {
    width: 1rem;
    height: 1rem;

    flex-basis: .4rem;
  }

  .site-footer__columns {
    padding: 2rem 0;
  }

  .site-footer__zips {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .site-footer__bottom {
    padding: 1rem 0;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

  .site-footer__social a,
  .site-footer__column li a,
  .site-footer__zips span,
  .site-footer__contact a {
    transition: none;
  }

  .site-footer__social a:hover,
  .site-footer__column li a:hover {
    transform: none;
  }
}


.brands-marquee__wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.brands-marquee__track {
  display: flex;
  align-items: center;

  width: max-content;

  gap: 1rem;

  animation: brandsMarquee 35s linear infinite;
}

.brands-marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 13rem;
  height: 7rem;

  flex: 0 0 13rem;

  padding: 1.25rem;

  border: 0.0625rem solid rgba(69, 12, 63, 0.1);
  border-radius: 1rem;

  background: var(--white);
}

.brands-marquee__item img {
  display: block;

  width: auto;
  max-width: 100%;

  height: auto;
  max-height: 4rem;

  object-fit: contain;
}

.brands-marquee__wrapper:hover .brands-marquee__track {
  animation-play-state: paused;
}

@keyframes brandsMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@media (max-width: 767.98px) {
  .brands-marquee__item {
    width: 10rem;
    height: 5.5rem;

    flex-basis: 10rem;
  }

  .brands-marquee__item img {
    max-height: 3.2rem;
  }

  .brands-marquee__track {
    animation-duration: 28s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brands-marquee__track {
    animation: none;
  }

  .brands-marquee__wrapper {
    overflow-x: auto;
  }
}

.subpage-hero {
  position: relative;
  min-height: 21rem;
  margin: 1rem;
  overflow: hidden;
  border-radius: 1.4rem;
  color: var(--white);
  isolation: isolate;
  
}


/* =========================
   BACKGROUND
========================= */

.subpage-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;

  background:
    url("img/garage-door-spring-repair.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; 
}


/* =========================
   DARK OVERLAY
========================= */

.subpage-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

 background: linear-gradient(
    90deg,
    rgba(245, 251, 218, 0.95) 0%,
    rgba(245, 251, 218, 0.88) 32%,
    rgba(245, 251, 218, 0.56) 60%,
    rgba(245, 251, 218, 0.12) 100%
  );
}


/* =========================
   CONTAINER
========================= */

.subpage-hero__container {
  display: flex;
  align-items: center;
  min-height: 21rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}


/* =========================
   CONTENT
========================= */

.subpage-hero__content {
  max-width: 46rem;
}


/* =========================
   BREADCRUMB
========================= */

.subpage-hero__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.2;
}

.subpage-hero__breadcrumb a {
  color: var(--deep-forest);
  text-decoration: none;
  transition: color 0.25s ease;
}

.subpage-hero__breadcrumb a:hover {
 color: var(--deep-forest);
}

.subpage-hero__breadcrumb span[aria-current="page"] {
   color: var(--deep-forest);
}

.subpage-hero__separator {
  color: var(--deep-forest);
}


/* =========================
   TITLE
========================= */

.subpage-hero h1 {
  margin: 0 0 1.2rem;
   color: var(--deep-forest);
  font-size: clamp(3rem, 4vw, 4.1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}


/* =========================
   DESCRIPTION
========================= */

.subpage-hero p {
  max-width: 44rem;
  margin: 0;
   color: var(--deep-forest);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.55;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991.98px) {

  .subpage-hero {
    min-height: 19rem;
  }

  .subpage-hero__container {
    min-height: 19rem;
  }

  .subpage-hero__content {
    max-width: 40rem;
  }

  .subpage-hero h1 {
    font-size: clamp(2.7rem, 7vw, 3.8rem);
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767.98px) {

  .subpage-hero {
    min-height: 18rem;
    margin: 0.5rem;
    border-radius: 1rem;
  }

  .subpage-hero__bg {
    background-position: 65% center;
  }

  

  .subpage-hero__container {
    min-height: 18rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .subpage-hero h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.4rem, 10vw, 3.2rem);
  }

  .subpage-hero p {
    max-width: 31rem;
    font-size: 0.95rem;
  }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 575.98px) {

  .subpage-hero {
    min-height: 17rem;
  }

  .subpage-hero__container {
    min-height: 17rem;
    padding: 2rem 1rem;
  }

  .subpage-hero__breadcrumb {
    margin-bottom: 0.9rem;
    font-size: 0.85rem;
  }

  .subpage-hero h1 {
    font-size: clamp(2.2rem, 11vw, 2.8rem);
  }

  .subpage-hero p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}


/* =====================================================
   SERVICE LOCATIONS
===================================================== */

.locations-strip {
  position: relative;

  padding: 5rem 0;

  background: var(--light-bg);
}

.locations-strip .container {
  max-width: 82rem;
}


/* =====================================================
   HEADER
===================================================== */

.locations-strip__header {
  margin-bottom: 2.5rem;
}

.locations-strip__label {
  display: inline-block;

  margin-bottom: 0.7rem;

  color: var(--olive-green);

  font-size: 0.8rem;
  font-weight: 700;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.locations-strip__header h2 {
  margin: 0;

  color: var(--deep-forest);

  font-size: clamp(2.3rem, 3.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.05;

  letter-spacing: -0.045em;
}


/* =====================================================
   GRID
   4 ITEMS PER ROW
===================================================== */

.locations-strip__grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 1rem;
}


/* =====================================================
   LOCATION BOX
===================================================== */

.location-box {
  display: flex;
  align-items: center;

  gap: 1rem;

  min-height: 6rem;

  padding: 1.2rem 1.3rem;

  border: 0.0625rem solid rgba(69, 12, 63, 0.12);
  border-radius: 1rem;

  background: var(--white);

  color: var(--deep-forest);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.location-box:hover {
  border-color: var(--olive-green);

  background: var(--deep-forest);
  color: var(--white);

  transform: translateY(-0.2rem);

  box-shadow:
    0 1rem 2.5rem rgba(69, 12, 63, 0.08);
}


/* =====================================================
   ICON
===================================================== */

.location-box__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 3.3rem;
  height: 3.3rem;

  flex: 0 0 3.3rem;

  border-radius: 50%;

  background: var(--olive-green);
  color: var(--deep-forest);
}

.location-box__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}


/* =====================================================
   LOCATION NAME
===================================================== */

.location-box__name {
  color: inherit;

  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

  .locations-strip {
    padding: 4rem 0;
  }

  .locations-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

  .locations-strip {
    padding: 3.5rem 0;
  }

  .locations-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-box {
    min-height: 5.5rem;

    padding: 1rem;
  }

  .location-box__icon {
    width: 2.8rem;
    height: 2.8rem;

    flex-basis: 2.8rem;
  }

  .location-box__name {
    font-size: 0.95rem;
  }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {

  .locations-strip {
    padding: 3rem 0;
  }

  .locations-strip .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .locations-strip__grid {
    grid-template-columns: 1fr;
  }

  .location-box {
    min-height: 5rem;
  }
}