*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --container-width: 1300px;
  --container-padding: 20px;

  --color-bg: #111111;
  --color-white: #ffffff;
  --color-accent: #ead5ab;
  --color-accent-dark: #0d6b5b;
  --color-glass: rgba(255, 255, 255, 0.2);
  --color-glass-border: rgba(255, 255, 255, 0.14);

  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.18);
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #2a8e73;
  color: var(--color-white);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: 100%;
  max-width: calc(var(--container-width) + (var(--container-padding) * 2));
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: #0f5d4d;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
  linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.12) 36%, rgba(0, 0, 0, 0.08) 100%),
  url("../img/main.png") center center / cover no-repeat;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 38px;
}

.hero__logo {
  display: inline-flex;
  align-items: center;
  max-width: 320px;
}

.hero__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__currency {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.hero__currency-btn {
  min-width: 44px;
  height: 42px;
  border: 0;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.88);
  color: #7d7d7d;
  cursor: pointer;
  transition: 0.25s ease;
  font-weight: 700;
}

.hero__currency-btn + .hero__currency-btn {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.hero__currency-btn.is-active {
  color: var(--color-accent-dark);
  background: #f5f5f5;
}

.hero__favorite {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s ease;
}

.hero__favorite:hover,
.hero__favorite.is-active {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.hero__btn {
  min-height: 42px;
  padding: 10px 22px;
  border-radius: 10px;
  background: var(--color-accent);
  color: var(--color-accent-dark);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.hero__btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.hero__btn--ghost {
  background: var(--color-accent);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 115px;
  padding-bottom: 120px;
}

.hero__title {
  margin: 0 0 105px;
  max-width: 840px;
  text-align: center;
  font-size: 66px;
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.hero__title span {
  display: inline-block;
  position: relative;
  margin-top: 16px;
}

.hero__title span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  width: 540px;
  max-width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
}


@media (max-width: 991px) {
  .hero {
    min-height: auto;
  }

  .hero__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions {
    gap: 10px;
  }

  .hero__content {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero__title {
    font-size: 44px;
    margin-bottom: 52px;
  }

  .hero__title span::before {
    width: 320px;
    top: -10px;
  }

  .hero-search {
    padding: 18px;
  }

  .hero-search__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --container-padding: 16px;
  }

  .hero__header {
    padding-top: 24px;
  }

  .hero__logo {
    max-width: 220px;
  }

  .hero__actions {
    width: 100%;
    gap: 8px;
  }

  .hero__btn {
    padding: 10px 16px;
  }

  .hero__content {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .hero__title {
    font-size: 34px;
    line-height: 1.02;
    margin-bottom: 34px;
  }

  .hero__title span {
    margin-top: 10px;
  }

  .hero__title span::before {
    width: 220px;
    top: -8px;
  }

  .hero-search__row {
    grid-template-columns: 1fr;
  }

  .hero-search__control {
    font-size: 16px;
    height: 64px;
  }

  .hero-search__submit {
    height: 44px;
    font-size: 18px;
  }
}
.recommend{
  background:#0f5f4d;
  padding-bottom:120px;
}

.recommend__nav{
  background:#2b8a6d;
}

.recommend__nav-inner{
  display:flex;
  justify-content:center;
}

.recommend__nav a{
  color:white;
  padding:22px 60px;
  border-left:1px solid rgba(255,255,255,0.2);
  font-weight:500;
}

.recommend__title{
  color:white;
  font-size:36px;
  margin:60px 0 40px;
}

.cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.card{
  background:white;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.2);
  transition:.3s;
}

.card:hover{
  transform:translateY(-6px);
}

.card__slider{
  position:relative;
  height:240px;
  overflow:hidden;
}

.card__slides{
  display:flex;
  height:100%;
  transition:.4s;
}

.card__slides img{
  width:100%;
  object-fit:cover;
}

.card__fav{
  position:absolute;
  left:12px;
  top:12px;
  background:rgba(0,0,0,.5);
  color:white;
  border:none;
  width:34px;
  height:34px;
  border-radius:6px;
  cursor:pointer;
}

.card__open{
  position:absolute;
  right:12px;
  top:12px;
  background:rgba(0,0,0,.5);
  color:white;
  border:none;
  width:34px;
  height:34px;
  border-radius:6px;
  cursor:pointer;
}

.card__arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,.5);
  border:none;
  color:white;
  width:34px;
  height:34px;
  cursor:pointer;
}

.card__arrow.left{
  left:10px;
}

.card__arrow.right{
  right:10px;
}

.card__info{
  padding:18px;
}

.card__top{
  display:flex;
  justify-content:space-between;
  margin-bottom:10px;
}

.card__top h3{
  margin:0;
  font-size:18px;
}

.address{
  font-size:13px;
  color:#555;
}

.card__type{
  text-align:right;
  font-weight:600;
}

.card__type span{
  display:block;
  font-size:12px;
  color:#777;
}

.card__params{
  font-size:14px;
  padding-left:0;
  list-style:none;
  margin:10px 0;
}

.card__price{
  font-weight:700;
  font-size:20px;
  color:#0f5f4d;
  text-align:right;
}
.recommend {
  position: relative;
  padding: 0;
  background: #2a8e73;
  overflow: hidden;
}

.recommend__nav {
  position: relative;
  z-index: 2;
}

.recommend__nav-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1040px;
  margin: 0 auto;
}

.recommend__nav-inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  background: #2b8a6d;
  border-left: 1px solid rgba(8, 79, 65, 0.5);
  border-right: 1px solid rgba(8, 79, 65, 0.5);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.recommend__body {
  position: relative;
  z-index: 1;
  padding-top: 34px;
  padding-bottom: 100px;
}

.recommend__body .container {
  position: relative;
  z-index: 2;
}

.recommend__title {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  margin-top: 30px;
}

.recommend__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 525px));
  justify-content: center;
  gap: 32px 64px;
}

.estate-card {
  width: 525px;
  border-radius: 8px;
  overflow: hidden;
  background: #efefef;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.estate-card__media {
  position: relative;
  height: 222px;
  overflow: hidden;
  background: #d8d8d8;
}

.estate-card__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.estate-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #d9d9d9;
}

.estate-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.estate-card__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.estate-card__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.estate-card__slide.is-active {
  opacity: 1;
}

.estate-card__icon,
.estate-card__arrow {
  position: absolute;
  z-index: 3;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.estate-card__icon {
  top: 10px;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(80, 74, 68, 0.78);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.estate-card__icon:hover {
  background: rgba(60, 54, 49, 0.95);
}

.estate-card__icon--fav {
  left: 10px;
}

.estate-card__icon--fav.is-active {
  color: #ff7f7f;
}

.estate-card__icon--open {
  right: 10px;
}

.estate-card__arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 34px;
  border-radius: 6px;
  background: rgba(80, 74, 68, 0.68);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.estate-card__arrow:hover {
  background: rgba(60, 54, 49, 0.9);
}

.estate-card__arrow--prev {
  left: 10px;
}

.estate-card__arrow--next {
  right: 10px;
}

.estate-card__dots {
  position: absolute;
  left: 50%;
  bottom: 9px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
}

.estate-card__dot {
  width: 32px;
  height: 3px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.estate-card__dot.active {
  background: #ffffff;
}

.estate-card__body {
  padding: 12px 16px 12px;
  background: #efefef;
}

.estate-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.estate-card__main {
  min-width: 0;
}

.estate-card__title {
  margin: 0 0 2px;
  color: #111111;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
}

.estate-card__address {
  color: #111111;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.estate-card__meta {
  flex: 0 0 auto;
  text-align: right;
  padding-top: 2px;
}

.estate-card__deal {
  color: #111111;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

.estate-card__author {
  color: #111111;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.estate-card__list {
  margin: 0;
  padding: 0 0 0 14px;
  color: #111111;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.estate-card__price {
  margin-top: -6px;
  text-align: right;
  color: #005f4e;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
}

@media (max-width: 991px) {
  .recommend__nav-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .recommend__grid {
    grid-template-columns: 1fr;
  }

  .estate-card {
    width: 100%;
    max-width: 334px;
    margin: 0 auto;
  }

  .recommend__body::before {
    clip-path: none;
    border-radius: 20px;
  }

  .recommend__title {
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .recommend {
    padding-bottom: 70px;
  }

  .recommend__nav-inner a {
    min-height: 64px;
    font-size: 15px;
    padding: 10px;
    text-align: center;
  }

  .estate-card__media {
    height: 210px;
  }
}
.site-footer {
  position: relative;
  padding: 72px 0 28px;
  background:
  radial-gradient(circle at top left, rgba(234, 213, 171, 0.10), transparent 28%),
  radial-gradient(circle at bottom right, rgba(234, 213, 171, 0.08), transparent 30%),
  #f3f1eb;
  color: #114d43;
  border-top: 1px solid rgba(17, 77, 67, 0.08);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
  linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(17, 77, 67, 0.12);
}

.site-footer__logo {
  display: inline-flex;
  max-width: 210px;
  margin-bottom: 18px;
}

.site-footer__logo img {
  width: 100%;
  height: auto;
}

.site-footer__text {
  max-width: 480px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(17, 77, 67, 0.82);
}

.site-footer__title {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: #0b5c4f;
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: rgba(17, 77, 67, 0.82);
}

.site-footer__list a,
.footer-group__links a,
.site-footer__menu a,
.site-footer__socials a {
  color: inherit;
  transition: 0.25s ease;
}

.site-footer__list a:hover,
.footer-group__links a:hover,
.site-footer__menu a:hover {
  color: #0b7a68;
}

.site-footer__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: #0b5c4f;
  color: #f5ead1;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(11, 92, 79, 0.16);
}

.store-btn:hover {
  transform: translateY(-2px);
  background: #0d6c5c;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 28px;
  padding: 38px 0 30px;
}

.footer-group {
  min-width: 0;
}

.footer-group__title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  color: #0b5c4f;
}

.footer-group__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-group__links li {
  margin-bottom: 10px;
}

.footer-group__links a {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(17, 77, 67, 0.86);
}

.footer-group__links.is-collapsible li:nth-child(n+6) {
  display: none;
}

.footer-group__links.is-collapsible.is-open li:nth-child(n+6) {
  display: block;
}

.footer-more {
  margin-top: 8px;
  padding: 0;
  border: none;
  background: transparent;
  color: #0b7a68;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px dashed rgba(11, 122, 104, 0.4);
}

.footer-more:hover {
  color: #095f51;
}

.site-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding: 26px 0;
  border-top: 1px solid rgba(17, 77, 67, 0.12);
  border-bottom: 1px solid rgba(17, 77, 67, 0.12);
}

.site-footer__menu a {
  font-size: 14px;
  color: rgba(17, 77, 67, 0.82);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
}

.site-footer__copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(17, 77, 67, 0.72);
}

.site-footer__socials {
  display: flex;
  gap: 10px;
}

.site-footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e8dcc0;
  color: #0b5c4f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.site-footer__socials a:hover {
  background: #0b5c4f;
  color: #f5ead1;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__apps {
    grid-column: 1 / -1;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 56px 0 24px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    padding: 30px 0 24px;
  }

  .site-footer__menu {
    gap: 10px 18px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__socials {
    margin-top: 6px;
  }
}
.site-footer__logo--badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0b5c4f 0%, #0f6b5b 100%);
  box-shadow: 0 14px 30px rgba(11, 92, 79, 0.18);
}

.site-footer__logo--badge img {
  width: 170px;
  height: auto;
  object-fit: contain;
}
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.property-details {
  padding: 40px 0 80px;
  background: #056c5d;
}

.property-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.property-card__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 14px;
}

.property-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 126px;
  gap: 3px;
  min-height: 180px;
}

.property-gallery__main,
.property-gallery__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.property-gallery__main img,
.property-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.property-gallery__main {
  min-height: 180px;
  background: #d6d6d6;
}

.property-gallery__main:hover img,
.property-gallery__thumb:hover img {
  transform: scale(1.04);
}

.property-gallery__side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
}

.property-gallery__thumb {
  border: none;
  padding: 0;
  cursor: pointer;
  background: #d6d6d6;
}

.property-gallery__thumb.is-active {
  outline: 2px solid #ead5ab;
  outline-offset: -2px;
}

.property-gallery__thumb--more span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.34);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.property-gallery__fav,
.property-gallery__open {
  position: absolute;
  top: 12px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: rgba(80, 74, 68, 0.78);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-gallery__fav {
  left: 12px;
}

.property-gallery__open {
  right: 12px;
}

.property-agent {
  padding: 12px;
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.property-agent__person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.property-agent__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  background: #0b5c4f;
  flex: 0 0 34px;
}

.property-agent__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-agent__name {
  color: #111111;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.property-agent__role {
  color: #8f8f8f;
  font-size: 11px;
  line-height: 1.2;
}

.property-agent__phone {
  color: #111111;
  font-size: 14px;
  font-weight: 800;
}

.property-agent__phone span {
  margin-left: 6px;
  color: #0b5c4f;
  border-bottom: 1px solid rgba(11, 92, 79, 0.35);
}

.property-agent__messengers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.property-agent__messenger,
.property-agent__action {
  min-height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.25s ease;
}

.property-agent__messenger--wa {
  background: #33b864;
  color: #ffffff;
}

.property-agent__messenger--tg {
  background: #49a9e8;
  color: #ffffff;
}

.property-agent__action--light {
  background: #efd4a7;
  color: #ffffff;
}

.property-agent__action--dark {
  background: #0b7d68;
  color: #ffffff;
}

.property-agent__messenger:hover,
.property-agent__action:hover {
  transform: translateY(-1px);
}

.property-summary,
.property-section {
  border-radius: 14px;
  background: #ffffff;
}

.property-summary {
  padding: 12px 20px 10px;
}

.property-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.property-summary__amount {
  color: #111111;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
}

.property-summary__sub {
  margin-top: 4px;
  color: #8f8f8f;
  font-size: 14px;
  font-weight: 500;
}

.property-summary__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-width: 260px;
}

.property-summary__item {
  padding: 0 18px;
  text-align: center;
  border-left: 1px solid #e3c897;
}

.property-summary__item:first-child {
  border-left: none;
}

.property-summary__item span {
  display: block;
  margin-bottom: 6px;
  color: #8f8f8f;
  font-size: 12px;
}

.property-summary__item strong {
  color: #111111;
  font-size: 18px;
  font-weight: 800;
}

.property-summary__bottom {
  grid-column: 1 / -1;
  padding-top: 10px;
  border-top: 1px solid #ececec;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8f8f8f;
  font-size: 11px;
}

.property-summary__bottom > div {
  display: flex;
  gap: 18px;
}

.property-section {
  padding: 22px 40px 26px;
  background: #27916f;
  color: #ffffff;
}

.property-section__title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 800;
}

.property-specs {
  display: flex;
  flex-direction: column;
}

.property-specs__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.property-specs__row:first-child {
  border-top: none;
}

.property-specs__row span,
.property-specs__row strong {
  font-size: 16px;
  line-height: 1.35;
}

.property-specs__row strong {
  font-weight: 700;
  text-align: right;
}

.property-specs__row--features strong {
  max-width: 620px;
}

.property-description p {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.55;
  color: #ffffff;
}

