.main {
  padding: 5rem 4rem;
}

.services-page-hero {
  /* background-color: #221f1f; */
  position: relative;
  overflow: hidden;
  border-radius: 4rem;
}

/* .services-page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(34, 31, 31, 0.95) 0%,
    rgba(34, 31, 31, 0.75) 100%
  );
  z-index: 1;
} */

.services-hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  border-radius: 3.2rem;
  overflow: hidden;
}

.services-hero__content {
  padding: 7rem 0 7rem 4rem;
  z-index: 1;
  width: 100%;
}
/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 0.8rem;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.4rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #fff;
}

/* Title */
.services-hero__title {
  font-size: 7.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.4rem;
  line-height: 1.1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.services-hero__highlight {
  background-color: #d4c4a8;
  color: #221f1f;
  padding: 0 0.8rem;
  border-radius: 0.4rem;
  display: inline-block;
}

/* Text */
.services-hero__text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4rem;
  max-width: 58.8rem;
}

/* Buttons */
.services-hero__buttons {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.btn--white {
  background-color: #fff;
  color: #221f1f;
  padding: 0.4rem 0.4rem 0.4rem 2.4rem;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s;
  border: 0.15rem solid #fff;
  text-decoration: none;
}

.btn--white:hover {
  background-color: #fefef4;
  transform: translateY(-0.2rem);
}

.btn__icon {
  width: 4rem;
  height: 4rem;
  background-color: #221f1f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s;
}

.btn--white:hover .btn__icon {
  transform: rotate(37.5deg);
}

.btn--outline-white {
  background-color: transparent;
  color: #fff;
  padding: 1.4rem 2.4rem;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s;
  border: 0.15rem solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  cursor: pointer;
}

.btn--outline-white:hover {
  background-color: #fff;
  color: #221f1f;
  border-color: #fff;
  transform: translateY(-0.2rem);
}

/* Image */
.services-hero__image {
  position: absolute;
  border-radius: 2.4rem;
  overflow: hidden;
  height: 100%;
  min-height: 40rem;
  width: 100%;
}

.services-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === SERVICES CARDS SECTION === */
.services-cards-section {
  padding: 5rem 4rem;
  background-color: #fefef4;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

/* Card Base */
.service-card {
  background-color: #edebdf;
  border-radius: 2.4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Image Slider */
.service-card__slider {
  position: relative;
  height: 28rem;
  border-radius: 2.4rem 2.4rem 0 0;
  overflow: hidden;
}

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

.service-card__pagination {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 2;
}

.service-card__pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
  cursor: pointer;
}

.service-card__pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  width: 2rem;
  border-radius: 1rem;
}

/* Content */
.service-card__content {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card__title {
  font-size: 2rem;
  font-weight: 700;
  color: #221f1f;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  line-height: 1.2;
}

.service-card__price {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #221f1f;
  margin-bottom: 1.6rem;
}

.service-card__desc {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #545454;
  margin-bottom: 1.6rem;
}

.service-card__divider {
  height: 0.1rem;
  background-color: #d4c4a8;
  opacity: 0.4;
  margin: 0 0 2rem;
}

.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card__list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  color: #221f1f;
  line-height: 1.4;
}

.service-card__list li svg {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
}

/* Button */
.service-card__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2rem;
  border: 0.15rem solid #221f1f;
  border-radius: 5rem;
  background: transparent;
  font-size: 1.6rem;
  font-weight: 600;
  color: #221f1f;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.service-card__btn:hover {
  background-color: #221f1f;
  color: #fefef4;
}

.service-card__btn svg {
  width: 4rem;
  height: 4rem;
  background-color: #221f1f;
  border-radius: 50%;
  color: #fefef4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.service-card__btn:hover svg {
  transform: rotate(37.5deg);
  background-color: #fefef4;
  color: #221f1f;
}

@media (max-width: 1023px) {
  .main {
    padding: 2.4rem 1.6rem 1.1rem;
  }

  .services-hero__container {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }

  .services-hero__content {
    order: 1;
    padding: 2.4rem 1.6rem;
    min-height: 56rem;
    height: 100%;
  }
  .breadcrumb {
    font-size: 1.4rem;
  }
  .services-hero__image {
    order: 2;
    min-height: 28rem;
    border-radius: 2rem;
  }

  .services-hero__title {
    font-size: 3.2rem;
  }

  .services-hero__text {
    font-size: 1.6rem;
    margin-bottom: 2.4rem;
  }

  .services-hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn--white,
  .btn--outline-white {
    width: 100%;
    justify-content: space-between;
  }
  .btn--outline-white {
    justify-content: center;
  }
}

