.main {
  padding: 5rem 4rem 2.4rem;
}

.services-page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 4rem;
}

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

.services-hero__content {
  padding: 7rem 0 7rem 4rem;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 44.7rem;
}
/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 0.8rem;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FEFEF499;
  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;
  text-transform: uppercase;
}

.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: #FEFEF4;
  margin-bottom: 3.2rem;
  max-width: 48rem;
}

/* 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: 44.7rem;
  width: 100%;
}

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

/* === WHAT WE DO SECTION === */
.what-we-do-section {
  padding: 5rem 0;
  background-color: #fefef4;
}

.what-we-do-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background-color: #edebdf;
  border-radius: 4rem;
  overflow: hidden;
}

/* Slider */
.what-we-do__slider {
  position: relative;
  height: 100%;
  min-height: 56rem;
  overflow: hidden;
}

.what-we-do-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Swiper Base Styles */
.swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

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

/* What We Do Slider Specific */

.what-we-do-swiper {
  width: 100%;
  height: 100%;
}

/* Убедись, что родительский блок relative */
.what-we-do__slider {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 66rem;
  overflow: hidden; /* Важно, чтобы слайды не вылезали */
  border-radius: 4rem;
}

/* Стилизация контейнера пагинации */
.what-we-do__slider .what-we-do__pagination {
  position: absolute;
  bottom: 2.4rem !important;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 10;
  width: auto !important; /* Перебиваем стандартную ширину Swiper */
}

/* Стилизация самих точек */
.what-we-do__slider .swiper-pagination-bullet {
  width: 0.8rem !important;
  height: 0.8rem !important;
  background-color: rgba(255, 255, 255, 0.5) !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  margin: 0 !important; /* Сбрасываем стандартный margin библиотеки */
  cursor: pointer;
  transition: all 0.3s;
}

/* Активная точка */
.what-we-do__slider .swiper-pagination-bullet-active {
  background-color: #fff !important;
  width: 2.4rem !important;
  border-radius: 1.2rem !important;
}

/* Content */
.what-we-do__content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.what-we-do__title {
  font-size: 4rem;
  font-weight: 700;
  color: #221F1F;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  line-height: 1.2;
}

.what-we-do__price {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #221f1f;
  margin-bottom: 2.4rem;
}

.what-we-do__price svg {
  flex-shrink: 0;
}

.what-we-do__desc {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #221F1F;
  margin-bottom: 2.4rem;
}

.what-we-do__divider {
  width: 8rem;
  height: 0.1rem;
  background-color: #575451;
  opacity: 0.5;
  margin-bottom: 2.4rem;
}

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

.what-we-do__list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.6rem;
  color: #221F1F;
  line-height: 1.4;
}

.what-we-do__list li svg {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  color: #d4c4a8;
}

.what-we-do__btn {
  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;
  width: 100%;
  max-width: 28rem;
}

.what-we-do__btn:hover {
  background-color: #221f1f;
  color: #fefef4;
}

.what-we-do__btn svg {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.what-we-do__btn:hover svg {
  transform: rotate(37.5deg);
  background-color: #fefef4;
  color: #221f1f;
  border-radius: 100%;
}

/* === ESTIMATED COST SECTION === */
.estimated-cost-section {
  padding: 5rem 0;
  background-color: #fefef4;
}

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

.estimated-cost__header-text {
  max-width: 45rem;
}

.estimated-cost__title {
  font-size: 4.8rem;
  font-weight: 700;
  color: #221f1f;
  margin-bottom: 1.2rem;
}

.estimated-cost__subtitle {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #221F1F;
  margin-bottom: 0;
  font-weight: 500;
}

.estimated-cost__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  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;
  white-space: nowrap;
}

.estimated-cost__btn svg {
  transition: transform 0.3s;
}

.estimated-cost__btn:hover svg {
  transform: rotate(37.5deg);
}

.estimated-cost__btn:hover {
  background-color: #221f1f;
  color: #fefef4;
}

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

.pricing-card {
  background-color: #edebdf;
  padding: 1.6rem 1.6rem 1.6rem 2.4rem;
  border-radius: 4rem;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 2.4rem;
}