.property-description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .property-card__top {
    grid-template-columns: 1fr;
  }

  .property-gallery {
    grid-template-columns: 1fr;
  }

  .property-gallery__side {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .property-summary {
    grid-template-columns: 1fr;
  }

  .property-summary__stats {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .property-details {
    padding: 24px 0 50px;
  }

  .property-gallery__main {
    min-height: 220px;
  }

  .property-summary {
    padding: 14px;
  }

  .property-summary__amount {
    font-size: 22px;
  }

  .property-summary__stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .property-summary__item {
    border-left: none;
    border-top: 1px solid #e3c897;
    padding: 12px 0 0;
  }

  .property-summary__item:first-child {
    border-top: none;
    padding-top: 0;
  }

  .property-summary__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .property-summary__bottom > div {
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .property-section {
    padding: 20px 18px 22px;
  }

  .property-specs__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .property-specs__row strong {
    text-align: left;
  }
}
.property-gallery {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 6px;
}

.property-gallery__main {
  height: 440px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.property-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-gallery__side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 6px;
}

.property-gallery__thumb {
  height: 140px;
}
.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-modal img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
}

.image-modal__close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}
.inner-hero {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #034d42 0%, #0c7967 55%, #1b8f79 100%);
}

.inner-hero__bg {
  position: absolute;
  inset: 0;
  background:
  radial-gradient(circle at 18% 18%, rgba(0, 0, 0, 0.28) 0%, transparent 34%),
  radial-gradient(circle at 82% 22%, rgba(234, 213, 171, 0.09) 0%, transparent 20%),
  radial-gradient(circle at 60% 60%, rgba(0, 0, 0, 0.14) 0%, transparent 28%);
  pointer-events: none;
}

.inner-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.inner-hero__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
}

.inner-hero__logo {
  display: inline-flex;
  align-items: center;
  max-width: 240px;
}

.inner-hero__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.inner-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.inner-hero__currency {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.inner-hero__currency-btn {
  min-width: 46px;
  height: 38px;
  border: 0;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #7d7d7d;
  cursor: pointer;
  transition: 0.25s ease;
  font-weight: 700;
}

.inner-hero__currency-btn + .inner-hero__currency-btn {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.inner-hero__currency-btn.is-active {
  color: #0d6b5b;
  background: #f5f5f5;
}

.inner-hero__favorite {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #ead5ab;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s ease;
}

.inner-hero__favorite:hover,
.inner-hero__favorite.is-active {
  background: rgba(255, 255, 255, 0.1);
}

.inner-hero__btn {
  min-height: 38px;
  padding: 9px 20px;
  border-radius: 10px;
  background: #ead5ab;
  color: #0d6b5b;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.inner-hero__btn:hover {
  transform: translateY(-1px);
}

.inner-hero__content {
  padding: 42px 0 34px;
}

.inner-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.2;
}

.inner-hero__breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
}

.inner-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

@media (max-width: 991px) {
  .inner-hero {
    min-height: auto;
  }

  .inner-hero__header {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 22px;
  }

  .inner-hero__content {
    padding: 28px 0 28px;
  }

  .inner-hero__title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .inner-hero__logo {
    max-width: 190px;
  }

  .inner-hero__actions {
    gap: 8px;
  }

  .inner-hero__btn {
    padding: 9px 16px;
  }

  .inner-hero__breadcrumbs {
    font-size: 13px;
    flex-wrap: wrap;
  }

  .inner-hero__title {
    font-size: 28px;
  }
}
.aparto-header {
  position: relative;
  z-index: 100;
  width: 100%;
}

.aparto-header--home {
  position: absolute;
  top: 0;
  left: 0;
  padding: 28px 0 0;
  background: transparent;
}

.aparto-header--inner {
  padding: 22px 0;
  background: linear-gradient(135deg, #034d42 0%, #034d42 55%, #034d42 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.aparto-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.aparto-header__left,
.aparto-header__right {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.aparto-header__center {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.aparto-header__logo img,
.aparto-header__logo .custom-logo,
.aparto-header__logo .site-logo img {
  display: block;
  max-height: 54px;
  width: auto;
}

.aparto-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.aparto-header__nav .menu,
.aparto-header__nav ul,
.aparto-header__nav .navbar-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aparto-header__nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aparto-header__nav a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: 0.25s ease;
}

.aparto-header__nav a:hover {
  color: #ead5ab;
}

.aparto-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aparto-header__actions a,
.aparto-header__actions .btn,
.aparto-header__actions .menu-search-bar a,
.aparto-header__actions .sb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border-radius: 10px;
  background: #ead5ab;
  color: #0d6b5b !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  box-shadow: none;
  transition: 0.25s ease;
}

.aparto-header__actions a:hover,
.aparto-header__actions .btn:hover,
.aparto-header__actions .sb-btn:hover {
  transform: translateY(-1px);
  background: #f2dfbb;
}

.aparto-header .mega-menu,
.aparto-header .menu-list-items,
.aparto-header .sb-white-header {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 991px) {
  .aparto-header--home {
    position: relative;
    padding-top: 20px;
    background: linear-gradient(135deg, #034d42 0%, #0c7967 55%, #1b8f79 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .aparto-header__row {
    flex-wrap: wrap;
  }

  .aparto-header__center {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .aparto-header__nav .menu,
  .aparto-header__nav ul,
  .aparto-header__nav .navbar-nav {
    flex-wrap: wrap;
    gap: 14px 20px;
  }
}

@media (max-width: 640px) {
  .aparto-header__row {
    gap: 16px;
  }

  .aparto-header__logo img,
  .aparto-header__logo .custom-logo,
  .aparto-header__logo .site-logo img {
    max-height: 44px;
  }

  .aparto-header__actions a,
  .aparto-header__actions .btn,
  .aparto-header__actions .menu-search-bar a,
  .aparto-header__actions .sb-btn {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 13px;
  }
}
.recommend__nav-inner {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.recommend__nav-inner a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 88px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
}

@media (max-width: 991px) {
  .recommend__nav-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
.recommend__nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.recommend__nav-inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  font-weight: 600;
}
#coming-soon-footer-banner{
  display: none;
}
#choose_color{
  display: none;
}
/* ===== APARTO HEADER ===== */

.aparto-header {
  position: relative;
  width: 100%;
  z-index: 50;
}

.aparto-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.aparto-header__logo img {
  height: 42px;
}

.aparto-header__center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.aparto-header__nav {
  display: flex;
  gap: 40px;
  font-weight: 600;
}

.aparto-header__nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
}

.aparto-header__nav a:hover {
  opacity: 0.8;
}

.aparto-header__controls {
  display: flex;
  align-items: center;
  gap: 18px;
}

.aparto-header__icon-btn {
  color: #fff;
  font-size: 18px;
}

.aparto-header__post-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #e2cfa2;
  color: #0b5e4f;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.aparto-header__post-btn:hover {
  opacity: 0.9;
}
/* карточка объявления */
.estate-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
  display:flex;
  flex-direction:column;
}

.estate-card:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* картинка */
.estate-card_media{
  width:100%;
  height:220px;
  overflow:hidden;
}

.estate-card_media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* тело карточки */
.estate-card_body{
  padding:18px 20px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* верх карточки */
.estate-card_top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
}

.estate-card_top h3{
  font-size:18px;
  font-weight:600;
  margin:0;
}

/* тип объявления */
.estate-card_type{
  font-weight:600;
  color:#000;
}

/* цена */
.estate-card_price{
  font-size:20px;
  font-weight:700;
  color:#0e6b57;
}

/* характеристики */
.estate-card_features{
  display:flex;
  gap:12px;
  font-size:14px;
  color:#777;
}

.estate-card_features span{
  background:#f4f6f7;
  padding:4px 10px;
  border-radius:6px;
}
/* ===== Select2 dropdown styling ===== */
.select2-container--default .select2-dropdown {
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: #fff;
  margin-top: 6px;
}

/* Поле поиска внутри dropdown */
.select2-container--default .select2-search--dropdown {
  padding: 12px;
  background: #fff;
  border-bottom: 1px solid #f1f1f1;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  height: 44px;
  padding: 10px 14px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
  background: #fafafa;
  transition: all 0.2s ease;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: #e74c3c;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}

/* Список */
.select2-container--default .select2-results > .select2-results__options {
  max-height: 260px;
  padding: 8px 0;
}

/* Пункты */
.select2-container--default .select2-results__option {
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #222;
  transition: all 0.2s ease;
}

/* Hover / active */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #e74c3c !important;
  color: #fff !important;
}

/* Выбранный элемент */
.select2-container--default .select2-results__option[aria-selected="true"] {
  background: #fff3f1;
  color: #e74c3c;
  font-weight: 600;
}

/* Если dropdown открывается вверх */
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
/* Цвет текста в поле поиска Select2 */
.select2-container--default .select2-search--dropdown .select2-search__field {
  color: #222 !important;
}

/* Цвет placeholder */
.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
  color: #888;
}

/* Исправление если тема делает текст белым */
.select2-search__field {
  color: #222 !important;
}

.estate-card__dot {
  width: 28px;
  height: 3px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
  cursor: pointer;
}

.estate-card__dot.is-active {
  background: #ffffff;
}

/* ===== HOME RECOMMEND CARD ===== */

.estate-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #f3f1eb;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.estate-card__media {
  position: relative;
  height: 255px;
  overflow: hidden;
  background: #d9d9d9;
}

.estate-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.estate-card__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.estate-card__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.estate-card__slide.is-active {
  opacity: 1;
}

.estate-card__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50px;
  background: rgba(70, 70, 70, 0.55);
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
}

.estate-card__arrow:hover {
  background: rgba(40, 40, 40, 0.75);
}

.estate-card__arrow--prev {
  left: 14px;
}

.estate-card__arrow--next {
  right: 14px;
}

.estate-card__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
}

.estate-card__dot {
  width: 32px;
  height: 4px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
  cursor: pointer;
}

.estate-card__dot.is-active {
  background: #ffffff;
}

.estate-card__body {
  padding: 16px 18px 14px;
  background: #f3f1eb;
}

.estate-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.estate-card__main {
  min-width: 0;
  flex: 1 1 auto;
}

.estate-card__title {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
  color: #111111;
}

.estate-card__title a {
  color: inherit;
  text-decoration: none;
}

.estate-card__title a:hover {
  color: #0d6b5b;
}

.estate-card__subtitle {
  margin: 0 0 6px;
  color: rgba(17, 17, 17, 0.78);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
}

.estate-card__address {
  color: rgba(17, 17, 17, 0.62);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 500;
}

.estate-card__meta {
  flex: 0 0 auto;
  text-align: right;
}

.estate-card__deal {
  color: #111111;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 800;
  white-space: nowrap;
}

.estate-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
}

.estate-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.estate-card__features span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(13, 107, 91, 0.08);
  color: #0d6b5b;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.estate-card__price {
  color: #0d6b5b;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .estate-card__media {
    height: 220px;
  }

  .estate-card__body {
    padding: 14px 14px 12px;
  }

  .estate-card__top,
  .estate-card__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .estate-card__meta {
    text-align: left;
  }

  .estate-card__price {
    white-space: normal;
  }
}
.estate-card:hover {
  transform: translateY(-4px);
  transition: 0.2s;
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}
.estate-card {
  transition: transform .2s ease, box-shadow .2s ease;
}

.estate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}
/* ===== CARD POLISH ===== */

.estate-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.estate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.estate-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.estate-card__subtitle {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.estate-card__title,
.estate-card__subtitle {
  min-height: 2.6em;
}
/* ===== CARD TOP ICONS ===== */

.estate-card__media {
  position: relative;
}

.estate-card__icon-btn {
  position: absolute;
  top: 14px;
  z-index: 6;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  background: #cccc;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  line-height: 1;
  transition: 0.2s ease;
  border: none;
}

.estate-card__icon-btn:hover {
  background: rgba(40, 40, 40, 0.82);
  color: #ffffff;
}

.estate-card__icon-btn--fav {
  left: 14px;
}

.estate-card__icon-btn--open {
  right: 14px;
  font-size: 20px;
}

.estate-card__arrow,
.estate-card__dots {
  z-index: 5;
}
.estate-card__icon-btn--fav.is-active {
  background: rgba(40, 40, 40, 0.82);
  color: #ff6b81;
}
.wishlist-page {
  padding: 40px 0 80px;
  background: #056c5d;
}

.wishlist-page__empty {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 30px;
  text-align: center;
  background: #f3f1eb;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.wishlist-page__empty h2 {
  margin: 0 0 12px;
  color: #111111;
  font-size: 32px;
  font-weight: 800;
}

.wishlist-page__empty p {
  margin: 0 0 24px;
  color: rgba(17, 17, 17, 0.7);
  font-size: 16px;
  line-height: 1.6;
}

.wishlist-page__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  border-radius: 12px;
  background: #ead5ab;
  color: #0d6b5b;
  font-weight: 700;
  text-decoration: none;
}
/* ===== RELATED ADS WISHLIST ===== */

.prop-newest-image {
  position: relative;
}

.prop-estate-icons {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
}

.prop-estate-icons button {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: none;
  background: rgba(30, 30, 30, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
}

.prop-estate-icons button i {
  color: #ffffff;
  font-size: 16px;
}

.prop-estate-icons button:hover {
  background: rgba(0,0,0,0.75);
}

.prop-estate-icons button.is-active {
  background: rgba(0,0,0,0.75);
}

.prop-estate-icons button.is-active i {
  color: #ff5c73;
}
/* ===== FORCE STYLE: RELATED ADS WISHLIST ===== */

.prop-newest-image {
  position: relative;
}

.prop-estate-icons {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 20 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.prop-estate-icons .estate-card__icon-btn, .prop-estate-icons button.estate-card__icon-btn, .prop-estate-icons .estate-card__icon-btn--fav {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 12px !important;
  background: transparent;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
  text-decoration: none !important;
  position: static !important;
  margin-top: -7px;
}

.prop-estate-icons .estate-card__icon-btn i,
.prop-estate-icons button.estate-card__icon-btn i,
.prop-estate-icons .estate-card__icon-btn--fav i {
  color: #ffffff !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

.prop-estate-icons .estate-card__icon-btn.is-active,
.prop-estate-icons button.estate-card__icon-btn.is-active,
.prop-estate-icons .estate-card__icon-btn--fav.is-active {
  background: transparent;
}

.prop-estate-icons .estate-card__icon-btn.is-active i,
.prop-estate-icons button.estate-card__icon-btn.is-active i,
.prop-estate-icons .estate-card__icon-btn--fav.is-active i {
  color: #ff6b81 !important;
}

/* ===== SINGLE AD TOP BLOCK ===== */

.descs-box {
  padding: 8px 0 0;
}

.modern-version-block-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0 8px 12px 0;
  padding: 7px 14px;
  border-radius: 10px;
  background: #ead5ab;
  color: #0d6b5b !important;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.2s ease;
}

.modern-version-block-cat:hover {
  background: #f2dfbb;
  color: #0d6b5b !important;
}

.descs-box h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.modern-version-block-info {
  margin-top: 8px;
}

.modern-version-block-info .post-author {
  float: none !important;
}

.modern-version-block-info .post-author ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.modern-version-block-info .post-author ul li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}

.modern-version-block-info .post-author ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.modern-version-block-info .post-author ul li a:hover {
  color: #ead5ab;
}

.modern-version-block-info .post-author ul li img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.24);
}

.modern-version-block-info .post-author ul li:first-child {
  margin-right: 6px;
}

.modern-version-block-info .spliator {
  color: rgba(255, 255, 255, 0.45);
}

/* right price block */

