/* ============================================================
   HOME PAGE — Hero · Trust · Services · Areas · HIW · Reviews · About · CTA · FAQ
   ============================================================ */

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background-color: var(--clr-bg-white);
  min-height: calc(56.25rem - var(--header-height));
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__bg-img {
  position: absolute;
  top: -1.875rem;
  left: 0;
  width: 100%;
  height: calc(100% + 1.875rem);
  object-fit: cover;
  object-position: right center;
  transform: scaleX(-1);
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #f0efeb 0%,
    #f0efeb 30%,
    rgba(240, 239, 235, 0.25) 42%,
    rgba(240, 239, 235, 0) 58%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 32.5625rem;
  align-items: start;
  padding-top: 8.4375rem;
  padding-bottom: 10.9375rem;
  gap: 0;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-right: 4.1875rem;
}

.hero__heading {
  font-family: var(--font-body);
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  letter-spacing: -0.28125rem;
  line-height: 1.1;
  max-width: 47.5rem;
}

.hero__desc {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--clr-text-dark);
  line-height: 1.3;
  max-width: 38.125rem;
}

/* ============================================================
   ESTIMATE FORM CARD
   ============================================================ */
.hero__form-wrap {
  background-color: var(--clr-bg-cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}

.form-card__title {
  font-family: var(--font-body);
  font-size: 2.625rem;
  font-weight: 500;
  color: var(--clr-text-dark);
  line-height: 1.1;
  text-align: center;
}

.form-card__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.665rem;
}

.form__field {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form__input {
  width: 100%;
  height: var(--input-height);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--clr-border);
  padding-inline: 0.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--clr-text-dark);
  line-height: 1.3;
  transition: border-color 0.18s ease;
}

.form__input::placeholder {
  color: var(--clr-text-mid);
}

.form__input:focus {
  border-bottom-color: var(--clr-text-dark);
}

.form__field--select {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: var(--input-height);
  border-bottom: 1px solid var(--clr-border);
  gap: 0;
}

.form__select {
  flex: 1;
  height: 100%;
  background: transparent;
  font-size: 1rem;
  font-weight: 400;
  color: var(--clr-text-mid);
  cursor: pointer;
  padding-inline: 0.25rem;
  -webkit-appearance: none;
  appearance: none;
}

.form__select:focus {
  color: var(--clr-text-dark);
  outline: none;
}

.form__select option {
  color: var(--clr-text-dark);
  background: var(--clr-bg-cream);
}

.form__chevron {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #1a2539;
}

.form__submit-row {
  padding-top: 1rem;
}

.form__submit-row .btn {
  font-size: 1.375rem;
  color: var(--clr-text-dark);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
  background: var(--clr-bg-cream);
  padding-block: 2.625rem;
  border-bottom: 0.05rem solid #e5e7eb;
}

.trust__inner {
  max-width: 84.25rem;
  margin-inline: auto;
  padding-inline: 1.875rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.trust__card {
  background: #fff;
  border-radius: 0.375rem;
  padding: 1rem 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
}

.trust__icon {
  display: block;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.trust__label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--clr-text-mid);
  text-align: center;
  line-height: 1.3;
  padding-bottom: 1rem;
}

.trust__dots {
  display: none;
}

@media (max-width: 64rem) {
  .trust__inner {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    padding-inline: var(--pad-side);
  }
}

@media (max-width: 48rem) {
  .trust {
    overflow: hidden;
  }

  .trust__inner {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    padding-inline: var(--pad-side-sm);
    max-width: 100%;
  }

  .trust__inner::-webkit-scrollbar {
    display: none;
  }

  .trust__card {
    scroll-snap-align: center;
    flex-shrink: 0;
    width: 80vw;
    max-width: 20rem;
  }

  .trust__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .trust__dot {
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--clr-border);
    transition: background 0.2s ease;
    flex-shrink: 0;
  }

  .trust__dot--active {
    background: var(--clr-text-dark);
  }
}

/* ============================================================
   RESPONSIVE — Hero & Form (tablet → mobile)
   ============================================================ */
@media (max-width: 80rem) {
  .hero__heading {
    font-size: 3.75rem;
    letter-spacing: -0.2rem;
  }

  .form-card__title {
    font-size: 2.25rem;
  }
}