.pricing-card_text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.pricing-card__number {
  font-size: 2.4rem;
  font-weight: 700;
  color: #221f1f;
  opacity: 0.6;
  background-color: #d8d4c18a;
  padding: 3.4rem 3.2rem;
  border-radius: 3.2rem;
}

.pricing-card__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #221F1F;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

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

.pricing-card__price svg {
  flex-shrink: 0;
}

.pricing-card__desc {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #221F1F;
}
.pricing-card__desc p{
  margin-bottom:0;
  color: #221F1F;
}
.estimate-section {
  padding: 5rem 0;
  height: 100%;
}

.estimate-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54.4rem;
  border-radius: 4rem;
  overflow: hidden;
}

.estimate-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.estimate__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.estimate__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 75.4rem;
  padding: 2rem;
}

.estimate__title {
  font-size: 4.8rem;
  font-weight: 600;
  color: #fefef4;
  text-transform: uppercase;
  line-height: 6.4rem;
  margin-bottom: 2.4rem;
}

.estimate__subtitle {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #fefef4;
  margin-bottom: 6rem;
  font-weight: 400;
}

.estimate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fefef4;
  color: #221f1f;
  padding: 0.4rem 0.4rem 0.4rem 2.4rem;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 0.4rem;
  white-space: nowrap;
  width: 100%;
  max-width: 19.8rem;
  line-height: 2.4rem;
  transition: transform 0.3s;
}

a.estimate__btn:hover svg {
  background-color: #fff;
  transform: translateY(-0.1rem);
  transform: rotate(39deg);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.25);
}

.estimate__btn svg {
  width: 4rem;
  height: 4rem;
  transition: transform 0.3s;
  border-radius: 100%;
}
/* === PROJECTS SECTION === */
.projects-section {
  padding: 5rem 4rem;
  background-color: #fefef4;
}

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

.projects-header__text {
  max-width: 45rem;
}

.projects-header h2 {
  font-size: 4.8rem;
  font-weight: 600;
  color: #221f1f;
  margin-bottom: 1.6rem;
}

.projects-header p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #221f1f;
  font-weight: 500;
}

.projects-link {
  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.1rem;
  justify-content: space-between;
}
.projects-link svg {
  transition: rotate 0.3s;
}
.projects-link:hover {
  background-color: #221f1f;
  color: #fefef4;
}
.projects-link:hover svg {
  rotate: 38deg;
}

.projects-link svg {
  width: 4rem;
}

/* === TOP DETAIL CARD === */
.project-detail {
  background-color: #221f1f;
  border-radius: 5.2rem 3.2rem 4rem 4rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.2rem;
  color: #fefef4;
  position: relative;
  min-height: 67.6rem;
}

/* Before/After Slider */
.project-detail__slider {
  position: relative;
  border-radius: 4rem;
  overflow: hidden;
  height: 100%;
  min-height: 32rem;
  user-select: none;
  cursor: ew-resize;
}

.project-detail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.project-detail__img--before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.project-detail__img--after {
  z-index: 1;
}

.project-detail__slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0.2rem;
  background: #fff;
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.project-detail__handle-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6.4rem;
  height: 6.4rem;
  background: #edebdf33;
  color: #221f1f;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(4px);
}

.project-detail__handle-icon {
  width: 4.8rem;
  height: 4.8rem;
}

.project-detail__label {
  position: absolute;
  top: 1.6rem;
  padding: 0.8rem 1.6rem;
  background: #edebdf;
  border-radius: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 4;
  pointer-events: none;
  color: #221f1f;
  width: 100%;
  max-width: 10.1rem;
  text-align: center;
  font-size: 1.6rem;
}

.project-detail__label--before {
  left: 1.6rem;
}
.project-detail__label--after {
  right: 1.6rem;
}

.project-detail__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 1.6rem 1.6rem;
}

.project-detail__location {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: #92918c;
}

.project-detail__title {
  font-size: 4rem;
  line-height: 4.8rem;
  margin-bottom: 2.4rem;
  color: #fefef4;
  font-weight: 600;
}

.project-detail__stats {
  display: flex;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
  flex-wrap: wrap;
}