.modern-version-block-btnz {
  padding: 24px;
  background: #f3f1eb;
  border-radius: 22px;
  border: 1px solid rgba(13, 107, 91, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.modern-version-block-btnz .new-price-tag {
  margin-bottom: 18px;
}

.modern-version-block-btnz .new-price-tag h3 {
  margin: 0;
  color: #121212;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.03em;
  word-break: break-word;
}

.modern-version-block-btnz .new-price-tag .negotiable-single {
  display: inline-block;
  margin-left: 8px;
  color: rgba(18, 18, 18, 0.58);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  vertical-align: middle;
}

.modern-version-block-btnz .ui-group-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modern-version-block-btnz .ui-group-buttons .btn {
  width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 14px;
  border: none !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  transition: 0.2s ease;
}

.modern-version-block-btnz .ui-group-buttons .btn:hover {
  transform: translateY(-1px);
}

.modern-version-block-btnz .ui-group-buttons .btn-success {
  background: #20b15a !important;
  color: #ffffff !important;
}

.modern-version-block-btnz .ui-group-buttons .btn-success:hover {
  background: #1a994d !important;
  color: #ffffff !important;
}

.modern-version-block-btnz .ui-group-buttons .btn-default,
.modern-version-block-btnz .ui-group-buttons .sb-click-num {
  background: #ffffff !important;
  color: #0d6b5b !important;
  border: 2px solid #ead5ab !important;
}

.modern-version-block-btnz .ui-group-buttons .btn-default:hover,
.modern-version-block-btnz .ui-group-buttons .sb-click-num:hover {
  background: #ead5ab !important;
  color: #0d6b5b !important;
}

.modern-version-block-btnz .ui-group-buttons .fa,
.modern-version-block-btnz .ui-group-buttons [class*="flaticon"] {
  font-size: 16px;
  line-height: 1;
}

.modern-version-block-btnz .sb-phonenumber {
  font-weight: 800;
}

/* spacing for the whole top row */

.single-post .row > .col-md-8 > .descs-box,
.single-ad .row > .col-md-8 > .descs-box {
  padding-right: 18px;
}

.single-post .row > .col-md-4 > .modern-version-block-btnz,
.single-ad .row > .col-md-4 > .modern-version-block-btnz {
  margin-top: 6px;
}

@media (max-width: 1199px) {
  .descs-box h1 {
    font-size: 34px;
  }

  .modern-version-block-btnz .new-price-tag h3 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .descs-box {
    margin-bottom: 22px;
  }

  .descs-box h1 {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .modern-version-block-btnz {
    padding: 20px;
  }

  .modern-version-block-btnz .new-price-tag h3 {
    font-size: 28px;
  }

  .single-post .row > .col-md-8 > .descs-box,
  .single-ad .row > .col-md-8 > .descs-box {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .modern-version-block-cat {
    min-height: 32px;
    padding: 6px 12px;
    font-size: 12px;
  }

  .descs-box h1 {
    font-size: 24px;
  }

  .modern-version-block-info .post-author ul {
    gap: 8px 12px;
  }

  .modern-version-block-info .post-author ul li {
    font-size: 14px;
  }

  .modern-version-block-btnz {
    padding: 18px;
    border-radius: 18px;
    width: 100%;
  }

  .modern-version-block-btnz .new-price-tag h3 {
    font-size: 24px;
  }

  .modern-version-block-btnz .new-price-tag .negotiable-single {
    display: block;
    margin: 8px 0 0;
    font-size: 14px;
  }

  .modern-version-block-btnz .ui-group-buttons .btn {
    min-height: 48px;
    font-size: 14px;
  }
}
/* ===== FIX COLORS: SINGLE AD TOP LEFT ===== */

.descs-box {
  background: #f3f1eb;
  border-radius: 22px;
  padding: 24px 28px 40px 28px !important;
  margin-top: 30px;
}
.descs-box h1 {
  color: #111111 !important;
}

.modern-version-block-info .post-author ul li,
.modern-version-block-info .post-author ul li span,
.modern-version-block-info .post-author ul li a,
.modern-version-block-info .spliator {
  color: #5e5e5e !important;
}

.modern-version-block-info .post-author ul li a:hover {
  color: #0d6b5b !important;
}

.modern-version-block-info .post-author ul li:first-child,
.modern-version-block-info .post-author ul li:first-child a {
  color: #111111 !important;
}
.modern-version-block-btnz {
  float: right;
  margin-top: 0;
}
/* ===== ALERT: IMAGE ORDER NOTICE ===== */

.alert.alert-info {
  background: #f3f1eb;
  border: 1px solid rgba(13,107,91,0.15);
  border-left: 4px solid #0d6b5b;
  border-radius: 14px;
  padding: 14px 18px 14px 46px;
  margin: 18px 0 22px;
  position: relative;
  font-size: 15px;
  color: #2b2b2b;
}

.alert.alert-info:before {
  content: "ℹ";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0d6b5b;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert.alert-info a {
  color: #0d6b5b;
  font-weight: 600;
  text-decoration: none;
}

.alert.alert-info a:hover {
  text-decoration: underline;
}

.alert.alert-info .close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: .6;
  border: none;
  background: none;
}

.alert.alert-info .close:hover {
  opacity: 1;
}

/* ===== SINGLE AD: FEATURES + DESCRIPTION ===== */

#description.descs-box {
  margin-top: 28px;
  padding: 28px;
  background: #f3f1eb;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  color: #000;
}

#description .short-features {
  margin: 0 0 22px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

#description .short-features .heading-panel {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

#description .short-features .heading-panel .main-title {
  color: #000000;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}
#description .clear-custom {
  display: block;
  margin: 0;
}

#description .clear-custom > div[class*="col-"] {
  float: none;
  width: 100%;
  margin: 0;
  padding: 0 0 14px !important;
  border-bottom: 1px solid rgb(3 77 66);
}

#description .clear-custom > div[class*="col-"]:last-child {
  margin-bottom: 0;
}

#description .clear-custom > div[class*="col-"] > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

#description .clear-custom > div[class*="col-"] > span strong {
  flex: 0 0 auto;
  min-width: 220px;
  color: #000000;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}
#description .clear-custom > div[class*="col-"] {
  color: #000000;
  font-size: 18px;
  line-height: 1.45;
}

#description .clear-custom > div[class*="col-"] .negotiable, #description .clear-custom > div[class*="col-"] .negotiable-single {
  color: rgb(0 0 0 / 78%);
  font-size: 15px;
  font-weight: 600;
}

#description .desc-points {
  margin-top: 26px;
  padding: 26px 28px;
  background: #034d42;
  border-radius: 18px;
}

#description .desc-points p {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
}

#description .desc-points p:last-child {
  margin-bottom: 0;
}

#description .tags-share,
#description hr,
#description .clearfix:last-child {
  display: none;
}

@media (max-width: 991px) {
  #description.descs-box {
    padding: 22px;
    border-radius: 18px;
  }

  #description .clear-custom > div[class*="col-"] > span {
    font-size: 16px;
  }

  #description .clear-custom > div[class*="col-"] > span strong {
    min-width: 180px;
    font-size: 15px;
  }

  #description .desc-points {
    padding: 22px;
  }

  #description .desc-points p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  #description.descs-box {
    padding: 18px;
    border-radius: 16px;
  }

  #description .short-features .heading-panel .main-title {
    font-size: 22px;
  }

  #description .clear-custom > div[class*="col-"] > span {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 15px;
  }

  #description .clear-custom > div[class*="col-"] > span strong {
    min-width: auto;
    font-size: 14px;
  }

  #description .desc-points {
    margin-top: 20px;
    padding: 18px;
    border-radius: 14px;
  }

  #description .desc-points p {
    font-size: 15px;
    line-height: 1.55;
  }
}

/* ===== Профиль пользователя ===== */
.profile-edit.tab-pane {
  background: #ffffff;
  border: 1px solid #e9edf2;
  border-radius: 14px;
  padding: 28px 30px;
  margin-bottom: 30px;
}

.profile-edit.tab-pane .heading-md {
  margin: 0 0 24px 0;
  padding-bottom: 14px;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  color: #1f2937;
  border-bottom: 1px solid #eef2f6;
}

/* Сброс bootstrap-оформления dl-horizontal */
.profile-edit.tab-pane .dl-horizontal {
  margin: 0;
}

.profile-edit.tab-pane .dl-horizontal dt,
.profile-edit.tab-pane .dl-horizontal dd {
  float: none;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}

/* Каждая строка как отдельный блок */
.profile-edit.tab-pane .dl-horizontal dt {
  font-size: 14px;
  font-weight: 700;
  color: #344054;
  margin-bottom: 8px;
}

.profile-edit.tab-pane .dl-horizontal dd {
  font-size: 15px;
  line-height: 1.6;
  color: #667085;
  background: #f8fafc;
  border: 1px solid #e6ebf1;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
  min-height: 50px;
  display: flex;
  align-items: center;
  word-break: break-word;
}

/* Пустые значения */
.profile-edit.tab-pane .dl-horizontal dd:empty {
  position: relative;
}

.profile-edit.tab-pane .dl-horizontal dd:empty::before {
  content: "Не указано";
  color: #98a2b3;
  font-style: italic;
}

/* Если внутри только пробел / nbsp, визуально тоже как пустое */
.profile-edit.tab-pane .dl-horizontal dd {
  white-space: normal;
}

.profile-edit.tab-pane .dl-horizontal dd a {
  color: #1d4ed8;
  text-decoration: none;
}

.profile-edit.tab-pane .dl-horizontal dd a:hover {
  text-decoration: underline;
}

/* Мобильная адаптация */
@media (max-width: 767px) {
  .profile-edit.tab-pane {
    padding: 20px 16px;
    border-radius: 10px;
  }

  .profile-edit.tab-pane .heading-md {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .profile-edit.tab-pane .dl-horizontal dt {
    font-size: 13px;
  }

  .profile-edit.tab-pane .dl-horizontal dd {
    font-size: 14px;
    padding: 12px 14px;
    min-height: 46px;
    margin-bottom: 16px;
  }
}

/* ========================================
   Aparto — кабинет / редактирование профиля
======================================== */

.profile-section {
  background: #fff;
  border: 1px solid #e8e3d9;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.profile-edit#edit {
  background: transparent;
  border: 0;
  padding: 0;
}

.profile-edit#edit .heading-md {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
}

.profile-edit#edit > p {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
}

.profile-edit#edit .help-block.pull-right {
  margin: 0 0 18px;
  float: none !important;
  text-align: right;
}

.profile-edit#edit .help-block.pull-right a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b6b5c;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.profile-edit#edit .help-block.pull-right a:hover {
  color: #095346;
  text-decoration: none;
}

.profile-edit#edit label {
  display: block;
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #111827;
}

.profile-edit#edit .color-red {
  color: #ef4444;
}

.profile-edit#edit .form-control {
  height: 56px;
  border: 1px solid #d8dee6;
  border-radius: 16px;
  background: #fff;
  box-shadow: none;
  padding: 0 18px;
  font-size: 15px;
  color: #111827;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.profile-edit#edit textarea.form-control {
  min-height: 170px;
  height: auto;
  padding: 16px 18px;
  resize: vertical;
}

.profile-edit#edit .form-control:focus {
  border-color: #0b6b5c;
  box-shadow: 0 0 0 4px rgba(11, 107, 92, 0.10);
}

.profile-edit#edit .form-control[readonly] {
  background: #f8fafc;
  color: #6b7280;
  cursor: not-allowed;
}

.profile-edit#edit .margin-bottom-20,
.profile-edit#edit .margin-bottom-30 {
  margin-bottom: 24px !important;
}

.profile-edit#edit .row {
  margin-left: -12px;
  margin-right: -12px;
}

.profile-edit#edit .row > div[class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
}

/* Select2 */
.profile-edit#edit .select2-container {
  width: 100% !important;
}

.profile-edit#edit .select2-container .select2-selection--single {
  height: 56px;
  border: 1px solid #d8dee6;
  border-radius: 16px;
  background: #fff;
  outline: none;
}

.profile-edit#edit .select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 56px;
  line-height: 56px;
  padding-left: 18px;
  padding-right: 42px;
  font-size: 15px;
  color: #111827;
}

.profile-edit#edit .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 56px;
  right: 14px;
}

.profile-edit#edit .select2-container--default.select2-container--focus .select2-selection--single,
.profile-edit#edit .select2-container--default.select2-container--open .select2-selection--single {
  border-color: #0b6b5c;
  box-shadow: 0 0 0 4px rgba(11, 107, 92, 0.10);
}

/* Upload block */
.profile-edit#edit .input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 1px solid #d8dee6;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.profile-edit#edit .input-group .btn-file {
  height: 56px;
  border: 0;
  border-right: 1px solid #e5e7eb;
  border-radius: 0;
  background: #f8fafc;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  transition: 0.2s ease;
}

.profile-edit#edit .input-group .btn-file:hover {
  background: #f1f5f9;
}

.profile-edit#edit .input-group > .form-control[readonly] {
  border: 0;
  background: #fff;
  height: 56px;
  box-shadow: none;
}

.profile-edit#edit #img-upload {
  width: 100%;
  max-width: 170px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  padding: 10px;
}

/* Bottom action area */
.profile-edit#edit .text-right {
  text-align: right;
}

.profile-edit#edit .btn-theme.btn-sm,
.profile-edit#edit #sb_user_profile_update {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 56px;
  border: 0;
  border-radius: 16px;
  background: #ef5a47;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.profile-edit#edit .btn-theme.btn-sm:hover,
.profile-edit#edit #sb_user_profile_update:hover {
  background: #df4b39;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(239, 90, 71, 0.18);
}

/* Modal change password */
#myModal .modal-content {
  border-radius: 24px;
  border: 0;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

#myModal .modal-header {
  border-bottom: 1px solid #eef2f7;
  padding: 24px 28px 18px;
}

#myModal .modal-title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  color: #111827;
}

#myModal .modal-body {
  padding: 24px 28px 10px;
}

#myModal .modal-footer {
  border-top: 1px solid #eef2f7;
  padding: 18px 28px 28px;
}

#myModal label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

#myModal .form-control {
  height: 54px;
  border: 1px solid #d8dee6;
  border-radius: 14px;
  box-shadow: none;
  padding: 0 16px;
}

#myModal .form-control:focus {
  border-color: #0b6b5c;
  box-shadow: 0 0 0 4px rgba(11, 107, 92, 0.10);
}

/* Mobile */
@media (max-width: 991px) {
  .profile-section {
    padding: 22px;
    border-radius: 20px;
  }

  .profile-edit#edit .heading-md {
    font-size: 28px;
  }

  .profile-edit#edit .help-block.pull-right {
    text-align: left;
    margin-bottom: 20px;
  }

  .profile-edit#edit .input-group {
    display: block;
    border: 0;
    background: transparent;
    overflow: visible;
  }

  .profile-edit#edit .input-group .btn-file {
    width: 100%;
    min-width: 0;
    border: 1px solid #d8dee6;
    border-radius: 16px;
  }

  .profile-edit#edit .input-group > .form-control[readonly] {
    margin-top: 12px;
    border: 1px solid #d8dee6;
    border-radius: 16px;
  }

  .profile-edit#edit #img-upload {
    max-width: 140px;
    margin-top: 16px;
  }

  .profile-edit#edit .text-right {
    text-align: left;
  }

  .profile-edit#edit .btn-theme.btn-sm,
  .profile-edit#edit #sb_user_profile_update {
    width: 100%;
    min-width: 0;
  }
}
/* === Aparto: точечный фикс блока загрузки аватара === */

.profile-edit#edit .row.margin-bottom-20 .form-group {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.profile-edit#edit .row.margin-bottom-20 .col-md-9 {
  width: calc(100% - 210px);
  float: none;
}

.profile-edit#edit .row.margin-bottom-20 .col-md-3 {
  width: 186px;
  float: none;
}