@media (max-width: 64rem) {
  .trust__card {
    height: auto;
    padding-bottom: 1rem;
  }

  .hero__content {
    grid-template-columns: 1fr;
    padding-top: 3rem;
    padding-bottom: 3rem;
    gap: 2.5rem;
  }

  .hero__left {
    padding-right: 0;
  }

  .hero__heading {
    font-size: 3.25rem;
    letter-spacing: -0.15rem;
  }

  .hero__form-wrap {
    max-width: 38rem;
    margin-inline: auto;
    width: 100%;
  }

 

  .hero__bg-overlay {
    background: linear-gradient(
      to right,
      #f0efeb 0%,
      rgba(240, 239, 235, 0.36) 100%
    );
  }
}

@media (max-width: 48rem) {
  .trust__label {
    white-space: normal;
  }

  .hero__content {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
    gap: 2rem;
  }

  .hero__heading {
    font-size: 2.5rem;
    letter-spacing: -0.1rem;
  }

  .hero__desc {
    font-size: 1rem;
  }

  .form-card__title {
    font-size: 1.75rem;
  }

  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form__row .form__field + .form__field {
    margin-top: 1.25rem;
  }
}

@media (max-width: 25rem) {
  .hero__heading {
    font-size: 2.5rem;
    letter-spacing: -0.06rem;
  }

  .hero__form-wrap {
    padding: 1rem;
    gap: 1.5rem;
  }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--clr-bg-cream);
  padding-block: 7.5rem;
}

.services__container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--pad-side);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.services__top {
  display: grid;
  grid-template-columns: 1fr 27.25rem;
  gap: 1.25rem;
  align-items: center;
}

.services__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services__title {
  font-family: var(--font-body);
  font-size: 3.75rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  line-height: 1;
  letter-spacing: -0.1875rem;
}

.services__desc {
  font-size: 1rem;
  font-weight: 400;
  color: var(--clr-text-mid);
  line-height: 1.3;
  max-width: 42rem;
}

.services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: #fafcfa;
  border-radius: 0.3125rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.625rem 0.625rem 1rem;
  overflow: hidden;
}

.service-card--featured {
  min-height: 21.875rem;
}

.service-card__img-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 0.3125rem;
  min-height: 0;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card__title {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 500;
  color: var(--clr-text-dark);
  line-height: 1.1;
  text-align: center;
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 80rem) {
  .services__title { font-size: 3rem; }
}

@media (max-width: 64rem) {
  .services__top {
    grid-template-columns: 1fr;
  }

  .services__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card--featured { height: auto; }
  .service-card__img-wrap { height: 14rem; flex: none; }
}

@media (max-width: 48rem) {
  .services {
    padding-block: 4rem;
  }

  .services__title { font-size: 2.25rem; letter-spacing: -0.08rem; }

  .services__row {
    grid-template-columns: 1fr;
  }

  .service-card__title { font-size: 1.5rem; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--clr-bg-cream);
  padding-block: 7.5rem;
}

.reviews__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--pad-side);
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
}

.reviews__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.reviews__title {
  font-family: var(--font-body);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  line-height: 1.1;
  letter-spacing: -0.1rem;
  max-width: 42rem;
  flex-shrink: 0;
}

.reviews__desc {
  font-size: 1rem;
  color: var(--clr-text-dark);
  line-height: 1.5;
  max-width: 31.0625rem;
}

.reviews__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.reviews__swiper {
  width: 100%;
  overflow: hidden;
}

.reviews__swiper .swiper-slide {
  height: auto;
}

.review-card {
  background: #fafcfa;
  border-radius: var(--radius-sm);
  border: 0.05rem solid #f3f4f6;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card__stars {
  padding-bottom: 0.25rem;
}