.project-detail__stat {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fefef4;
}

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

.project-detail__divider {
  width: 100%;
  max-width: 8rem;
  background-color: #575451;
  height: 0.1rem;
}
.project-detail__rooms {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3.2rem;
  margin-top: 2.4rem;
}

.project-detail__room {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
  font-size: 1.5rem;
  gap: 0.8rem;
}

.project-detail__room-name {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  width: 100%;
  max-width: 15rem;
  padding-right: 0.8rem;
  line-height: 2.4rem;
}
.project-detail__room-divider {
  width: 0.2rem;
  height: 2.4rem;
  background-color: #575451;
}
span.project-detail__room-meta {
  font-size: 1.6rem;
  color: #938d86;
  line-height: 2.4rem;
}

.project-detail__room-icon {
  width: 2rem;
  height: 2rem;
  opacity: 0.8;
}

.project-detail__room-meta {
  opacity: 0.7;
}

.project-detail__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.project-detail__btn {
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.4rem;
  border: 0.15rem solid rgba(255, 255, 255, 0.3);
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fefef4;
  transition: all 0.3s;
  text-decoration: none;
  width: 100%;
  max-width: 20rem;
  display: flex;
  justify-content: center;
}

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

.project-detail__nav {
  display: flex;
  gap: 1.2rem;
}

.project-detail__nav-btn {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  border: transparent;
  background: transparent;
  color: #fefef4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
button#next-project {
  rotate: 180deg;
}

.project-detail__nav-btn svg {
  stroke: #9d9a8c;
  transition: stroke 0.3s;
}

.project-detail__nav-btn:hover:not(:disabled) {
  background: #fefef4;
  color: #221f1f;
  border-color: #fefef4;
}

.project-detail__nav-btn:hover:not(:disabled) svg {
  stroke: #000000;
}

.project-detail__nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.projects-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.project-card {
  background-color: #edebdf;
  border-radius: 2.4rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  border: 0.2rem solid transparent;
  max-height: 67.6rem;
  border-radius: 4rem;
}

.project-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.08);
}

.project-card.active {
  border-color: #d4c4a8;
  background-color: #e8e6d9;
  height: 67.6rem;
  max-height: 67.6rem;
}

.project-card__img-wrap {
  position: relative;
  height: 67.6rem;
  overflow: hidden;
}

.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.project-card:hover .project-card__img {
  transform: scale(1.05);
}

.project-card__badge {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  background: #fefef4;
  padding: 0.8rem 1.6rem;
  border-radius: 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #221f1f;
  width: 100%;
  max-width: 11.8rem;
  align-items: center;
  align-self: center;
  justify-content: center;
  display: flex;
  text-align: center;
  line-height: 2.4rem;
  gap: 0.8rem;
}

.project-card__content {
  padding: 2.4rem;
  position: relative;
  bottom: 46.59rem;
  height: 46.2rem;
  align-content: flex-end;
  border-radius: 4rem;
  overflow: hidden;
  z-index: 1;
}

.project-card__content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    185.02deg,
    rgba(34, 31, 31, 0) 44.81%,
    rgba(34, 31, 31, 0.8) 95.96%
  );
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  -webkit-mask-image: linear-gradient(
    185.02deg,
    transparent 37.45%,
    black 96.54%
  );
  mask-image: linear-gradient(180deg, transparent 35.45%, black 67.54%);
  border-radius: inherit;
}

.project-card__title {
  font-size: 2rem;
  font-weight: 600;
  color: #fefef4;
  margin-bottom: 0.8rem;
  line-height: 2.4rem;
}

.project-card__desc {
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #fefef4;
  margin-bottom: 0;
}