.profile-edit#edit .row.margin-bottom-20 .input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 1px solid #d8dee6;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.profile-edit#edit .row.margin-bottom-20 .input-group-btn {
  display: block;
  flex: 0 0 260px;
}

.profile-edit#edit .row.margin-bottom-20 .btn-file {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  min-width: 260px;
  height: 56px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid #d8dee6;
  border-radius: 0;
  background: #f8fafc;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}

.profile-edit#edit .row.margin-bottom-20 .btn-file input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.profile-edit#edit .row.margin-bottom-20 .input-group > .form-control[readonly] {
  flex: 1 1 auto;
  min-width: 0;
  height: 56px;
  border: 0;
  background: #fff;
  box-shadow: none;
  padding: 0 16px;
}

.profile-edit#edit .row.margin-bottom-20 #img-upload {
  display: block;
  width: 170px;
  height: 170px;
  max-width: none;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  padding: 8px;
  margin-left: auto;
}

@media (max-width: 991px) {
  .profile-edit#edit .row.margin-bottom-20 .form-group {
    display: block;
  }

  .profile-edit#edit .row.margin-bottom-20 .col-md-9,
  .profile-edit#edit .row.margin-bottom-20 .col-md-3 {
    width: 100%;
  }

  .profile-edit#edit .row.margin-bottom-20 .input-group {
    display: block;
    border: 0;
    background: transparent;
    overflow: visible;
  }

  .profile-edit#edit .row.margin-bottom-20 .input-group-btn,
  .profile-edit#edit .row.margin-bottom-20 .btn-file {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .profile-edit#edit .row.margin-bottom-20 .btn-file {
    border: 1px solid #d8dee6;
    border-radius: 16px;
    margin-bottom: 12px;
  }

  .profile-edit#edit .row.margin-bottom-20 .input-group > .form-control[readonly] {
    border: 1px solid #d8dee6;
    border-radius: 16px;
  }

  .profile-edit#edit .row.margin-bottom-20 #img-upload {
    margin: 16px 0 0;
  }
}
/* ========================================
   Aparto — аккуратный верхний блок профиля
======================================== */

.search-result-item {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e9e4db;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: none;
  margin-bottom: 24px;
}

.search-result-item .image-link {
  width: 230px;
  min-width: 230px;
  background: #f6f8f8;
  border-right: 1px solid #ece7df;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  position: relative;
}

.search-result-item .image-link .image,
.search-result-item .image-link #user_dp {
  width: 126px;
  height: 126px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid #e3e7ea;
  background: #fff;
  padding: 10px;
  display: block;
}

.search-result-item .social-f,
.search-result-item .image-link:before,
.search-result-item .image-link:after {
  display: none !important;
}

.search-result-item .search-result-item-body {
  flex: 1;
  padding: 34px 36px 28px;
}

.search-result-item .search-result-item-body > .row {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin: 0;
}

.search-result-item .search-result-item-body .col-md-5,
.search-result-item .search-result-item-body .col-md-7 {
  float: none;
  padding: 0;
}

.search-result-item .search-result-item-body .col-md-5 {
  width: calc(100% - 420px);
  padding-right: 28px;
}

.search-result-item .search-result-item-body .col-md-7 {
  width: 420px;
}

.search-result-item-heading,
.search-result-item .sb_put_user_name {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
}

.search-result-item p.info {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.5;
  color: #6b7280;
}

.search-result-item p.info .profile_tabs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0b6b5c;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease;
}

.search-result-item p.info .profile_tabs:hover {
  color: #084c41;
}

.search-result-item p.description {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.5;
  color: #6b7280;
}

.search-result-item .label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin: 0 8px 10px 0;
  border: 0;
  box-shadow: none;
}

.search-result-item .label-warning {
  background: #f4a100;
  color: #fff;
}

.search-result-item .label-success,
.search-result-item .sb_user_type:empty {
  display: none !important;
}

.search-result-item .rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-top: 2px;
  color: #f4a100;
  font-size: 18px;
  line-height: 1;
}

.search-result-item .rating-count {
  margin-left: 8px;
  font-size: 14px;
  color: #6b7280;
}

.search-result-item .ad-history {
  display: flex;
  gap: 16px;
  margin: 0;
}

.search-result-item .ad-history > div[class*="col-"] {
  width: calc(33.333% - 11px);
  padding: 0;
}

.search-result-item .user-stats {
  min-height: 144px;
  border-radius: 26px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: none;
  overflow: hidden;
}

.search-result-item .ad-history .col-md-4:nth-child(1) .user-stats {
  background: #344f6d;
}

.search-result-item .ad-history .col-md-4:nth-child(2) .user-stats {
  background: #3896d6;
}

.search-result-item .ad-history .col-md-4:nth-child(3) .user-stats {
  background: #24c3a6;
}

.search-result-item .user-stats h2 {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

.search-result-item .user-stats small {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  color: rgba(255,255,255,0.96);
  text-transform: uppercase;
  word-break: break-word;
}

.dashboard-menu-container.profile-dropdown {
  margin-top: 18px;
  background: #fff;
  border: 1px solid #e9e4db;
  border-radius: 24px;
  overflow: hidden;
}

.dashboard-menu-container.profile-dropdown > ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dashboard-menu-container.profile-dropdown > ul > li {
  margin: 0;
  border-right: 1px solid #eceff3;
}

.dashboard-menu-container.profile-dropdown > ul > li:last-child {
  border-right: 0;
}

.dashboard-menu-container.profile-dropdown .dropdown-toggle,
.dashboard-menu-container.profile-dropdown .menu-name {
  display: inline-flex;
  align-items: center;
  height: 60px;
  padding: 0 26px;
  background: transparent;
  border: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.dashboard-menu-container.profile-dropdown .dropdown-toggle:hover,
.dashboard-menu-container.profile-dropdown .menu-name:hover {
  background: #f8fafc;
  color: #0b6b5c;
}

.dashboard-menu-container.profile-dropdown .dropdown-menu {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  padding: 8px 0;
  min-width: 230px;
}

.dashboard-menu-container.profile-dropdown .dropdown-menu .sub-list-item {
  display: block;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  background: transparent;
}

.dashboard-menu-container.profile-dropdown .dropdown-menu .sub-list-item:hover {
  background: #f8fafc;
  color: #0b6b5c;
}

/* Mobile */
@media (max-width: 1199px) {
  .search-result-item .search-result-item-body .col-md-5 {
    width: calc(100% - 360px);
  }

  .search-result-item .search-result-item-body .col-md-7 {
    width: 360px;
  }

  .search-result-item .user-stats {
    min-height: 132px;
    padding: 22px 16px;
  }

  .search-result-item .user-stats h2 {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .search-result-item {
    display: block;
  }

  .search-result-item .image-link {
    width: 100%;
    min-width: 0;
    border-right: 0;
    border-bottom: 1px solid #ece7df;
    padding: 28px 20px;
  }

  .search-result-item .search-result-item-body {
    padding: 24px 20px;
  }

  .search-result-item .search-result-item-body > .row {
    display: block;
  }

  .search-result-item .search-result-item-body .col-md-5,
  .search-result-item .search-result-item-body .col-md-7 {
    width: 100%;
    padding-right: 0;
  }

  .search-result-item-heading,
  .search-result-item .sb_put_user_name {
    font-size: 28px;
  }

  .search-result-item .ad-history {
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
  }

  .search-result-item .ad-history > div[class*="col-"] {
    width: 100%;
  }

  .dashboard-menu-container.profile-dropdown > ul {
    display: block;
  }

  .dashboard-menu-container.profile-dropdown > ul > li {
    border-right: 0;
    border-bottom: 1px solid #eceff3;
  }

  .dashboard-menu-container.profile-dropdown > ul > li:last-child {
    border-bottom: 0;
  }

  .dashboard-menu-container.profile-dropdown .dropdown-toggle,
  .dashboard-menu-container.profile-dropdown .menu-name {
    width: 100%;
  }
}
.search-result-item .user-stats small {
  white-space: normal;
}
.search-result-item .ad-history {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.search-result-item .ad-history > div[class*="col-"] {
  display: flex;
}

.search-result-item .user-stats {
  width: 100%;
  height: 180px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search-result-item .user-stats small {
  min-height: 60px;
  display: flex;
  align-items: center;
}
/* === Aparto: финальный фикс карточек статистики === */

.search-result-item .search-result-item-body .col-md-7 {
  width: 420px;
  max-width: 420px;
  flex: 0 0 420px;
}

.search-result-item .ad-history {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin: 0;
  width: 100%;
}

.search-result-item .ad-history > div,
.search-result-item .ad-history > div[class*="col-"] {
  float: none !important;
  width: calc((100% - 32px) / 3) !important;
  max-width: calc((100% - 32px) / 3) !important;
  min-width: calc((100% - 32px) / 3) !important;
  flex: 0 0 calc((100% - 32px) / 3) !important;
  padding: 0 !important;
  margin: 0 !important;
}

.search-result-item .user-stats {
  width: 100%;
  min-height: 144px;
  height: 144px;
  border-radius: 26px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.search-result-item .user-stats h2 {
  margin: 0 0 10px;
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  text-align: center;
}

.search-result-item .user-stats small {
  display: block;
  margin: 0;
  min-height: auto;
  max-width: 100%;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  color: rgba(255,255,255,0.96);
  text-transform: uppercase;
  text-align: center;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.search-result-item .ad-history .col-md-4:nth-child(1) .user-stats {
  background: #344f6d;
}

.search-result-item .ad-history .col-md-4:nth-child(2) .user-stats {
  background: #3896d6;
}

.search-result-item .ad-history .col-md-4:nth-child(3) .user-stats {
  background: #24c3a6;
}

@media (max-width: 991px) {
  .search-result-item .search-result-item-body .col-md-7 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .search-result-item .ad-history {
    flex-direction: column;
    gap: 12px;
  }

  .search-result-item .ad-history > div,
  .search-result-item .ad-history > div[class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .search-result-item .user-stats {
    height: 132px;
    min-height: 132px;
  }
}
/* =========================================
   APARTO — MENU DASHBOARD PROFILE
========================================= */

.dashboard-menu-container.profile-dropdown{
  position:relative;
  z-index:50;
  background:#fff;
  border:1px solid #e9e4db;
  border-radius:24px;
  overflow:visible;
}

/* MENU GRID */

.dashboard-menu-container.profile-dropdown ul{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  margin:0;
  padding:0;
  list-style:none;
}

/* MENU ITEMS */

.dashboard-menu-container.profile-dropdown ul > li {
  position: relative;
  border-right: 1px solid #eceff3;
  width: 100%;
}
.dashboard-menu-container.profile-dropdown ul > li:last-child{
  border-right:none;
}

/* LINKS */

.dashboard-menu-container.profile-dropdown ul > li a{
  text-decoration:none;
}

/* BUTTONS */

.dashboard-menu-container.profile-dropdown .menu-name,
.dashboard-menu-container.profile-dropdown .dropdown-toggle{

  display:flex;
  align-items:center;
  justify-content:center;

  height:72px;
  width:100%;

  padding:0 24px;

  font-size:16px;
  font-weight:700;

  color:#111827;
  background:transparent;
  border:none;

  transition:all .2s ease;

  white-space:nowrap;
}

/* HOVER */

.dashboard-menu-container.profile-dropdown .menu-name:hover,
.dashboard-menu-container.profile-dropdown .dropdown-toggle:hover{
  background:#f7fafc;
  color:#0b6b5c;
}

/* ACTIVE */

.dashboard-menu-container.profile-dropdown .ads-list-wrap.open .dropdown-toggle{
  background:#f7fafc;
  color:#0b6b5c;
}

/* CARET */

.dashboard-menu-container.profile-dropdown .caret{
  margin-left:6px;
}

/* =========================================
   DROPDOWN
========================================= */

.dashboard-menu-container.profile-dropdown .dropdown-menu{

  display:none;

  position:absolute;

  top:100%;
  left:0;

  min-width:320px;

  margin-top:8px;

  background:#fff;

  border:1px solid #e5e7eb;
  border-radius:16px;

  box-shadow:0 20px 40px rgba(0,0,0,0.12);

  padding:8px 0;

  z-index:999;
}

/* SHOW */

.dashboard-menu-container.profile-dropdown .ads-list-wrap.open .dropdown-menu{
  display:block;
}

/* ITEMS */

.dashboard-menu-container.profile-dropdown .dropdown-menu li{
  border:none;
}

.dashboard-menu-container.profile-dropdown .dropdown-menu li a{
  display:block;
}

.dashboard-menu-container.profile-dropdown .dropdown-menu .sub-list-item{

  display:block;

  padding:14px 20px;

  font-size:15px;
  font-weight:600;

  color:#374151;

  transition:all .2s ease;
}

/* ITEM HOVER */

.dashboard-menu-container.profile-dropdown .dropdown-menu .sub-list-item:hover{
  background:#f7fafc;
  color:#0b6b5c;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

  .dashboard-menu-container.profile-dropdown ul{
    grid-template-columns:1fr;
  }

  .dashboard-menu-container.profile-dropdown ul > li{
    border-right:none;
    border-bottom:1px solid #eceff3;
  }

  .dashboard-menu-container.profile-dropdown ul > li:last-child{
    border-bottom:none;
  }

  .dashboard-menu-container.profile-dropdown .menu-name,
  .dashboard-menu-container.profile-dropdown .dropdown-toggle{
    justify-content:flex-start;
    padding-left:20px;
  }

  .dashboard-menu-container.profile-dropdown .dropdown-menu{
    position:static;
    margin-top:0;
    border-radius:0;
    box-shadow:none;
    border:none;
  }

}
/* ========================================
   APARTO — THANK YOU / REGISTRATION SUCCESS
======================================== */

.aparto-registration-success {
  padding: 90px 20px 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aparto-registration-success .success-card {
  width: 100%;
  max-width: 700px;
  background: #ffffff;
  border: 1px solid #ebe6dd;
  border-radius: 28px;
  padding: 56px 48px 48px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(16, 24, 40, 0.08);
}

.aparto-registration-success .success-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 26px;
  border-radius: 999px;
  background: #0b6b5c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
}

.aparto-registration-success h1 {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
}

.aparto-registration-success p {
  margin: 0 auto 34px;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.75;
  color: #6b7280;
}

.aparto-registration-success .success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.aparto-registration-success .success-btn,
.aparto-registration-success .success-btn:link,
.aparto-registration-success .success-btn:visited {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 16px;
  border: 2px solid transparent;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: none !important;
  outline: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.aparto-registration-success .success-btn:hover,
.aparto-registration-success .success-btn:focus {
  text-decoration: none !important;
  transform: translateY(-1px);
}

.aparto-registration-success .success-btn--solid,
.aparto-registration-success .success-btn--solid:link,
.aparto-registration-success .success-btn--solid:visited {
  background: #0b6b5c;
  border-color: #0b6b5c;
  color: #ffffff !important;
}

.aparto-registration-success .success-btn--solid:hover,
.aparto-registration-success .success-btn--solid:focus {
  background: #09584b;
  border-color: #09584b;
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(11, 107, 92, 0.18) !important;
}

.aparto-registration-success .success-btn--outline,
.aparto-registration-success .success-btn--outline:link,
.aparto-registration-success .success-btn--outline:visited {
  background: #ffffff;
  border-color: #0b6b5c;
  color: #0b6b5c !important;
}

.aparto-registration-success .success-btn--outline:hover,
.aparto-registration-success .success-btn--outline:focus {
  background: #f4fbf9;
  border-color: #0b6b5c;
  color: #0b6b5c !important;
  box-shadow: 0 14px 28px rgba(11, 107, 92, 0.10) !important;
}

.aparto-registration-success .success-btn--accent,
.aparto-registration-success .success-btn--accent:link,
.aparto-registration-success .success-btn--accent:visited {
  background: #d9c79a;
  border-color: #d9c79a;
  color: #0b6b5c !important;
}

.aparto-registration-success .success-btn--accent:hover,
.aparto-registration-success .success-btn--accent:focus {
  background: #ccb98a;
  border-color: #ccb98a;
  color: #0b6b5c !important;
  box-shadow: 0 14px 28px rgba(217, 199, 154, 0.22) !important;
}

@media (max-width: 767px) {
  .aparto-registration-success {
    padding: 56px 16px 72px;
  }

  .aparto-registration-success .success-card {
    padding: 38px 22px 28px;
    border-radius: 22px;
  }

  .aparto-registration-success .success-icon {
    width: 70px;
    height: 70px;
    font-size: 36px;
    margin-bottom: 22px;
  }

  .aparto-registration-success h1 {
    font-size: 30px;
  }

  .aparto-registration-success p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 26px;
  }

  .aparto-registration-success .success-actions {
    flex-direction: column;
    gap: 12px;
  }

  .aparto-registration-success .success-btn,
  .aparto-registration-success .success-btn:link,
  .aparto-registration-success .success-btn:visited {
    width: 100%;
    min-width: 0;
  }
}
.page-id-19 .blog-post {
  background: #2a8e73 none repeat scroll 0 0;
  border: none;
  color: #162532;
  margin-bottom: 30px;
  overflow: hidden;
}
.drop-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 20px 15px;
}
.notification-history .message-center .mail-contnet .mail-desc {
  font-size: 18px;
  color: #ffffff;
}
.notification-history .message-center .mail-contnet h5 {
  color: #ffffff;
  font-size: 18px;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .search-result-item-body {
    margin-left: 0;
  }
}
.message-history {
  color: #000;
}
.message-details{
  color: #000;
}
/* ========================================
   APARTO — блок сообщений / предложений
======================================== */

.message-body {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}

.message-body > .col-md-4,
.message-body > .col-md-8 {
  float: none;
  padding: 0;
}

.message-body > .col-md-4 {
  width: 360px;
  max-width: 360px;
  flex: 0 0 360px;
}

.message-body > .col-md-8 {
  width: calc(100% - 384px);
  max-width: calc(100% - 384px);
  flex: 0 0 calc(100% - 384px);
}

/* Левая колонка */
.message-inbox {
  background: #ffffff;
  border: none;
  border-radius: 0;
  overflow: hidden;
}
.message-header {
  border-bottom: 1px solid #eceff3;
}

.message-header h4 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
}

.message-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message-tabs span {
  display: block;
  margin: 0;
  padding: 0;
}

.message-tabs span a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  color: #374151;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.message-tabs span a:hover {
  border-color: #0b6b5c;
  background: #f4fbf9;
  color: #0b6b5c;
}

.message-tabs span a.active {
  border-color: #0b6b5c;
  background: #0b6b5c;
  color: #ffffff;
}

.message-tabs span a small {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  color: inherit;
}

/* Если в левой колонке будет список */
.message-inbox .messages,
.message-inbox ul.messages {
  list-style: none;
  margin: 0;
  padding: 0;
}

.message-inbox .messages li,
.message-inbox ul.messages li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #f1f5f9;
}

.message-inbox .messages li:last-child,
.message-inbox ul.messages li:last-child {
  border-bottom: 0;
}

.message-inbox .messages li a,
.message-inbox ul.messages li a {
  display: block;
  padding: 16px 20px;
  text-decoration: none;
  color: #111827;
  transition: background 0.2s ease;
}

.message-inbox .messages li a:hover,
.message-inbox ul.messages li a:hover {
  background: #f8fafc;
}

/* Правая колонка */
.message-content {
  background: #ffffff;
  border-radius: 24px;
  min-height: 420px;
  overflow: hidden;
}

.message-content .sb_ad_title,
.message-content h2 {
  margin: 0;
  padding: 28px 30px 20px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  border-bottom: 1px solid #eceff3;
}

.message-content .message-details {
  padding: 26px 30px 30px;
}

.message-content .list-wraps {
  background: #f8fafc;
  border: 1px solid #e9eef5;
  border-radius: 18px;
  min-height: 240px;
  padding: 20px;
  overflow: auto;
}

.message-content .messages,
.message-content ul.messages {
  list-style: none;
  margin: 0;
  padding: 0;
}

.message-content .messages li,
.message-content ul.messages li {
  margin: 0 0 12px;
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
}

.message-content .messages li:last-child,
.message-content ul.messages li:last-child {
  margin-bottom: 0;
}

.message-content .text-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
  text-align: center;
}

/* Убираем старые perfect-scrollbar артефакты */
.message-content .ps-scrollbar-x-rail,
.message-content .ps-scrollbar-y-rail {
  display: none !important;
}

/* Ссылки и мелочи */
.message-body a {
  outline: none;
}

.message-body a:focus {
  outline: none;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 991px) {
  .message-body {
    display: block;
  }

  .message-body > .col-md-4,
  .message-body > .col-md-8 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .message-body > .col-md-4 {
    margin-bottom: 18px;
  }

  .message-header,
  .message-content .sb_ad_title,
  .message-content h2,
  .message-content .message-details {
    padding-left: 20px;
    padding-right: 20px;
  }

  .message-header h4,
  .message-content .sb_ad_title,
  .message-content h2 {
    font-size: 24px;
  }

  .message-content {
    min-height: 320px;
  }
}
.message-header h4{
  display: none;
}
.message-header{
  border: none;
}
.message-header .message-tabs span a small {
  padding: 0 10px;
  border-right: none;
}
.message-header .message-tabs {
  display: inline-block;
  float: right;
  padding: 30px 0px;
}
.message-header .message-tabs span {
  vertical-align: middle;
  margin-bottom: 20px;
}
.app-download-button.hover, .app-download-button:hover, .app-download-button.focus, .app-download-button:focus, .app-download-button:active, .app-download-button.active, .ms-layer.btn3, .minimal-footer-1 .widget .social-links a:hover, .subscribe button, .social-area-share > a:hover, .search-section .search-options > li .btn.btn-danger:hover, .featured-slider-1 .owl-controls .owl-nav .owl-next, .featured-slider-1 .owl-controls .owl-nav .owl-prev, .featured-slider .owl-controls .owl-nav .owl-next, .featured-slider .owl-controls .owl-nav .owl-prev, .featured-slider-3 .owl-controls .owl-nav .owl-next, .featured-slider-3 .owl-controls .owl-nav .owl-prev, .small-breadcrumb .breadcrumb-link ul li a::after, .user-profile .badge, .ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y, .sticky-post-button, .select2-container--default .select2-results__option--highlighted[aria-selected], .mega-menu .menu-links > li.activeTriggerMobile, .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .featured-slider-5 .owl-controls .owl-nav .owl-next, .featured-slider-5 .owl-controls .owl-nav .owl-prev, .featured-slider-3.owl-carousel .owl-nav button.owl-next, .featured-slider-3.owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot, .owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover, .owl-carousel button.owl-dot:hover {
  background-color: transparent !important;
}
.message-history li {
  border-bottom: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-align: center;
}
.message-history-active {
  background-color: #ffffff;
}
.message-body .message-content .block-users {
  padding: 10px 20px;
  border-radius: 4px;
  color: #FFF;
  text-transform: uppercase;
  font-size: 12px;
  vertical-align: middle;
  margin-bottom: 20px;
  display: flex;
  width: fit-content;
  margin-top: 20px;
  float: none;
}
/* ========================================
   APARTO — HERO SEARCH (clean wide version)
======================================== */

.hero-search {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
}

.hero-search__form {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

.hero-search__row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.hero-search__field {
  position: relative;
  background: #ffffff;
  border: 1px solid #e8e2d8;
  border-radius: 20px;
  padding: 12px 14px 10px;
  min-height: 88px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}

.hero-search__field:hover {
  border-color: #d9d1c3;
}

.hero-search__field:focus-within {
  border-color: #0b6b5c;
  box-shadow: 0 0 0 4px rgba(11, 107, 92, 0.08);
}

.hero-search__label {
  display: block;
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  color: #0b6b5c;
  text-align: center;
}

/* original select hidden by select2 */
.hero-search__control {
  width: 100%;
}

/* select2 container */
.hero-search .select2-container {
  width: 100% !important;
}

/* selection */
.hero-search .select2-container .select2-selection--single {
  height: 34px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  position: relative;
}

/* text */
.hero-search .select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 34px;
  line-height: 34px;
  padding-left: 0;
  padding-right: 28px;
  font-size: 15px;
  font-weight: 500;
  color: #111827;
}

.hero-search .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #98a1ad;
  font-weight: 500;
}

/* hide default arrow */
.hero-search .select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 22px;
  height: 34px;
  right: 0;
  top: 0;
}

.hero-search .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

/* FA arrow */
.hero-search .select2-container--default .select2-selection--single .select2-selection__arrow::before {
  content: "\f107";
  font-family: "FontAwesome";
  font-size: 16px;
  color: #6b7280;
  display: block;
  line-height: 34px;
  text-align: center;
}

.hero-search .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow::before {
  content: "\f106";
}

/* submit */
.hero-search__submit {
  width: 100%;
  min-height: 60px;
  border: 0;
  border-radius: 18px;
  background: #dcc998;
  color: #0b6b5c;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(220, 201, 152, 0.18);
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}

.hero-search__submit:hover {
  background: #d2be8b;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(220, 201, 152, 0.24);
}

.hero-search__submit:focus {
  outline: none;
}

/* dropdown */
.select2-dropdown {
  border: 1px solid #e5e7eb !important;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.select2-search--dropdown {
  padding: 10px;
  background: #fff;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  height: 42px;
  border: 1px solid #d9dee5 !important;
  border-radius: 12px !important;
  padding: 0 12px;
  font-size: 14px;
}

.select2-results__option {
  padding: 11px 14px;
  font-size: 15px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #0b6b5c !important;
  color: #fff !important;
}

/* responsive */
@media (max-width: 1199px) {
  .hero-search {
    max-width: 100%;
  }

  .hero-search__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .hero-search {
    padding: 0 10px;
  }

  .hero-search__form {
    padding: 14px;
    border-radius: 18px;
  }

  .hero-search__row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 12px;
  }

  .hero-search__field {
    min-height: 82px;
    border-radius: 16px;
  }

  .hero-search__submit {
    min-height: 56px;
    font-size: 18px;
    border-radius: 16px;
  }
}
/* ========================================
   APARTO CATALOG — CLEAN MODERN STYLE
======================================== */