/* === SERVICES CARDS SECTION === */
.services-cards-section {
  padding: 5rem 0;
  background-color: #fefef4;
}
.services-card__slider {
  position: relative;
  height: 28rem;
  border-radius: 4rem;
  overflow: hidden;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

/* Card Base */
.services-card {
  background-color: #edebdf;
  border-radius: 4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Image */
.services-card__images {
  position: relative;
  width: 100%;
  height: 100%;
}
.services-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.services-card__img.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.services-card__pagination {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 2;
}

.services-card__pagination span {
  width: 0.8rem;
  height: 0.8rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.services-card__pagination span.active {
  background-color: #fff;
  width: 2rem;
  border-radius: 1rem;
}

.services-card__image {
  position: relative;
  height: 28rem;
  border-radius: 2.4rem 2.4rem 0 0;
  overflow: hidden;
}

.services-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pagination Dots (decorative) */
.services-card__pagination {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 2;
}

.services-card__pagination span {
  width: 0.8rem;
  height: 0.8rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
}

.services-card__pagination span.active {
  background-color: #fff;
  width: 2rem;
  border-radius: 1rem;
}

/* Content */
.services-card__content {
  padding: 2.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.services-card__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #221f1f;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  line-height: 1.2;
}

.services-card__price {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #221f1f;
  margin-bottom: 1.6rem;
}

.services-card__desc {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #221f1f;
  margin-bottom: 1.6rem;
}

.services-card__divider {
  height: 0.1rem;
  background-color: #575451;
  opacity: 0.4;
  margin: 0 0 2rem;
  width: 100%;
  max-width: 8rem;
}

.services-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-card__list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  color: #221f1f;
  line-height: 1.4;
}

.services-card__list li svg {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
}

/* Button */
a.services-card__btn-wrapper .services-card__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.4rem 0.4rem 2.5rem;
  border: 0.15rem solid #221f1f;
  border-radius: 5rem;
  background: transparent;
  font-size: 1.6rem;
  font-weight: 600;
  color: #221f1f;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  width: 100%;
}

.services-card__btn svg {
  width: 4rem;
  height: 4rem;
  background-color: #221f1f;
  border-radius: 50%;
  color: #fefef4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.services-card__btn:hover svg {
  transform: rotate(37.5deg);
  background-color: #fefef4;
  color: #221f1f;
}

/* === RESPONSIVE === */
@media (max-width: 1023px) {
  .services-cards-section {
    padding: 2.4rem 0;
  }

  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .services-card,
  .services-card__slider {
    border-radius: 2rem;
  }

  .services-card__image {
    height: 24rem;
  }

  .services-card__content {
    padding: 1.6rem;
  }

  .services-card__title {
    font-size: 1.6rem;
  }

  .services-card__price {
    font-size: 1.4rem;
  }

  .services-card__desc,
  .services-card__list li {
    font-size: 1.4rem;
  }

  .services-card__btn {
    width: 100%;
    justify-content: space-between;
  }
  .services-card__slider {
    height: 24rem;
  }
}

/* === SERVICE DETAIL SECTION === */
.service-detail-section {
  padding: 5rem 0;
  background-color: #fefef4;
}

.service-detail-container {
  max-width: 140rem;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background-color: #221f1f;
  border-radius: 4rem;
  overflow: hidden;
}

/* Slider */
.service-detail__slider {
  position: relative;
  height: 100%;
  min-height: 56rem;
  overflow: hidden;
  border-radius: 4rem;
}

.service-detail-swiper {
  width: 100%;
  height: 100%;
}

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

.service-detail__pagination {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 10;
}

.service-detail__pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
  cursor: pointer;
}

.service-detail__pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  width: 2.4rem;
  border-radius: 1.2rem;
}

/* Content */
.service-detail__content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-detail__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #edebdf;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  line-height: 1.2;
}

.service-detail__price {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #edebdf;
  margin-bottom: 2.4rem;
}

.service-detail__price svg {
  flex-shrink: 0;
}

.service-detail__desc {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #edebdf;
  margin-bottom: 2.4rem;
}

.service-detail__divider {
  width: 8rem;
  height: 0.1rem;
  background-color: #575451;
  margin-bottom: 2.4rem;
}

.service-detail__list {
  list-style: none;
  padding: 0;
  margin: 0 0 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.service-detail__list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.4rem;
  color: #edebdf;
  line-height: 1.4;
}

.service-detail__list li svg {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  color: #d4c4a8;
}

.service-detail__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.4rem 0.4rem 2.4rem;
  border: 0.15rem solid rgba(255, 255, 255, 0.5);
  border-radius: 5rem;
  background: transparent;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  max-width: 32rem;
}

.service-detail__btn:hover {
  background-color: #fefef4;
  border-color: #fefef4;
  color: #221f1f;
}

.service-detail__btn svg {
  width: 4rem;
  height: 4rem;
  transition: transform 0.3s;
  fill: #fefef4;
  stroke: #221f1f;
}