.review-card__text {
  font-size: 1rem;
  font-weight: 400;
  color: var(--clr-text-dark);
  line-height: 1.5;
  flex: 1;
  min-height: 10.8125rem;
  padding-bottom: 1.25rem;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-card__avatar {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background: var(--clr-bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-text-mid);
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.review-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  line-height: 1;
}

.review-card__location {
  font-size: 0.875rem;
  color: var(--clr-text-dark);
  line-height: 1;
}

.reviews__footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews__arrows {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 0.5rem;
}

.reviews__arrow {
  width: 1.6875rem;
  height: 2rem;
  border-radius: 0.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.reviews__arrow--prev,
.reviews__arrow--next {
  background: none;
  padding: 0;
}

@media (max-width: 80rem) {
  .reviews__title { font-size: 2.75rem; }
}

@media (max-width: 64rem) {
  .reviews__header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 48rem) {
  .reviews { padding-block: 4rem; }
  .reviews__title { font-size: 2.25rem; letter-spacing: -0.06rem; }
  .reviews__footer { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .reviews__arrows { position: static; transform: none; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw {
  background: var(--clr-bg-page);
  padding-block: 7.5rem;
}

.hiw__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--pad-side);
}

.hiw__card {
  background: var(--clr-bg-medium);
  border-radius: 0.75rem;
  padding: 2.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.625rem;
}

.hiw__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  max-width: 40.5rem;
}

.hiw__title {
  font-family: var(--font-body);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.1;
  letter-spacing: -0.1rem;
}

.hiw__subtitle {
  font-size: 1rem;
  color: #eef1f6;
  line-height: 1.5;
}

.hiw__steps {
  width: 100%;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}

.hiw__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 22.0625rem;
}

.hiw__step-icon-wrap {
  width: 100%;
  height: 9.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1.5rem;
}

.hiw__step:not(:last-child) .hiw__step-icon-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(50% + 4rem);
  right: calc(1rem - 50%);
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    #f3f6fd 0%,
    #e196a6 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hiw__step-circle {
  position: relative;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: var(--clr-bg-medium);
  border: 4px solid #fafcfa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.hiw__step-svg {
  display: block;
  width: 2rem;
  height: 2rem;
}

.hiw__step-num {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #fafcfa;
  color: var(--clr-bg-medium);
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hiw__step-title {
  font-family: var(--font-body);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--clr-white);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0.75rem;
}

.hiw__step-desc {
  font-size: 1rem;
  color: #f3f6fd;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 80rem) {
  .hiw__steps { gap: 2rem; }
  .hiw__title { font-size: 2.75rem; }
}

@media (max-width: 64rem) {
  .hiw__steps {
    flex-direction: column;
    align-items: center;
  }

  .hiw__step { max-width: 30rem; }
  .hiw__step-icon-wrap::before { display: none; }
}

@media (max-width: 48rem) {
  .hiw { padding-block: 4rem; }
  .hiw__card { padding: 1.5rem; }
  .hiw__title { font-size: 2.25rem; letter-spacing: -0.06rem; }

  .hiw__step-icon-wrap {
    height: 5rem;
    margin-bottom: 1rem;
  }

  .hiw__step-circle {
    width: 5rem;
    height: 5rem;
  }

  .hiw__step-num {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.75rem;
  }
}


/* ============================================================
   ABOUT US
   ============================================================ */
.about {
  background: var(--clr-bg-page);
  padding-block: 7.5rem;
}
.about .btn{
	width: fit-content;
} 
.about__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--pad-side);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.about__img-col {
  overflow: hidden;
  min-height: 38.125rem;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__content {
  background: var(--clr-bg-cream);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about__title {
  font-family: var(--font-body);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  line-height: 1.1;
  letter-spacing: -0.1rem;
}

.about__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 2.4375rem;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about__text p {
  font-size: 1rem;
  color: var(--clr-text-mid);
  line-height: 1.5;
}

@media (max-width: 64rem) {
  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__img-col {
    min-height: 22rem;
  }

  .about__title { font-size: 2.75rem; }
}

@media (max-width: 48rem) {
  .about {
    padding-block: 4rem;
  }

  .about__title { font-size: 2.25rem; letter-spacing: -0.06rem; }
  .about__content { padding: 1.5rem; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  background: var(--clr-bg-medium);
  padding-block: 6.25rem;
  position: relative;
  overflow: hidden;
}

.cta__shape {
  position: absolute;
  top: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.cta__shape--right {
  right: 0;
  object-position: right center;
  transform: scaleX(-1);
}

.cta__shape--left {
  left: 0;
  object-position: left center;
}

.cta__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--pad-side);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}

.cta__title {
  font-size: 4.5rem;
  font-weight: 600;
  color: #f0efeb;
  line-height: 1.1;
  letter-spacing: -0.28125rem;
  text-align: center;
}

.cta__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
}

.cta__desc {
  font-size: 1.125rem;
  color: #eef1f6;
  line-height: 1.3;
  text-align: center;
  max-width: 50rem;
}

.cta__btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta__btns-btn {
  font-size: 1.25rem;
  padding-inline: 2rem;
  min-width: 18.75rem;
}

@media (max-width: 64rem) {
  .cta__title { font-size: 3.5rem; }
}

@media (max-width: 48rem) {
  .cta { padding-block: 4rem; }
  .cta__title { font-size: 2.25rem; letter-spacing: -0.06rem; }
  .cta__btns { flex-direction: column; align-items: stretch; }
  .cta__btns-btn { min-width: 0; width: 100%; }
}