.aparto-catalog-hero {
  padding: 30px 0 10px;
}

/* ===== FILTER ===== */

.aparto-catalog-filter {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  margin-bottom: 25px;
}

.aparto-catalog-filter__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.aparto-catalog-filter__field {
  display: flex;
  flex-direction: column;
}

.aparto-catalog-filter__field--wide {
  grid-column: span 4;
}

.aparto-catalog-filter__field label {
  font-size: 13px;
  font-weight: 700;
  color: #0b6b5c;
  margin-bottom: 6px;
}

/* INPUTS */

.aparto-catalog-filter__field input, .aparto-catalog-filter__field select {
  height: 44px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 0 12px;
  font-size: 14px;
  transition: all .2s ease;
  color: #000;
}

.aparto-catalog-filter__field input:focus,
.aparto-catalog-filter__field select:focus {
  border-color: #0b6b5c;
  box-shadow: 0 0 0 3px rgba(11,107,92,0.08);
  outline: none;
}

/* BUTTONS */

.aparto-catalog-filter__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.aparto-catalog-filter__submit {
  background: #dcc998;
  color: #0b6b5c;
  border: none;
  height: 48px;
  padding: 0 26px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}

.aparto-catalog-filter__submit:hover {
  background: #d2be8b;
}

.aparto-catalog-filter__reset {
  color: #0b6b5c;
  font-weight: 600;
}

/* ===== RESULTS ===== */

.aparto-catalog-results__top {
  margin-bottom: 20px;
}

.aparto-catalog-results__count {
  font-size: 15px;
  color: #fff;
}

/* ===== GRID ===== */

.aparto-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ===== CARD ===== */

.aparto-catalog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.aparto-catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* IMAGE */

.aparto-catalog-card__media {
  position: relative;
}

.aparto-catalog-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* BADGE */

.aparto-catalog-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0b6b5c;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 10px;
}

/* FAVORITE BUTTON */


.estate-card__icon-btn--fav:hover {
  background: rgba(17,24,39,0.9);
}

/* BODY */

.aparto-catalog-card__body {
  padding: 16px;
}

.aparto-catalog-card__meta-top {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 6px;
}

.aparto-catalog-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.aparto-catalog-card__title a {
  color: #111827;
  text-decoration: none;
}

.aparto-catalog-card__price {
  font-size: 18px;
  font-weight: 800;
  color: #0b6b5c;
  margin-bottom: 10px;
}

.aparto-catalog-card__meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #6b7280;
}

/* ===== PAGINATION ===== */

.aparto-catalog-pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.aparto-catalog-pagination li a {
  padding: 8px 14px;
  border-radius: 10px;
  background: #f3f4f6;
  color: #111827;
}

.aparto-catalog-pagination .current {
  background: #0b6b5c;
  color: #fff;
}

/* ===== EMPTY ===== */

.aparto-catalog-empty {
  text-align: center;
  padding: 60px 0;
}

.aparto-catalog-empty h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
  .aparto-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aparto-catalog-filter__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aparto-catalog-filter__field--wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .aparto-catalog-grid {
    grid-template-columns: 1fr;
  }

  .aparto-catalog-filter__grid {
    grid-template-columns: 1fr;
  }

  .aparto-catalog-filter__field--wide {
    grid-column: span 1;
  }
}
.aparto-catalog-results{
  padding-bottom: 50px;
}
/* ========================================
   APARTO — ABOUT PAGE
======================================== */

.aparto-about-page {
  background: #f7f5f1;
}

/* HERO */
.aparto-about-hero {
  padding: 48px 0 28px;
}

.aparto-about-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.aparto-about-hero__content,
.aparto-about-hero__card {
  background: #ffffff;
  border: 1px solid #ece6dc;
  border-radius: 28px;
  box-shadow: 0 14px 40px rgba(16, 24, 40, 0.06);
}

.aparto-about-hero__content {
  padding: 42px 42px 38px;
}

.aparto-about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f4efe4;
  color: #0b6b5c;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.aparto-about-hero__title {
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.05;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
}

.aparto-about-hero__text {
  margin: 0;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.8;
  color: #5f6673;
}

.aparto-about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.aparto-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.aparto-about-btn:hover {
  transform: translateY(-1px);
}

.aparto-about-btn--primary {
  background: #dcc998;
  color: #0b6b5c;
  box-shadow: 0 12px 24px rgba(220, 201, 152, 0.2);
}

.aparto-about-btn--primary:hover {
  background: #d1bc86;
  color: #0b6b5c;
}

.aparto-about-btn--secondary {
  background: #ffffff;
  color: #111827;
  border: 1px solid #e5ddd1;
}

.aparto-about-btn--secondary:hover {
  background: #faf8f4;
  color: #111827;
}

.aparto-about-hero__card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.aparto-about-hero__stat {
  border: 1px solid #ece7de;
  border-radius: 20px;
  background: #fbfaf7;
  padding: 20px 20px 18px;
}

.aparto-about-hero__stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
}

.aparto-about-hero__stat span {
  display: block;
  font-size: 15px;
  line-height: 1.65;
  color: #626b78;
}