.service-detail__btn:hover svg {
  transform: rotate(38deg);
  fill: #221f1f;
  stroke: #fefef4;
}

/* === RESPONSIVE === */
@media (max-width: 1023px) {
  .service-detail-section {
    padding: 5.6rem 0 4rem;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    border-radius: 2.4rem;
  }

  .service-detail__slider {
    min-height: 32rem;
    border-radius: 2rem;
  }

  .service-detail__content {
    padding: 3.2rem 2.4rem;
  }

  .service-detail__title {
    font-size: 2.4rem;
  }

  .service-detail__price {
    font-size: 1.6rem;
  }

  .service-detail__desc {
    font-size: 1.6rem;
  }

  .service-detail__list li {
    font-size: 1.4rem;
  }

  .service-detail__btn {
    max-width: 100%;
  }
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  gap: 2rem;
}

.process-header__text {
  max-width: 55rem;
}

.process-header__text h2 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #221f1f;
  margin-bottom: 1.6rem;
  line-height: 7.2rem;
}

.process-header__text p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #221f1f;
  font-weight: 500;
  margin-bottom: 0;
}

.process-header__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.4rem 0.4rem 0.4rem 2.4rem;
  border: 0.15rem solid #221f1f;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #221f1f;
  transition: all 0.3s;
  white-space: nowrap;
  width: 100%;
  max-width: 24.5rem;
  justify-content: space-between;
}

.process-header__btn:hover {
  background-color: #221f1f;
  color: #fefef4;
}

.process-header__btn svg {
  transition: all 0.3s;
}

.process-header__btn:hover svg {
  transform: rotate(38deg);
}
section.process-section {
  padding: 5rem 0;
}

header.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  gap: 2rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 2.4rem;
  max-height: 56.8rem;
}

.process-item {
  background-color: #edebdf;
  padding: 1.6rem 2.5rem 1.6rem 1.6rem;
  border-radius: 4rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  height: 17.2rem;
}

.process-item__number {
  font-size: 4rem;
  font-weight: 500;
  color: #221f1f;
  line-height: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #d8d4c18a;
  border-radius: 3.2rem;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: 11.6rem;
}

.process-item__content h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #221f1f;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.process-item__content p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #221f1f;
  margin-bottom: 0;
}

.process-image {
  border-radius: 4rem;
  overflow: hidden;
  height: 100%;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.process-item:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
.process-item:nth-child(3) {
  grid-column: 2;
  grid-row: 1;
}
.process-item:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}
.process-item:nth-child(5) {
  grid-column: 2;
  grid-row: 3;
}
.process-image {
  grid-column: 1;
  grid-row: 3;
}

.reviews-section {
  padding: 5rem 0 0 0;
  background-color: #fefef4;
}

.reviews-title {
  font-size: 4.8rem;
  font-weight: 600;
  color: #221f1f;
  margin-bottom: 4rem;
  font-family: "Montserrat", sans-serif;
}

.reviews-slider-wrapper {
  position: relative;
  padding: 0;
}

.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-card__image {
  position: relative;
  border-radius: 4rem;
  overflow: hidden;
  margin-bottom: 2.4rem;
}

.review-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 23.8rem;
}

.review-card__pagination {
  position: absolute;
  bottom: 1.6rem;
  left: 150% !important;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 2;
}

.review-card__pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}

.review-card__pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  width: 2.4rem;
  border-radius: 0.4rem;
}

.review-card__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}

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

.review-card__avatar {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__name {
  font-size: 1.8rem;
  font-weight: 600;
  color: #221f1f;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.review-card__date {
  font-size: 1.4rem;
  color: #999;
}

.review-card__rating {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.review-card__text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #545454;
  margin-bottom: 0;
  flex-grow: 1;
  padding: 0 12rem 0 7rem;
}

/* Navigation */
.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 100%;
  border: none;
  background: transparent;
  color: #221f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  padding: 0;
}

.reviews-nav--prev {
  left: -3.5rem;
}

.reviews-nav--next {
  right: -3.5rem;
}

/* === CONSULTATION CTA SECTION === */
.consultation-section {
  padding: 5rem 0 0 0;
  background-color: #fefef4;
}

.consultation-container {
  position: relative;
  border-radius: 3.2rem;
  overflow: hidden;
  min-height: 48rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Image */
.consultation-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.consultation-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark Overlay */
.consultation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2;
  pointer-events: none;
}

/* Content */
.consultation-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 72rem;
  padding: 4rem;
}

.consultation-title {
  font-size: 4.8rem;
  font-weight: 600;
  color: #fefef4;
  margin-bottom: 2.4rem;
  line-height: 1.2;
}

.consultation-subtitle {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #fefef4;
  margin-bottom: 6rem;
  max-width: 53.2rem;
  margin-left: auto;
  margin-right: auto;
}

/* Form */
.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
}