/* === 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: 1.6rem;
  line-height: 1.2;
}

.consultation-subtitle {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #FEFEF4;
  margin-bottom: 6rem;
  max-width: 60rem;
  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.2rem 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) {
  .main {
    padding: 2.4rem 1.6rem 1.1rem;
  }
  .services-page-hero {
  border-radius: 2rem;
  }

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

  .services-hero__content {
    order: 1;
    padding: 2.4rem 1.6rem;
    justify-content: flex-start;
    height: 100%;
  }

  .services-hero__image {
    order: 2;
    min-height: 56.8rem;
    border-radius: 2rem;
  }

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

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

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

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

  /* === WHAT WE DO SECTION === */

  .what-we-do-section {
    padding: 2.4rem 0 4rem;
    border-radius: 2rem;
  }

  .what-we-do-card {
    grid-template-columns: 1fr;
    border-radius: 2rem;
  }

  .what-we-do__slider {
    max-height: 28rem;
    border-radius: 2rem;
    min-height: 28rem;
  }

  .what-we-do__content {
    padding: 4rem 1.6rem;
  }

  .what-we-do__title {
    font-size: 2.4rem;
  }

  .what-we-do__price {
    font-size: 1.6rem;
  }

  .what-we-do__desc {
    font-size: 1.6rem;
  }

  .what-we-do__list li {
    font-size: 1.6rem;
  }

  .what-we-do__btn {
    max-width: 100%;
  }

  /* Estimated Cost Mobile */
  .estimated-cost-section {
    padding: 4rem 0;
  }

  .estimated-cost__header {
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 4rem;
  }

  .estimated-cost__title {
    font-size: 3.2rem;
  }

  .estimated-cost__btn {
    width: 100%;
    justify-content: space-between;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-card {
    padding: 1.6rem;
    border-radius: 2rem;
    gap: 1.6rem;
  }

  .pricing-card__number {
    font-size: 2rem;
    padding: 0.4rem 1.25rem;
    align-content: center;
    border-radius: 1.6rem;
    color: #221F1F;
    opacity: 1;
  }

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

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

  .pricing-card__desc {
    font-size: 1.4rem;
  }

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

  .estimate-container {
    flex-direction: column;
    height: 58.1rem;
    border-radius: 2.4rem;
  }

  .estimate__content {
    text-align: left;
    padding: 2.4rem 1.6rem 0;
    width: 100%;
    position: absolute;
    top: 0;
  }

  .estimate__title {
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
    line-height: 4rem;
  }

  .estimate__subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
    line-height: 2.4rem;
  }

  .estimate__btn {
    width: 100%;
    align-self: stretch;
    margin: auto;
    justify-content: space-between;
    padding: 0.4rem 0.4rem 0.4rem 2.4rem;
    max-width: 100%;
  }

  .estimate__bg {
    position: absolute;
    height: 58.1rem;
    width: 100%;
    border-radius: 0 0 2.4rem 2.4rem;
  }

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

  .projects-header {
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
  }
  .projects-link{
    width:100%;
    max-width: 100%;
  }

  .projects-header h2 {
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
  }

  .project-detail {
    grid-template-columns: 1fr;
    padding: 2.4rem;
    gap: 0;
    min-height: auto;
  }

  .project-detail__slider {
    min-height: 28rem;
    border-radius: 2rem;
  }
  .project-detail__info {
    padding: 4rem 1.6rem 1.6rem;
  }

  .project-detail__title {
    font-size: 2.8rem;
  }

  .project-detail__stats {
    gap: 1.6rem;
  }

  .projects-list {
    display: flex;
    overflow-x: auto;
    gap: 1.6rem;
    padding-bottom: 1.6rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .project-card {
    width: 28rem;
    scroll-snap-align: start;
    flex-shrink: 0;
    height: 48rem;
    border-radius: 2rem;
  }
  .project-card.active {
    height: 48rem;
    border-radius: 2rem;
    max-height: 48rem;
  }
  .project-card__img-wrap {
    height: 48rem;
  }
  .project-card__content {
    padding: 1.6rem;
    position: relative;
    bottom: 39.65rem;
    height: 39.6rem;
    border-radius: 2rem;
    overflow: hidden;
    z-index: 1;
  }

  .project-card__title{font-size: 1.6rem;}
.project-card__desc{font-size: 1.4rem;}
  .project-card__img-wrap {
    height: 48rem;
  }
  .project-card__badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
  }
  .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: 3.2rem;
    text-align: left;
    text-transform: uppercase;
  }

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

  .consultation-form__btn {
    padding: 0.4rem 0.4rem 0.4rem 2.4rem;
    justify-content: space-between;
  }

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