/* SECTION BASE */
.aparto-about-mission,
.aparto-about-values,
.aparto-about-cta {
  padding: 18px 0 28px;
}

.aparto-about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.aparto-about-block {
  background: #ffffff;
  border: 1px solid #ece6dc;
  border-radius: 28px;
  padding: 34px 34px 30px;
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.05);
}

.aparto-about-block__label,
.aparto-about-section-head__label,
.aparto-about-cta__label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f4efe4;
  color: #0b6b5c;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.aparto-about-block h2,
.aparto-about-section-head h2,
.aparto-about-cta__content h2 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
}

.aparto-about-block p,
.aparto-about-cta__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #616977;
}

.aparto-about-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.aparto-about-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #616977;
}

.aparto-about-list li:last-child {
  margin-bottom: 0;
}

.aparto-about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0b6b5c;
}

/* VALUES */
.aparto-about-section-head {
  margin-bottom: 20px;
}

.aparto-about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.aparto-about-card {
  background: #ffffff;
  border: 1px solid #ece6dc;
  border-radius: 26px;
  padding: 28px 28px 24px;
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.05);
  transition: transform .18s ease, box-shadow .18s ease;
}

.aparto-about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.08);
}

.aparto-about-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #dcc998;
  color: #0b6b5c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}

.aparto-about-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
}

.aparto-about-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #616977;
}

/* CTA */
.aparto-about-cta__inner {
  background: linear-gradient(135deg, #ffffff 0%, #fbfaf7 100%);
  border: 1px solid #ece6dc;
  border-radius: 30px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.05);
}

.aparto-about-cta__content {
  max-width: 760px;
}

.aparto-about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .aparto-about-hero__inner {
    grid-template-columns: 1fr;
  }

  .aparto-about-grid {
    grid-template-columns: 1fr;
  }

  .aparto-about-cards {
    grid-template-columns: 1fr 1fr;
  }

  .aparto-about-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .aparto-about-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .aparto-about-hero {
    padding-top: 28px;
  }

  .aparto-about-hero__content,
  .aparto-about-hero__card,
  .aparto-about-block,
  .aparto-about-card,
  .aparto-about-cta__inner {
    border-radius: 22px;
  }

  .aparto-about-hero__content,
  .aparto-about-block,
  .aparto-about-card,
  .aparto-about-cta__inner {
    padding: 24px 20px;
  }

  .aparto-about-hero__title {
    font-size: 34px;
  }

  .aparto-about-block h2,
  .aparto-about-section-head h2,
  .aparto-about-cta__content h2 {
    font-size: 28px;
  }

  .aparto-about-cards {
    grid-template-columns: 1fr;
  }

  .aparto-about-hero__actions,
  .aparto-about-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .aparto-about-btn {
    width: 100%;
  }
}
.page-id-923 h2{
  color: #fff;
}
.aparto-buyers-page {
  position: relative;
  background: #f6f8fb;
  color: #1e2430;
}

.aparto-buyers-page * {
  box-sizing: border-box;
}

.aparto-buyers-page .container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.aparto-buyers-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  background: #034d42;
  color: #fff;
}

.aparto-buyers-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
  linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .35;
  pointer-events: none;
}

.aparto-buyers-hero__wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}

.aparto-buyers-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.aparto-buyers-hero h1 {
  margin: 0 0 18px;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
}

.aparto-buyers-hero p {
  margin: 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.86);
}

.aparto-buyers-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.aparto-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  transition: all .25s ease;
}

.aparto-btn--primary {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.aparto-btn--primary:hover {
  transform: translateY(-2px);
  color: #0f172a;
}

.aparto-btn--secondary {
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
  color: #fff;
  backdrop-filter: blur(10px);
}

.aparto-btn--secondary:hover {
  transform: translateY(-2px);
  color: #fff;
  background: rgba(255,255,255,0.12);
}

.aparto-buyers-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.aparto-stat-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}

.aparto-stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.aparto-stat-card span {
  display: block;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}

.aparto-buyers-hero__panel {
  position: relative;
}

.aparto-info-card {
  padding: 32px;
  border-radius: 24px;
}

.aparto-info-card--glass {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
  backdrop-filter: blur(18px);
}

.aparto-info-card h3 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
  color: #fff;
}

.aparto-info-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.aparto-info-card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}

.aparto-info-card ul li:last-child {
  margin-bottom: 0;
}

.aparto-info-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7dd3fc;
  box-shadow: 0 0 0 6px rgba(125, 211, 252, 0.14);
}

.aparto-buyers-section {
  padding: 90px 0;
}

.aparto-buyers-section--light {
  background: #ffffff;
}

.aparto-buyers-section--accent {
  background: #034f44;
}

.aparto-section-head {
  max-width: 800px;
  margin: 0 auto 45px;
  text-align: center;
}

.aparto-section-head__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #034f43;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.aparto-section-head__eyebrow--light {
  color: #e2cfa2;
}

.aparto-section-head h2 {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
}

.aparto-section-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: #677285;
}

.aparto-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aparto-step-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid #e7edf5;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.aparto-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.10);
}

.aparto-step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #035145 0%, #034d42 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(43, 89, 255, 0.22);
}

.aparto-step-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  color: #111827;
}

.aparto-step-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #5f6b7a;
}

.aparto-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aparto-benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e8eef6;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.aparto-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.10);
}

.aparto-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #034f44;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.aparto-benefit-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.35;
  color: #111827;
  font-weight: 700;
}

.aparto-benefit-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #5f6b7a;
}

.aparto-safety-box {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
  padding: 40px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.aparto-safety-box__left h2 {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.18;
  font-weight: 800;
  color: #fff;
}

.aparto-safety-box__left p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

.aparto-check-list {
  display: grid;
  gap: 14px;
}

.aparto-check-list__item {
  position: relative;
  padding: 16px 18px 16px 54px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}

.aparto-check-list__item::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgb(226 207 162);
  color: #034f44;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aparto-faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.aparto-faq-item {
  padding: 28px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid #e7edf5;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.aparto-faq-item h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.4;
  color: #111827;
  font-weight: 700;
}

.aparto-faq-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #5f6b7a;
}

.aparto-buyers-cta {
  padding: 90px 0 90px;
  background: #f6f8fb;
}

.aparto-buyers-cta__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  padding: 38px 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #edf4ff 100%);
  border: 1px solid #dfe8f5;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}

.aparto-buyers-cta__content h2 {
  margin: 0 0 12px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
}

.aparto-buyers-cta__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #5f6b7a;
}

.aparto-buyers-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.aparto-buyers-cta .aparto-btn--primary {
  background: #0b5c4f;
  color: #fff;
}

.aparto-buyers-cta .aparto-btn--primary:hover {
  color: #fff;
}

.aparto-buyers-cta .aparto-btn--secondary {
  background: transparent;
  color: #111827;
  border: 1px solid #d6deea;
  backdrop-filter: none;
}

.aparto-buyers-cta .aparto-btn--secondary:hover {
  color: #111827;
  background: #f8fbff;
}

@media (max-width: 1199px) {
  .aparto-buyers-hero__wrap,
  .aparto-safety-box {
    grid-template-columns: 1fr;
  }

  .aparto-steps-grid,
  .aparto-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aparto-buyers-hero__stats {
    grid-template-columns: 1fr;
  }

  .aparto-buyers-cta__box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .aparto-buyers-hero {
    padding: 70px 0 55px;
  }

  .aparto-buyers-section,
  .aparto-buyers-cta {
    padding: 70px 0;
  }

  .aparto-buyers-cta {
    padding-top: 0;
  }

  .aparto-buyers-hero h1,
  .aparto-section-head h2,
  .aparto-safety-box__left h2,
  .aparto-buyers-cta__content h2 {
    font-size: 30px;
  }

  .aparto-buyers-hero p,
  .aparto-section-head p,
  .aparto-safety-box__left p,
  .aparto-buyers-cta__content p {
    font-size: 15px;
  }

  .aparto-steps-grid,
  .aparto-benefits-grid,
  .aparto-faq {
    grid-template-columns: 1fr;
  }

  .aparto-buyers-hero__actions,
  .aparto-buyers-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .aparto-btn {
    width: 100%;
  }

  .aparto-step-card,
  .aparto-benefit-card,
  .aparto-faq-item,
  .aparto-info-card,
  .aparto-safety-box,
  .aparto-buyers-cta__box {
    padding: 22px;
  }
}

.aparto-mortgage-page {
  background: #f4f6f5;
  color: #18322d;
}

.aparto-mortgage-page * {
  box-sizing: border-box;
}

.aparto-mortgage-page .container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.aparto-mortgage-hero {
  position: relative;
  padding: 70px 0 60px;
  background:
  linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.04)),
  linear-gradient(135deg, #00594f 0%, #01695c 100%);
  overflow: hidden;
}

.aparto-mortgage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
  linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .35;
  pointer-events: none;
}

.aparto-mortgage-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.aparto-page-badge {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.aparto-mortgage-hero h1 {
  margin: 0 0 18px;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
}

.aparto-mortgage-hero p {
  margin: 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
}

.aparto-mortgage-section {
  position: relative;
  margin-top: 80px;
  padding: 0px 0 80px;
  z-index: 3;
}

.aparto-mortgage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 26px;
  align-items: start;
}

.aparto-mortgage-card {
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #dce7e1;
  box-shadow: 0 18px 50px rgba(0, 48, 40, 0.08);
}

.aparto-mortgage-card--form,
.aparto-mortgage-card--result {
  padding: 34px;
}

.aparto-block-head {
  margin-bottom: 28px;
}

.aparto-block-head__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #0c8a75;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.aparto-block-head h2 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  color: #17342d;
}

.aparto-block-head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #5d746d;
}

.aparto-mortgage-form {
  display: grid;
  gap: 22px;
}

.aparto-form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #17342d;
}

.aparto-form-group label small {
  font-weight: 500;
  color: #6c837d;
}

.aparto-input-wrap {
  position: relative;
}

.aparto-input-wrap input[type="number"] {
  width: 100%;
  height: 60px;
  padding: 0 95px 0 18px;
  border-radius: 16px;
  border: 1px solid #d7e3dd;
  background: #f8fbfa;
  color: #17342d;
  font-size: 17px;
  font-weight: 700;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.aparto-input-wrap input[type="number"]:focus {
  border-color: #0b8b75;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(11, 139, 117, 0.10);
}

.aparto-input-suffix {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 800;
  color: #6c837d;
  pointer-events: none;
  text-transform: uppercase;
}

.aparto-form-group--range {
  padding: 22px;
  border-radius: 20px;
  background: #f8fbfa;
  border: 1px solid #dfe8e3;
}

.aparto-range-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.aparto-range-head label {
  margin-bottom: 0;
}

.aparto-range-value {
  min-width: 80px;
  text-align: right;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  color: #00594f;
}

.aparto-form-group--range input[type="range"] {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0b8b75 0%, #2fc2a8 100%);
  outline: none;
}

.aparto-form-group--range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #0b8b75;
  box-shadow: 0 4px 14px rgba(0, 89, 79, 0.20);
  cursor: pointer;
}

.aparto-form-group--range input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #0b8b75;
  box-shadow: 0 4px 14px rgba(0, 89, 79, 0.20);
  cursor: pointer;
}

.aparto-range-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 13px;
  color: #6c837d;
  font-weight: 700;
}

.aparto-mortgage-note {
  padding: 18px 20px;
  border-radius: 16px;
  background: #f3f7f5;
  border: 1px solid #dee7e2;
  color: #60756f;
  font-size: 14px;
  line-height: 1.7;
}

.aparto-result-list {
  display: grid;
  gap: 14px;
}

.aparto-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f8fbfa;
  border: 1px solid #dfe8e3;
}

.aparto-result-item span {
  font-size: 15px;
  line-height: 1.5;
  color: #5f756e;
}

.aparto-result-item strong {
  text-align: right;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  color: #17342d;
}

.aparto-result-item--highlight {
  padding: 22px 22px;
  background: linear-gradient(135deg, #00594f 0%, #017466 100%);
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(0, 89, 79, 0.18);
}

.aparto-result-item--highlight span {
  color: rgba(255,255,255,0.82);
}

.aparto-result-item--highlight strong {
  font-size: 24px;
  color: #ffffff;
}

.aparto-result-footer {
  margin-top: 22px;
}

.aparto-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 800;
  transition: all .2s ease;
}

.aparto-btn--primary {
  background: #e8c99b;
  color: #17342d;
  border: 1px solid #e8c99b;
  box-shadow: 0 10px 24px rgba(232, 201, 155, 0.18);
}

.aparto-btn--primary:hover {
  background: #dfbc88;
  color: #17342d;
  transform: translateY(-2px);
}

.aparto-mortgage-info {
  padding: 0 0 90px;
}

.aparto-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aparto-info-box {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #dce7e1;
  box-shadow: 0 14px 34px rgba(0, 48, 40, 0.06);
}

.aparto-info-box h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  color: #17342d;
}

.aparto-info-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #5d746d;
}

@media (max-width: 1199px) {
  .aparto-mortgage-layout {
    grid-template-columns: 1fr;
  }

  .aparto-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .aparto-mortgage-hero {
    padding: 52px 0 44px;
  }

  .aparto-mortgage-hero h1 {
    font-size: 36px;
  }

  .aparto-mortgage-hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .aparto-mortgage-card--form,
  .aparto-mortgage-card--result,
  .aparto-info-box {
    padding: 22px;
  }

  .aparto-block-head h2 {
    font-size: 28px;
  }

  .aparto-result-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .aparto-result-item strong {
    text-align: left;
  }

  .aparto-btn {
    width: 100%;
  }
}
.aparto-check-page {
  background: #f4f6f5;
  color: #18322d;
}

.aparto-check-page * {
  box-sizing: border-box;
}

.aparto-check-page .container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.aparto-check-hero {
  position: relative;
  padding: 72px 0 60px;
  background:
  linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.04)),
  linear-gradient(135deg, #00594f 0%, #01695c 100%);
  overflow: hidden;
}

.aparto-check-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
  linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .35;
  pointer-events: none;
}

.aparto-check-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 30px;
  align-items: center;
}

.aparto-page-badge {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.aparto-check-hero h1 {
  margin: 0 0 18px;
  font-size: 54px;
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
}

.aparto-check-hero p {
  margin: 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
}

.aparto-check-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.aparto-check-hero__card {
  display: flex;
  justify-content: flex-end;
}

.aparto-check-summary {
  width: 100%;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 45px rgba(0, 48, 40, 0.18);
  backdrop-filter: blur(10px);
}

.aparto-check-summary h3 {
  margin: 0 0 18px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}

.aparto-check-summary ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.aparto-check-summary ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}

.aparto-check-summary ul li:last-child {
  margin-bottom: 0;
}

.aparto-check-summary ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7ed8c7;
  box-shadow: 0 0 0 6px rgba(126, 216, 199, 0.14);
}

.aparto-check-section {
  padding: 88px 0;
}

.aparto-check-section--light {
  background: #ffffff;
}

.aparto-section-head {
  max-width: 800px;
  margin: 0 auto 42px;
  text-align: center;
}

.aparto-section-head--left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.aparto-section-head__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #0c8a75;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.aparto-section-head__eyebrow--light {
  color: #8ee0d1;
}

.aparto-section-head h2 {
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #17342d;
}

.aparto-section-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #5d746d;
}

.aparto-check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aparto-check-card {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #dce7e1;
  box-shadow: 0 14px 34px rgba(0, 48, 40, 0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.aparto-check-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 48, 40, 0.10);
}

.aparto-check-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #edf7f4;
  color: #00594f;
  font-size: 18px;
  font-weight: 800;
}