.consultation-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  width: 100%;
  max-width: 64rem;
}

.consultation-form__input {
  width: 100%;
  padding: 1.4rem 2.4rem;
  border: none;
  border-radius: 5rem;
  background-color: #fff;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  color: #221f1f;
  transition: all 0.3s;
}

.consultation-form__input::placeholder {
  color: #999;
}

.consultation-form__input:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(212, 196, 168, 0.5);
  background-color: #fefef4;
}

.consultation-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #fefef4;
  color: #221f1f;
  padding: 0.4rem 0.4rem 0.4rem 2.5rem;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.consultation-form__btn:hover {
  background-color: #fff;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.3);
}

.consultation-form__btn-icon {
  width: 4rem;
  height: 4rem;
  background-color: #221f1f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.consultation-form__btn:hover .consultation-form__btn-icon {
  transform: rotate(37.5deg);
}

@media (max-width: 1023px) {
  section.process-section {
    padding: 4rem 0 !important;
  }

  .process-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
  }

  .process-header h2 {
    font-size: 3.2rem;
  }

  .process-header__btn {
    width: 100%;
    justify-content: space-between;
    max-width: 100%;
  }

  .process-grid {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    max-height: 100%;
  }

  .process-item {
    padding: 0.8rem;
    gap: 1.6rem;
    height: 100%;
    border-radius: 2rem;
  }

  .process-item__number {
    font-size: 2.4rem;
    max-width: 6.3rem;
    width: 100%;
    height: 11.4rem;
    border-radius: 1.6rem;
    font-weight: 500;
  }

  .process-item__content h3 {
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 600;
  }

  .process-item__content p {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }

  .process-image {
    order: 99;
    height: 12rem;
    width: 100%;
    margin-top: 0rem;
    border-radius: 2rem;
  }
  .certificates-slider {
    padding: 0 4rem;
  }

  .certificate-card {
    padding: 2.4rem;
  }

  .partners-logo {
    padding: 1.4rem 2.4rem;
    font-size: 1.5rem;
    min-width: 18rem;
  }

  .achievements-section {
    padding: 4rem 1.6rem;
  }

  .certificates-slider {
    padding: 0 3.2rem;
  }

  .certificate-card {
    padding: 2rem;
  }

  .certificate-card__content h3 {
    font-size: 1.8rem;
  }

  .certificate-card__desc {
    font-size: 1.2rem;
  }

  .partners-logo {
    padding: 1.2rem 2rem;
    font-size: 1.4rem;
    min-width: 16rem;
  }

  .reviews-section {
    padding: 4rem 0;
  }

  .reviews-title {
    font-size: 3.2rem;
    margin-bottom: 3.2rem;
  }

  .reviews-slider-wrapper {
    padding: 0 4rem;
  }

  .review-card__image {
    border-radius: 2rem;
    margin-bottom: 1.6rem;
  }

  .review-card__avatar {
    width: 4rem;
    height: 4rem;
  }

  .review-card__name {
    font-size: 1.6rem;
  }

  .review-card__date {
    font-size: 1.3rem;
  }

  .review-card__text {
    font-size: 1.5rem;
  }

  .reviews-nav--prev {
    left: -2rem;
  }
  .reviews-nav--next {
    right: -2rem;
  }
  .reviews-nav {
    width: 2.4rem;
    height: 100%;
    top: 66%;
  }

  .reviews-title {
    font-size: 2.8rem;
  }

  .reviews-slider-wrapper {
    padding: 0;
  }

  .review-card__image {
    border-radius: 1.6rem;
    margin-bottom: 1.2rem;
  }

  .review-card__pagination {
    bottom: 1.2rem;
  }

  .review-card__header {
    flex-direction: column;
    gap: 1.2rem;
  }

  .review-card__author {
    width: 100%;
  }

  .review-card__rating {
    align-self: flex-end;
  }

  .review-card__text {
    font-size: 1.4rem;
    padding: 0;
  }

  .consultation-section {
    padding: 4rem 0 0;
  }

  .consultation-container {
    border-radius: 2.4rem;
    min-height: auto;
  }

  .consultation-content {
    padding: 3.2rem 2.4rem;
  }

  .consultation-title {
    font-size: 3.2rem;
  }

  .consultation-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.4rem;
  }

  .consultation-form__row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .consultation-form__input {
    padding: 1.4rem 2rem;
  }

  .consultation-form__btn {
    width: 100%;
    justify-content: center;
  }

  .consultation-content {
    padding: 2.4rem 1.6rem;
  }

  .consultation-title {
    font-size: 2.6rem;
  }

  .consultation-subtitle {
    font-size: 1.4rem;
  }

  .consultation-form__btn {
    padding: 1.2rem 1.6rem;
  }

  .consultation-form__btn-icon {
    width: 3.6rem;
    height: 3.6rem;
  }
}