.aparto-check-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  color: #17342d;
}

.aparto-check-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #5d746d;
}

.aparto-check-steps {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.aparto-check-step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 22px;
  background: #f8fbfa;
  border: 1px solid #dfe8e3;
}

.aparto-check-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00594f 0%, #017466 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 89, 79, 0.16);
}

.aparto-check-step__body h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  color: #17342d;
}

.aparto-check-step__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #5d746d;
}

.aparto-check-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: 30px;
  background: linear-gradient(135deg, #00594f 0%, #01695c 100%);
  box-shadow: 0 18px 45px rgba(0, 48, 40, 0.14);
}

.aparto-check-highlight__content h2 {
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 1.18;
  font-weight: 800;
  color: #ffffff;
}

.aparto-check-highlight__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
}

.aparto-check-risk-list {
  display: grid;
  gap: 14px;
}

.aparto-check-risk-item {
  position: relative;
  padding: 16px 18px 16px 52px;
  border-radius: 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 15px;
  line-height: 1.65;
}

.aparto-check-risk-item::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #8ee0d1;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aparto-check-faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.aparto-check-faq__item {
  padding: 28px;
  border-radius: 24px;
  background: #f8fbfa;
  border: 1px solid #dfe8e3;
}

.aparto-check-faq__item h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  color: #17342d;
}

.aparto-check-faq__item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #5d746d;
}

.aparto-check-cta {
  padding: 90px 0 90px;
}

.aparto-check-cta__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #dce7e1;
  box-shadow: 0 18px 50px rgba(0, 48, 40, 0.08);
}

.aparto-check-cta__content h2 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  color: #17342d;
}

.aparto-check-cta__content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #5d746d;
}

.aparto-check-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.aparto-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 800;
  transition: all .2s ease;
}

.aparto-btn--primary {
  background: #e8c99b;
  color: #17342d;
  border: 1px solid #e8c99b;
  box-shadow: 0 10px 24px rgba(232, 201, 155, 0.18);
}

.aparto-btn--primary:hover {
  background: #dfbc88;
  color: #17342d;
  transform: translateY(-2px);
}

.aparto-btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
}

.aparto-check-cta .aparto-btn--secondary {
  color: #17342d;
  border: 1px solid #d7e3dd;
  background: #ffffff;
}

.aparto-check-cta .aparto-btn--secondary:hover {
  background: #f8fbfa;
  color: #17342d;
  transform: translateY(-2px);
}

@media (max-width: 1199px) {
  .aparto-check-hero__grid,
  .aparto-check-highlight,
  .aparto-check-cta__box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .aparto-check-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aparto-check-faq {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .aparto-check-hero {
    padding: 54px 0 46px;
  }

  .aparto-check-hero h1 {
    font-size: 36px;
  }

  .aparto-check-hero p,
  .aparto-section-head p,
  .aparto-check-highlight__content p,
  .aparto-check-cta__content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .aparto-section-head h2,
  .aparto-check-highlight__content h2,
  .aparto-check-cta__content h2 {
    font-size: 30px;
  }

  .aparto-check-grid {
    grid-template-columns: 1fr;
  }

  .aparto-check-step {
    grid-template-columns: 1fr;
  }

  .aparto-check-summary,
  .aparto-check-card,
  .aparto-check-faq__item,
  .aparto-check-highlight,
  .aparto-check-cta__box {
    padding: 22px;
  }

  .aparto-check-hero__actions,
  .aparto-check-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .aparto-btn {
    width: 100%;
  }
}
.aparto-safe-page {
  background: #f4f6f5;
  color: #18322d;
}

.aparto-safe-grid .aparto-check-card,
.aparto-safe-tips .aparto-check-faq__item {
  min-height: 100%;
}

@media (max-width: 767px) {
  .aparto-safe-page .aparto-check-hero h1 {
    font-size: 36px;
  }
}
.aparto-faq-page {
  background: #f4f6f5;
  color: #18322d;
}

.aparto-faq-group + .aparto-faq-group {
  margin-top: 50px;
}

.aparto-faq-group__head {
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #dce7e1;
}

.aparto-faq-group__head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
  color: #17342d;
}

.aparto-faq-list .aparto-check-faq__item {
  min-height: 100%;
}

@media (max-width: 767px) {
  .aparto-faq-group + .aparto-faq-group {
    margin-top: 36px;
  }

  .aparto-faq-group__head h2 {
    font-size: 24px;
  }
  .aparto-faq-page .aparto-check-hero h1 {
    font-size: 36px;
  }
}
.aparto-terms-page {
  background: #f4f6f5;
  color: #18322d;
}
.aparto-terms-content {
  max-width: 900px;
  margin: 0 auto;
}
.aparto-terms-block + .aparto-terms-block {
  margin-top: 40px;
}
.aparto-terms-block h2 {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 800;
  color: #17342d;
}
.aparto-terms-block p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.75;
  color: #5d746d;
}
.aparto-terms-block ul {
  margin: 10px 0 14px 18px;
  padding: 0;
}
.aparto-terms-block ul li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.7;
  color: #5d746d;
}
.aparto-privacy-page {
  background: #f4f6f5;
  color: #18322d;
}
.aparto-privacy-content {
  max-width: 900px;
  margin: 0 auto;
}
.aparto-privacy-block + .aparto-privacy-block {
  margin-top: 40px;
}
.aparto-privacy-block h2 {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 800;
  color: #17342d;
}
.aparto-privacy-block p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.75;
  color: #5d746d;
}
.aparto-privacy-block ul {
  margin: 10px 0 14px 18px;
}
.aparto-privacy-block ul li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.7;
  color: #5d746d;
}
/* ===== APARTO HEADER MOBILE ===== */
@media (max-width: 991px) {
  .aparto-header {
    overflow: visible;
  }

  .aparto-header .container {
    width: 100%;
  }

  .aparto-header__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    height: auto;
    min-height: auto;
    padding: 14px 0 16px;
  }

  .aparto-header__left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
  }

  .aparto-header__logo,
  .aparto-header__logo a {
    display: inline-flex;
    align-items: center;
  }

  .aparto-header__logo img,
  .aparto-header__logo .custom-logo,
  .aparto-header__logo .site-logo img {
    width: auto;
    max-width: 150px;
    height: auto;
    max-height: 40px;
    object-fit: contain;
  }

  .aparto-header__right {
    flex: 0 0 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .aparto-header__controls {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .aparto-header__icon-btn {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 16px;
  }

  .aparto-header__post-btn {
    order: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 14px;
    margin: 0;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .aparto-header__post-btn span {
    display: inline-block;
  }

  .aparto-header__center {
    order: 4;
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    margin-top: 2px;
  }

  .aparto-header__nav,
  .aparto-header__nav.aparto-header__nav--custom {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 12px;
    width: 100%;
    overflow: visible;
    white-space: normal;
  }

  .aparto-header__nav a,
  .aparto-header__nav.aparto-header__nav--custom a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    border-radius: 10px;
    text-decoration: none;
  }

  .aparto-header__account.dropdown {
    position: relative;
  }

  .aparto-header__dropdown,
  .aparto-header .dropdown-menu {
    left: auto;
    right: 0;
    min-width: 200px;
  }
}

@media (max-width: 640px) {
  .aparto-header__row {
    gap: 12px;
    padding: 12px 0 14px;
  }

  .aparto-header__logo img,
  .aparto-header__logo .custom-logo,
  .aparto-header__logo .site-logo img {
    max-width: 138px;
    max-height: 36px;
  }

  .aparto-header__controls {
    gap: 6px;
  }

  .aparto-header__icon-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 15px;
  }

  .aparto-header__post-btn {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 14px;
  }

  .aparto-header__nav,
  .aparto-header__nav.aparto-header__nav--custom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }

  .aparto-header__nav a,
  .aparto-header__nav.aparto-header__nav--custom a {
    min-height: 34px;
    padding: 7px 8px;
    font-size: 13px;
  }
}
/* ===== APARTO MOBILE BURGER HEADER ===== */

.aparto-mobile-menu-toggle {
  display: none;
}

.aparto-header__burger,
.aparto-mobile-menu,
.aparto-mobile-menu__overlay {
  display: none;
}

@media (max-width: 991px) {
  .aparto-header {
    position: relative;
    z-index: 1000;
  }

  .aparto-header .container {
    position: relative;
  }

  .aparto-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 72px;
    height: auto;
    padding: 14px 0;
  }

  .aparto-header__left {
    flex: 1 1 auto;
    min-width: 0;
  }

  .aparto-header__logo,
  .aparto-header__logo-link {
    display: inline-flex;
    align-items: center;
  }

  .aparto-header__logo img,
  .aparto-header__logo .custom-logo,
  .aparto-header__logo .custom-logo-link img,
  .aparto-header__logo-link img {
    width: auto;
    height: auto;
    max-width: 150px;
    max-height: 42px;
    object-fit: contain;
  }

  .aparto-header__center--desktop,
  .aparto-header__nav--desktop,
  .aparto-header__post-btn--desktop,
  .aparto-header__auth-btn--desktop,
  .aparto-header__account--desktop {
    display: none !important;
  }

  .aparto-header__right {
    flex: 0 0 auto;
  }

  .aparto-header__controls {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .aparto-header__icon-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    font-size: 16px;
  }

  .aparto-header__burger {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
    cursor: pointer;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .aparto-header__burger span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #ffffff;
    transition: 0.25s ease;
  }

  .aparto-mobile-menu__overlay {
    position: fixed;
    inset: 0;
    background: rgba(9, 20, 18, 0.48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s ease;
    z-index: 1100;
  }

  .aparto-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    display: block;
    background: #0b5f50;
    color: #ffffff;
    padding: 18px 18px 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.28s ease;
    z-index: 1200;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.18);
  }

  .aparto-mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .aparto-mobile-menu__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
  }

  .aparto-mobile-menu__close {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    cursor: pointer;
    border-radius: 10px;
    font-size: 28px;
    line-height: 1;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .aparto-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }

  .aparto-mobile-menu__nav a {
    display: block;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .aparto-mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .aparto-mobile-menu__post-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    color: #0b5f50;
    background: #e4d0a2;
  }

  .aparto-mobile-menu__link,
  .aparto-mobile-menu__actions .adforest-vendor-dashboard-link a {
    display: block;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .aparto-mobile-menu__link--logout {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
  }

  .aparto-mobile-menu__actions .adforest-vendor-dashboard-link {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .aparto-mobile-menu-toggle:checked ~ .aparto-mobile-menu {
    transform: translateX(0);
  }

  .aparto-mobile-menu-toggle:checked ~ .aparto-mobile-menu__overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .aparto-mobile-menu-toggle:checked ~ .aparto-header__row .aparto-header__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .aparto-mobile-menu-toggle:checked ~ .aparto-header__row .aparto-header__burger span:nth-child(2) {
    opacity: 0;
  }

  .aparto-mobile-menu-toggle:checked ~ .aparto-header__row .aparto-header__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .aparto-header__row {
    min-height: 66px;
    padding: 12px 0;
  }

  .aparto-header__logo img,
  .aparto-header__logo .custom-logo,
  .aparto-header__logo .custom-logo-link img,
  .aparto-header__logo-link img {
    max-width: 132px;
    max-height: 36px;
  }

  .aparto-header__controls {
    gap: 6px;
  }

  .aparto-header__icon-btn {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 15px;
  }

  .aparto-header__burger {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .aparto-mobile-menu {
    width: min(340px, 90vw);
    padding: 16px 14px 20px;
  }

  .aparto-mobile-menu__nav a,
  .aparto-mobile-menu__link,
  .aparto-mobile-menu__actions .adforest-vendor-dashboard-link a {
    padding: 12px 13px;
    font-size: 14px;
  }

  .aparto-mobile-menu__post-btn {
    min-height: 44px;
    font-size: 14px;
  }
}
.aparto-cleaning-page {
  background: #f2f4f3;
  padding: 28px 0 80px;
}

.aparto-cleaning-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.aparto-cleaning-section {
  margin-bottom: 34px;
}

.aparto-cleaning-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-sizing: border-box;
}

.aparto-cleaning-hero {
  min-height: 470px;
  background: #e8eeee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 56px 60px;
}

.aparto-cleaning-hero__content {
  max-width: 520px;
}

.aparto-cleaning-hero__title {
  margin: 0 0 24px;
  font-size: 64px;
  line-height: 1.08;
  font-weight: 700;
  color: #101010;
}

.aparto-cleaning-hero__text {
  margin: 0;
  max-width: 380px;
  font-size: 20px;
  line-height: 1.55;
  color: #5a5f5d;
}

.aparto-cleaning-hero__image-wrap {
  flex: 0 0 420px;
  text-align: right;
}

.aparto-cleaning-hero__image {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.aparto-cleaning-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.aparto-cleaning-heading {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: #101010;
}

.aparto-cleaning-link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #2f3433;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.2s ease;
}

.aparto-cleaning-link-chip:hover {
  color: #0f8a70;
  text-decoration: none;
}

.aparto-cleaning-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.aparto-cleaning-company {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 92px;
  padding: 18px 22px;
  border-radius: 16px;
  background: #ffffff;
  box-sizing: border-box;
}

.aparto-cleaning-company__left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.aparto-cleaning-company__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 44px;
  border-radius: 10px;
}

.aparto-cleaning-company__meta {
  min-width: 0;
}

.aparto-cleaning-company__name {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  color: #222;
}

.aparto-cleaning-company__price {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #4a4f4d;
}

.aparto-cleaning-company__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f8a70;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.aparto-cleaning-company__link:hover {
  color: #0b745e;
  text-decoration: none;
}

.aparto-cleaning-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.aparto-cleaning-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bfc8c5;
  display: block;
}

.aparto-cleaning-dots span.is-active {
  background: #0f8a70;
}

.aparto-cleaning-partner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 320px;
  padding: 42px 36px 42px 36px;
}

.aparto-cleaning-partner__content {
  max-width: 610px;
}

.aparto-cleaning-partner__title {
  margin: 0 0 18px;
  font-size: 50px;
  line-height: 1.12;
  font-weight: 700;
  color: #101010;
}

.aparto-cleaning-partner__text {
  margin: 0 0 24px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
  color: #5b615f;
}

.aparto-cleaning-form {
  max-width: 640px;
}

.aparto-cleaning-form__row {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}

.aparto-cleaning-input {
  flex: 1 1 auto;
  height: 56px;
  border: 1px solid #e2e7e5;
  background: #f7f8f8;
  border-radius: 12px;
  padding: 0 18px;
  font-size: 16px;
  color: #222;
  outline: none;
  box-sizing: border-box;
}

.aparto-cleaning-input:focus {
  border-color: #0f8a70;
  background: #ffffff;
}

.aparto-cleaning-button {
  height: 56px;
  min-width: 250px;
  border: none;
  border-radius: 12px;
  background: #0f8a70;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.aparto-cleaning-button:hover {
  background: #0b745e;
}

.aparto-cleaning-form__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #a0a6a4;
}

.aparto-cleaning-partner__image-wrap {
  flex: 0 0 360px;
  text-align: right;
}

.aparto-cleaning-partner__image {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.aparto-cleaning-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 360px;
  padding: 44px 36px;
}

.aparto-cleaning-bottom__content {
  max-width: 560px;
}

.aparto-cleaning-bottom__title {
  margin: 0 0 18px;
  font-size: 50px;
  line-height: 1.15;
  font-weight: 700;
  color: #101010;
}

.aparto-cleaning-bottom__text {
  margin: 0 0 20px;
  max-width: 470px;
  font-size: 18px;
  line-height: 1.6;
  color: #5b615f;
}

.aparto-cleaning-bottom__phone {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  color: #101010;
  text-decoration: none;
}

.aparto-cleaning-bottom__phone:hover {
  color: #101010;
  text-decoration: none;
}

.aparto-cleaning-bottom__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #a0a6a4;
}

.aparto-cleaning-bottom__image-wrap {
  flex: 0 0 400px;
  text-align: right;
}

.aparto-cleaning-bottom__image {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

@media (max-width: 1199px) {
  .aparto-cleaning-hero__title,
  .aparto-cleaning-partner__title,
  .aparto-cleaning-bottom__title {
    font-size: 44px;
  }

  .aparto-cleaning-bottom__phone {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .aparto-cleaning-hero,
  .aparto-cleaning-partner,
  .aparto-cleaning-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .aparto-cleaning-hero__image-wrap,
  .aparto-cleaning-partner__image-wrap,
  .aparto-cleaning-bottom__image-wrap {
    flex: 0 0 auto;
    width: 100%;
    text-align: center;
  }

  .aparto-cleaning-grid {
    grid-template-columns: 1fr;
  }

  .aparto-cleaning-company {
    flex-direction: column;
    align-items: flex-start;
  }

  .aparto-cleaning-form__row {
    flex-direction: column;
  }

  .aparto-cleaning-button {
    width: 100%;
    min-width: 0;
  }

  .aparto-cleaning-spacer {
    height: 120px;
  }
}

@media (max-width: 767px) {
  .aparto-cleaning-page {
    padding: 20px 0 56px;
  }

  .aparto-cleaning-container {
    padding: 0 14px;
  }

  .aparto-cleaning-hero,
  .aparto-cleaning-partner,
  .aparto-cleaning-bottom {
    padding: 28px 22px;
  }

  .aparto-cleaning-hero__title,
  .aparto-cleaning-partner__title,
  .aparto-cleaning-bottom__title {
    font-size: 34px;
  }

  .aparto-cleaning-heading {
    font-size: 26px;
  }

  .aparto-cleaning-heading-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .aparto-cleaning-bottom__phone {
    font-size: 32px;
  }

  .aparto-cleaning-spacer {
    height: 60px;
  }
}
.aparto-moving-page {
  background: #f2f4f3;
  padding: 28px 0 80px;
}

.aparto-moving-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.aparto-moving-section {
  margin-bottom: 34px;
}

.aparto-moving-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-sizing: border-box;
}

.aparto-moving-hero {
  min-height: 470px;
  background: #e8eeee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 56px 60px;
}

.aparto-moving-hero__content {
  max-width: 520px;
}

.aparto-moving-hero__title {
  margin: 0 0 24px;
  font-size: 64px;
  line-height: 1.08;
  font-weight: 700;
  color: #101010;
}

.aparto-moving-hero__text {
  margin: 0;
  max-width: 420px;
  font-size: 20px;
  line-height: 1.55;
  color: #5a5f5d;
}

.aparto-moving-hero__image-wrap {
  flex: 0 0 420px;
  text-align: right;
}

.aparto-moving-hero__image {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.aparto-moving-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.aparto-moving-heading {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: #101010;
}

.aparto-moving-link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #2f3433;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.2s ease;
}

.aparto-moving-link-chip:hover {
  color: #0f8a70;
  text-decoration: none;
}

.aparto-moving-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.aparto-moving-company {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 92px;
  padding: 18px 22px;
  border-radius: 16px;
  background: #ffffff;
  box-sizing: border-box;
}

.aparto-moving-company__left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.aparto-moving-company__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 44px;
  border-radius: 10px;
}

.aparto-moving-company__meta {
  min-width: 0;
}

.aparto-moving-company__name {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  color: #222;
}

.aparto-moving-company__price {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #4a4f4d;
}

.aparto-moving-company__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f8a70;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.aparto-moving-company__link:hover {
  color: #0b745e;
  text-decoration: none;
}

.aparto-moving-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.aparto-moving-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bfc8c5;
  display: block;
}

.aparto-moving-dots span.is-active {
  background: #0f8a70;
}

.aparto-moving-partner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 320px;
  padding: 42px 36px;
}

.aparto-moving-partner__content {
  max-width: 610px;
}

.aparto-moving-partner__title {
  margin: 0 0 18px;
  font-size: 50px;
  line-height: 1.12;
  font-weight: 700;
  color: #101010;
}

.aparto-moving-partner__text {
  margin: 0 0 24px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
  color: #5b615f;
}

.aparto-moving-form {
  max-width: 640px;
}

.aparto-moving-form__row {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}

.aparto-moving-input {
  flex: 1 1 auto;
  height: 56px;
  border: 1px solid #e2e7e5;
  background: #f7f8f8;
  border-radius: 12px;
  padding: 0 18px;
  font-size: 16px;
  color: #222;
  outline: none;
  box-sizing: border-box;
}

.aparto-moving-input:focus {
  border-color: #0f8a70;
  background: #ffffff;
}

.aparto-moving-button {
  height: 56px;
  min-width: 250px;
  border: none;
  border-radius: 12px;
  background: #0f8a70;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.aparto-moving-button:hover {
  background: #0b745e;
}

.aparto-moving-form__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #a0a6a4;
}

.aparto-moving-partner__image-wrap {
  flex: 0 0 360px;
  text-align: right;
}

.aparto-moving-partner__image {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.aparto-moving-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 360px;
  padding: 44px 36px;
}

.aparto-moving-bottom__content {
  max-width: 560px;
}

.aparto-moving-bottom__title {
  margin: 0 0 18px;
  font-size: 50px;
  line-height: 1.15;
  font-weight: 700;
  color: #101010;
}

.aparto-moving-bottom__text {
  margin: 0 0 20px;
  max-width: 470px;
  font-size: 18px;
  line-height: 1.6;
  color: #5b615f;
}

.aparto-moving-bottom__phone {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  color: #101010;
  text-decoration: none;
}

.aparto-moving-bottom__phone:hover {
  color: #101010;
  text-decoration: none;
}

.aparto-moving-bottom__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #a0a6a4;
}

.aparto-moving-bottom__image-wrap {
  flex: 0 0 400px;
  text-align: right;
}

.aparto-moving-bottom__image {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

@media (max-width: 1199px) {
  .aparto-moving-hero__title,
  .aparto-moving-partner__title,
  .aparto-moving-bottom__title {
    font-size: 44px;
  }

  .aparto-moving-bottom__phone {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .aparto-moving-hero,
  .aparto-moving-partner,
  .aparto-moving-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .aparto-moving-hero__image-wrap,
  .aparto-moving-partner__image-wrap,
  .aparto-moving-bottom__image-wrap {
    flex: 0 0 auto;
    width: 100%;
    text-align: center;
  }

  .aparto-moving-grid {
    grid-template-columns: 1fr;
  }

  .aparto-moving-company {
    flex-direction: column;
    align-items: flex-start;
  }

  .aparto-moving-form__row {
    flex-direction: column;
  }

  .aparto-moving-button {
    width: 100%;
    min-width: 0;
  }

  .aparto-moving-spacer {
    height: 120px;
  }
}

@media (max-width: 767px) {
  .aparto-moving-page {
    padding: 20px 0 56px;
  }

  .aparto-moving-container {
    padding: 0 14px;
  }

  .aparto-moving-hero,
  .aparto-moving-partner,
  .aparto-moving-bottom {
    padding: 28px 22px;
  }

  .aparto-moving-hero__title,
  .aparto-moving-partner__title,
  .aparto-moving-bottom__title {
    font-size: 34px;
  }

  .aparto-moving-heading {
    font-size: 26px;
  }

  .aparto-moving-heading-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .aparto-moving-bottom__phone {
    font-size: 32px;
  }

  .aparto-moving-spacer {
    height: 60px;
  }
}
.aparto-developers-block {
  margin: 0 0 32px;
}

.aparto-developers-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.aparto-developers-block__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

.aparto-developers-block__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 12px;
  background: #f3f3f3;
  color: #111111;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: .2s ease;
}

.aparto-developers-block__all:hover {
  text-decoration: none;
  color: #111111;
  background: #ebebeb;
}

.aparto-developers-block__card {
  background: #fafafa;
  border-radius: 22px;
  padding: 18px;
}

.aparto-developers-block__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.aparto-developers-block__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.aparto-developers-item {
  min-height: 78px;
  border-radius: 18px;
  background: #ffffff;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-decoration: none;
  transition: .2s ease;
}

.aparto-developers-item:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.aparto-developers-item__left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.aparto-developers-item__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 44px;
  display: block;
}

.aparto-developers-item__name {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  color: #111111;
}

.aparto-developers-item__meta {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  color: #4f4f4f;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 1199px) {
  .aparto-developers-item {
    padding: 16px 18px;
  }

  .aparto-developers-item__name {
    font-size: 16px;
  }

  .aparto-developers-item__meta {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .aparto-developers-block__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .aparto-developers-block__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .aparto-developers-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .aparto-developers-item__meta {
    white-space: normal;
  }
}

.aparto-map-search-block {
  margin: 0 0 32px;
}

.aparto-map-search-block__card {
  position: relative;
  min-height: 325px;
  border-radius: 22px;
  overflow: hidden;
  background-image: url('https://aparto.uz/wp-content/themes/adforest/assets/aparto-map/map-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.aparto-map-search-block__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
}

.aparto-map-search-block__content {
  position: relative;
  z-index: 2;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.aparto-map-search-block__pin {
  width: 86px;
  height: auto;
  display: block;
  margin: 0 0 18px;
}

.aparto-map-search-block__title {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #1f1f1f;
}

.aparto-map-search-block__text {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  color: #5d5d5d;
}

.aparto-map-search-block__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  background: #118a71;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.aparto-map-search-block__button:hover {
  background: #0d745f;
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 767px) {
  .aparto-map-search-block__card {
    min-height: 280px;
  }

  .aparto-map-search-block__content {
    min-height: 280px;
    padding: 32px 16px;
  }

  .aparto-map-search-block__pin {
    width: 68px;
    margin-bottom: 14px;
  }

  .aparto-map-search-block__title {
    font-size: 24px;
  }

  .aparto-map-search-block__text {
    font-size: 15px;
  }

  .aparto-map-search-block__button {
    min-width: 160px;
    height: 48px;
    font-size: 15px;
  }
}
.aparto-apartment-questions {
  margin: 0 0 32px;
}

.aparto-apartment-questions__title {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.aparto-apartment-questions__grid {
  display: grid;
  grid-template-columns: 1.45fr 1.15fr 0.9fr;
  gap: 16px;
}

.aparto-apartment-card {
  min-height: 284px;
  border-radius: 18px;
  background: #eaf0ef;
  padding: 24px 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: 0.2s ease;
}

.aparto-apartment-card:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.aparto-apartment-card__content {
  position: relative;
  z-index: 2;
  max-width: 360px;
}

.aparto-apartment-card__title {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  color: #111111;
}

.aparto-apartment-card__text {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
  color: #4f4f4f;
}

.aparto-apartment-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #dfe5e3;
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
}

.aparto-apartment-card__image-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 14px;
}

.aparto-apartment-card__image {
  max-width: 190px;
  max-height: 165px;
  width: auto;
  height: auto;
  display: block;
}

.aparto-apartment-card--wide .aparto-apartment-card__image {
  max-width: 210px;
  max-height: 175px;
}

@media (max-width: 1199px) {
  .aparto-apartment-questions__grid {
    grid-template-columns: 1fr 1fr;
  }

  .aparto-apartment-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .aparto-apartment-questions__grid {
    grid-template-columns: 1fr;
  }

  .aparto-apartment-card:last-child {
    grid-column: auto;
  }

  .aparto-apartment-card {
    min-height: 240px;
    padding: 20px 20px 14px;
  }

  .aparto-apartment-card__title {
    font-size: 26px;
  }

  .aparto-apartment-card__text {
    font-size: 15px;
  }

  .aparto-apartment-card__image {
    max-width: 160px;
    max-height: 140px;
  }

  .aparto-apartment-card--wide .aparto-apartment-card__image {
    max-width: 175px;
    max-height: 145px;
  }
}
.aparto-newsletter-block {
  margin: 0 0 32px;
}

.aparto-newsletter-block__card {
  min-height: 256px;
  border-radius: 18px;
  background: #e8f0ef;
  padding: 32px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
}

.aparto-newsletter-block__content {
  flex: 1 1 auto;
  max-width: 640px;
}

.aparto-newsletter-block__title {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  color: #111111;
}

.aparto-newsletter-block__text {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
  color: #4f4f4f;
}

.aparto-newsletter-block__form {
  max-width: 650px;
}

.aparto-newsletter-block__form-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.aparto-newsletter-block__input {
  flex: 1 1 auto;
  height: 56px;
  border: none;
  border-radius: 12px;
  background: #ffffff;
  padding: 0 18px;
  font-size: 16px;
  color: #111111;
  outline: none;
  box-sizing: border-box;
}

.aparto-newsletter-block__input::placeholder {
  color: #9aa3a2;
}

.aparto-newsletter-block__button {
  flex: 0 0 auto;
  min-width: 265px;
  height: 56px;
  border: none;
  border-radius: 12px;
  background: #118a71;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.aparto-newsletter-block__button:hover {
  background: #0d745f;
}

.aparto-newsletter-block__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #b3b9b8;
}

.aparto-newsletter-block__image-wrap {
  flex: 0 0 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aparto-newsletter-block__image {
  max-width: 100%;
  max-height: 210px;
  width: auto;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .aparto-newsletter-block__card {
    flex-direction: column;
    align-items: flex-start;
  }

  .aparto-newsletter-block__image-wrap {
    width: 100%;
    flex: 0 0 auto;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .aparto-newsletter-block__card {
    padding: 24px 20px;
    min-height: auto;
  }

  .aparto-newsletter-block__title {
    font-size: 28px;
  }

  .aparto-newsletter-block__text {
    font-size: 15px;
  }

  .aparto-newsletter-block__form-row {
    flex-direction: column;
    align-items: stretch;
  }

  .aparto-newsletter-block__button {
    min-width: 0;
    width: 100%;
  }

  .aparto-newsletter-block__image {
    max-height: 170px;
  }
}
.aparto-map-search-block{
  margin-top: 80px;
}
.aparto-apartment-questions{
  margin-top: 80px;
}
.aparto-newsletter-block{
  margin-top: 80px;
  margin-bottom: 50px;
}
.heading-panel .main-title {
  color: #232323;
  font-size: 24px;
  font-weight: 600;
  line-height: 60px;
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  text-transform: inherit;
}
.aparto-login-content-info {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.aparto-login-content-info .arrowsign {
  display: none !important;
}

.aparto-login-content-info__inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.aparto-login-content-info__image {
  flex: 0 0 290px;
  max-width: 290px;
}

.aparto-login-content-info__image img {
  display: block;
  width: 100%;
  height: auto;
}

.aparto-login-content-info__text {
  flex: 1 1 auto;
  max-width: none;
  font-size: 19px;
  line-height: 1.75;
  color: #222222;
}

@media (max-width: 1199px) {
  .aparto-login-content-info__inner {
    gap: 40px;
  }

  .aparto-login-content-info__image {
    flex: 0 0 300px;
    max-width: 300px;
  }

  .aparto-login-content-info__text {
    font-size: 17px;
    line-height: 1.65;
  }
}

@media (max-width: 991px) {
  .aparto-login-content-info__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .aparto-login-content-info__image {
    flex: 0 0 auto;
    max-width: 280px;
  }

  .aparto-login-content-info__text {
    font-size: 16px;
    line-height: 1.6;
  }
}