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

body {
    font-family: 'Montserrat', sans-serif;
    background: #f8f9fa;
    color: #111111;
}
body {
    margin: 0;
    padding-top: 70px; 
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px; 
}

html, body {
  overflow-x: hidden;
}

.header {
    position: absolute;
    width: 100%;
    padding: 15px 0;
    background: transparent;
    z-index: 10;
}

/* BUTTON */

.btn {
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s ease;
}


.btn-gold:hover {
    background: #B8962E;
}

.hero {
    min-height: 100vh;
    background: url('../images/phuket-villa-hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-start; 
    padding: 80px 0 60px;
}


.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.2)
    );
}


.hero__content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.hero__title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 20px;
}


.gold-outline {
    display: inline-block;
    background: #D4AF37;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 600;
}


.stats {
    padding: 80px 0;
    background: #ffffff;
}

.stats__inner {
    display: flex;
    gap: 30px;
}

.stat {
    flex: 1;
    background: #f5f5f5;
    padding: 35px;
    border-radius: 25px;
}

.stat__number {
    font-size: 40px;
    font-weight: 600;
    color: #00b3ad;
    margin-bottom: 10px;
}

.stat__text {
    font-size: 18px;
    color: #111;
}

.properties {
    padding: 80px 0;
}

.property-info {
  padding: 24px;
  background: #fafafa;
  border-top: 1px solid rgba(198,165,92,0.15);
  margin-bottom: 12px;
  border-radius: 0 0 30px 30px;
}

.property-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #777;
  margin-bottom: 14px;
}

.property-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.badge {
  background: rgba(198,165,92,0.12);
  color: #c6a55c;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.property-price {
  background: linear-gradient(135deg, #c6a55c, #e5c97a);
  color: #111;
  padding: 10px 16px;
  border-radius: 14px;
  font-weight: 600;
  display: inline-block;
  font-size: 14px;
}

.btn-outline {
    border: 2px solid #D4AF37;
    color: #D4AF37;
    margin-left: 15px;
}

.btn-outline:hover {
    background: #D4AF37;
    color: #000;
}

@media (max-width: 768px) {

    .hero {
        height: auto;
        padding: 120px 20px 60px;
        text-align: left;
    }

    .hero__title {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero__subtitle {
        font-size: 20px;
        line-height: 1.4;
    }

    .gold-outline {
        display: inline-block;
        margin-top: 10px;
    }

    .hero__btn {
        margin-top: 30px;
        width: 100%;
        text-align: center;
    }

    .stats__inner {
        flex-direction: column;
        gap: 30px;
    }

    .stat {
        background: #f7f7f7;
        padding: 25px;
        border-radius: 20px;
        color: #111;
    }

    .stat__number {
        font-size: 36px;
    }

}

@media (max-width: 768px) {

    .stats__inner {
        flex-direction: column;
    }

    .stat {
        padding: 25px;
    }

    .hero__title {
        font-size: 32px;
    }

}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}

.hero-stat {
    background: rgba(255,255,255,0.9);
    padding: 25px;
    border-radius: 25px;
    max-width: 260px;
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 600;
    color: #00b3ad;
    margin-bottom: 8px;
}

.hero-stat-text {
    font-size: 15px;
    color: #111;
}

@media (max-width: 768px) {

    .hero {
        padding: 120px 20px 60px;
    }

    .hero__title {
        font-size: 30px;
        line-height: 1.2;
    }

    .hero-stats {
        flex-direction: column;
    }

    .hero-stat {
        width: 100%;
    }

}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #f8f9fa;
    padding: 12px 0;
    z-index: 100;
    border-bottom: 1px solid #eee;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 50px;
}

@media (max-width: 768px) {
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
}
.logo img {
    height: 42px;
    gap: 90px;
}


.logo__text {
    font-size: 20px;
    font-weight: 600;
    color: #111;
}

.btn-gold {
    background: #D4AF37;
    color: #fff;
    padding: 13px 35px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
}

.hero {
    min-height: 85vh;
    background: url('../images/phuket-villa-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    padding: 60px 0;
    margin: 0;
}



.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    justify-content: flex-start; 
}

.hero-stat {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 30px;
    min-width: 240px;
}

.hero-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 10px;
}

.hero-stat-text {
    font-size: 15px;
    color: #333;
}

@media (max-width: 768px) {

    .hero {
      border-radius: 0 0 0px 0px;
        padding-top: 10px;
        border-radius: 25px 25px 0px 0px;
        overflow: hidden;
        min-height: 25vh;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }

    .hero-stat {
        padding: 25px;
        border-radius: 25px;
    }

}
@media (max-width: 768px) {

    .header {
        padding: 8px 0;
    }

    .logo img {
        height: 26px;
    }

    .logo__text {
        font-size: 14px;
    }

    .btn-gold {
        padding: 9px 12px;
        font-size: 13px;
    }

}

.hero-stat {
    background: #fff;
    padding: 18px 22px;
    border-radius: 20px;
    min-width: 140px;
}

.hero-stat-number {
    font-size: 22px;
    font-weight: 700;
    color: #D4AF37;
}

.hero-stat-text {
    font-size: 13px;
}

@media (min-width: 992px) {

    .hero-stat {
        padding: 40px 50px;
        border-radius: 30px;
        min-width: 260px;
    }

    .hero-stat-number {
        font-size: 48px;
    }

    .hero-stat-text {
        font-size: 16px;
    }

}

.hero__title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;

}

@media (max-width: 768px) {
    .hero__title {
        font-size: 32px;
    }
}

.process {
    padding: 120px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-item {
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    padding: 40px;
    border-radius: 35px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
  }
  
  .process-item::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: #D4AF37;
    opacity: 0.05;
    border-radius: 50%;
    top: -40px;
    right: -40px;
  }
  
  .process-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}


.big-banner {
  position: relative;
  min-height: 40vh; 
  background: url('../images/villa-banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  padding: 60px 20px; 
  margin-top: 2px; 
  border-bottom-left-radius: 32px; 
  border-bottom-right-radius: 32px; 
}

.big-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  border-bottom-left-radius: 32px; 
  border-bottom-right-radius: 32px; 
}

.big-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.big-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -2px;
  color: white;
  transform: translateY(0px); 
  margin-left: 0%; 
}


.counter-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}

.counter-big {
  font-size: 80px;
  font-weight: 800;
  color: #D4AF37;
  line-height: 1;
}

.counter-text {
  font-size: 24px;
  font-weight: 500;
  color: #ddd;
  margin-top: 16px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 28px;
}


.social-icons a:hover img {
  transform: scale(1.15);
}

.big-btn {
  background: #D4AF37;
  color: white;
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(212,175,55,0.4);
  transition: all 0.3s;
}

.big-btn:hover {
  background: #b8962e;
  transform: translateY(-4px);
}

.copyright {
  font-size: 16px;
  opacity: 0.75;
  line-height: 1.5;
  margin-top: -1px;
}

@media (max-width: 992px) {
  .big-banner {
    min-height: 60vh; 
    padding: 50px 15px;
    border-bottom-left-radius: 0; 
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 32px; 
    border-bottom-right-radius: 32px;
    margin-top: 0;
  }

  .big-banner-content {
    gap: 20px;
  }

  .big-title {
    font-size: 48px;
  }

  .counter-wrapper {
    flex-direction: column; 
    gap: 4px;
  }

  .counter-big {
    font-size: 68px;
  }

  .counter-text {
    font-size: 20px;
    margin-top: 0;
  }

  .social-icons {
    gap: 20px;
  }

.social-icons a:hover img {
  filter: hue-rotate(45deg) saturate(100%) brightness(1.4); 
}

  .big-btn {
    padding: 16px 36px;
    font-size: 17px;
  }

  .copyright {
    font-size: 12px;
  }
}

.form-section {
    padding: 80px 0;
    background: #f8f8f8;
    text-align: center;
}

@media (max-width: 992px) {
    .selection-form {
        grid-template-columns: 1fr;
    }
}

.date-field {
    position: relative;
    width: 100%;
  }
  
  .date-label {
    width: 100%;
    padding: 18px 24px;
    border-radius: 35px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
  }
  
  .date-field input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.01; /* НЕ 0 */
    cursor: pointer;
  }
  
  .support-menu {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: 0.3s ease;
  }
  
  .support-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
  
  .selection-form input,
  .selection-form select {
    height: 60px;
    padding: 0 20px;
    border-radius: 12px; 
    border: 1px solid #ddd;
    font-size: 16px;
    background: #fff;
    appearance: none;
  }
  
  
  .form-right img {
    width: 798px;
    border-radius: 25px;
    object-fit: cover;
  }
  .support {
    position: fixed;
    bottom: 25px;
    right: 25px;
  }
  
  .support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
  }
  
  
  /* Меню */
  .support-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: 75px;
    right: 0;
    background: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  
  .support-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
  }
  .form-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
  }
  
  .form-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    margin-bottom: 6px;
    font-size: 14px;
    color: #d4af37;
  }
  
  .form-group input,
  .form-group select {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #d4af37;
    background: transparent;
    font-size: 15px;
  }
  
  
  .scroll-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    transition: transform 0.2s ease-out;
    will-change: transform;
  }
  
  .scroll-row img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
  }
  
  .scroll-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    will-change: transform;
  }
  
  .scroll-row img {
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
  }
  #checkinReal,
  #checkoutReal {
      position: absolute;
      opacity: 0;
      pointer-events: none;
  }
  
  .gallery-row {
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  
  
  /* МОБИЛКА */
  @media (max-width: 768px) {
    .gallery-track img {
      width: 200px;
      height: 140px;
    }
  }
  .hidden-date {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  

.selection-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  /* Кнопка отправки */
  .submit-btn {
    height: 60px;
    border-radius: 40px;
    border: none;
    background: #D4AF37;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
  }
  
  .submit-btn:hover {
    background: #b8962e;
  }
  
  .selection-form select {
    height: 60px;
    padding: 0 20px;
    border-radius: 14px;
    border: 1px solid #D4AF37;
    background: transparent !important;
    color: #D4AF37 !important;
    appearance: none;
  }
      
  .process {
    padding: 100px 0;
  }
  
  .process-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 100px;
  }
  
  .process-item.reverse {
    flex-direction: row-reverse;
  }
  
  .process-text {
    width: 45%;
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  }
  
  .process-image {
    width: 50%;
  }
  
  @media (max-width: 992px) {

    .process-item,
    .process-item.reverse {
      flex-direction: column;
    }
  
    .process-text,
    .process-image {
      width: 100%;
    }
  
  }
  .btn-telegram img {
    filter: brightness(0) invert(1);
}


.support-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;

  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: 0.3s ease;
}

.support-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.support-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.support-menu img {
  width: 18px;
}
    
.process {
  padding: 100px 20px;
  background: #f8f8f8;
}

.process-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  background: #fff;
  border-radius: 30px;
  padding: 60px;
  margin-bottom: 60px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.process-text {
  flex: 1;
}

.process-image {
  flex: 1;
}

.carousel-container {
  overflow: hidden;
  background: #fff;
}

.property-card {
  flex: 0 0 calc((100% - 90px) / 3);
}

@media (max-width: 768px) {

  .carousel-track {
    gap: 10;
  }
}
.process {
  padding: 120px 0;
  background: #f6f8f9;
  position: relative;
  overflow: hidden;
}

.process-card:nth-child(even) {
  flex-direction: row-reverse;
}

.process-text {
  width: 413px;
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  position: relative;
  z-index: 3;
}

.process-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.process-image {
  width: 650px;
  position: relative;
  z-index: 1;
}

.process-card:nth-child(odd) .process-text {
  margin-right: -120px;
}

.process-card:nth-child(even) .process-text {
  margin-left: -120px;
}

.process {
  padding: 120px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 300px;
  gap: 0;
  position: relative;
}
.process-item {
  position: relative;
  padding: 50px;
}
.process-item.image {
  padding: 0;
}

.process-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.text-1 { grid-column: 1; grid-row: 1; }
.image-1 { grid-column: 1; grid-row: 2; }


.image-2 { grid-column: 2; grid-row: 1 / span 2; }
.text-2  { grid-column: 2; grid-row: 3; }


.text-3  { grid-column: 1; grid-row: 4; }
.image-3 { grid-column: 2; grid-row: 3 / span 2; }


.image-4 { grid-column: 1; grid-row: 5 / span 2; }
.text-4  { grid-column: 2; grid-row: 5; }


.process-item.image {
  z-index: 1;
}

.process-item.text {
  background: white;
  z-index: 2;
}

.image-1 img { border-radius: 80px 0 80px 0; }
.image-2 img { border-radius: 0 80px 0 80px; }
.image-3 img { border-radius: 80px 0 80px 0; }
.image-4 img { border-radius: 0 80px 0 80px; }


@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .process-item {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

.process {
  padding: 140px 0;
  background: #f7f8f9;
  overflow: hidden;
}

.process-card {
  width: 1200px;
  margin: 0 auto 220px auto;
  display: flex;
  align-items: center;
  position: relative;
}

.process-card:nth-child(even) {
  flex-direction: row-reverse;
}

.process-text {
  width: 420px;
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  position: relative;
  z-index: 5;
}

.process-text h3 {
  font-size: 24px;
  margin-bottom: 18px;
  color: #00b3ad;
}

.process-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.process-image {
  width: 700px;
  position: relative;
  z-index: 1;
}

.process-card:nth-child(odd) .process-text {
  margin-right: -160px;
}

.process-card:nth-child(even) .process-text {
  margin-left: -160px;
}
@media (max-width: 768px) {

  .process-card {
    width: 100%;
    flex-direction: column !important;
    margin-bottom: 60px;
  }

  .process-text {
    width: 100%;
    margin: 0;
    padding: 30px;
  }

  .process-image {
    display: none; 
  }

}
.scroll-gallery {
  overflow: hidden;
  padding: 80px 0;
}

.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.gallery-track img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
}
.scroll-gallery {
  overflow: hidden;
  padding: 60px 0;
}

.gallery-row {
  overflow: hidden;
  margin-bottom: 24px;   
}

.gallery-track {
  display: flex;
  gap: 20px;               
  width: max-content;     
  will-change: transform;
}

.gallery-row {
  overflow: hidden;       
  margin-bottom: 20px;
}

.scroll-gallery {
  overflow: hidden;
}


@media (max-width: 768px) {
  .gallery-track img {
    width: 220px;
    height: 150px;
    gap: 16px;
  }
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #111;
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  font-size: 20px;
  color: #666;
  margin-bottom: 80px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
  padding: 0 0px;
  box-sizing: border-box;
}

.step-card {
  min-width: 0;                    
  width: 100%;                     
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

@media (min-width: 1200px) {
  .steps-grid {
    padding: 0 0px;               
    max-width: 1800px;            
    margin: 0 auto;
  }
}
.step-card:hover {
  transform: translateY(0px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.12);
}

.step-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.step-card:hover .step-image img {
  transform: scale(1.08);
}

.step-content {
  padding: 40px 32px 48px;
  text-align: center;
  position: relative;
}

.step-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 24px 0 16px;
  color: #D4AF37;
}

.step-content p {
  font-size: 16px;
  line-height: 1.65;
  color: #555;
}

@media (max-width: 1200px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {

  .section-subtitle {
    font-size: 18px;
    margin-bottom: 50px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step-card {
    max-width: 480px;
    margin: 0 auto;
  }

  .step-image {
    height: 240px;
  }

  .step-number {
    width: 56px;
    height: 56px;
    font-size: 24px;
    top: -24px;
  }
}


.hero {
  position: relative;
  min-height: 55vh;                     
  background: url('../images/phuket-villa-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-start;
  padding: 100px 0 50px;              
  margin: 0;
  overflow: hidden;
}

@media (max-width: 992px) {
  .hero {
    background-image: url('../images/phuket-villa-hero-mobile.png');
    background-position: center 120%; 
    background-position: 25% 35%;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  width: 100%;
}

.hero__title {
  font-size: 64px;                      
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}

.hero__subtitle {
  font-size: 32px;                        
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 48px;
}

@media (min-width: 769px) {
  .hero {
    border-radius: 0 0 0px 0px;       
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    margin-top: 2px;                    
  }
}

/* Статистика */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: flex-start;
}

.hero-stat {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 32px 40px;
  border-radius: 24px;
  min-width: 240px;
  flex: 1 1 100px;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.hero-stat-number {
  font-size: 36px;                        
  font-weight: 800;
  color: #D4AF37;
  margin-bottom: 8px;
  line-height: 1;
}

.hero-stat-text {
  font-size: 17px;
  color: #333;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
    padding: 90px 20px 60px;
    border-radius: 2 0 0 0 ;              
    margin-top: 1px;
    background-position: 50% 90%;                    
  }
  .hero__title {
    font-size: 42px;                     
    line-height: 1.1;
    margin-bottom: 12px;
  }
}
@media (min-width: 993px) {
  .hero__content {
    max-width: 90%;                     
    margin: 0 auto;
  }
}
.telegram-section {
  padding: 90px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.telegram-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.telegram-phone {
  flex: 1;
}

.telegram-phone img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: 30% center;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

@media (max-width: 992px) {

  .telegram-inner {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .telegram-phone {
    width: 100%;
    padding: 0 5px;   
    margin-top: -40px;
    margin-bottom: 40px;
  }

  .telegram-phone img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: center;

    border-radius: 24px;  
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  }

}

.telegram-section {
  padding: 90px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}


.telegram-phone {
  flex: 1;
}
  .telegram-phone {
    margin-bottom: 40px;            
  }

  .telegram-text {
    margin-top: 20px;                
    padding: 0 20px;                 
  }


.telegram-text {
  flex: 1;
  max-width: 45%;
  text-align: left;
}

.telegram-text h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #111;
}

.telegram-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Кнопки социалок */
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.btn-social img {
  width: 28px;
  height: 28px;
}

.btn-telegram {
  background: #0088cc;
  color: white;
}

.btn-telegram:hover {
  background: #006699;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,136,204,0.3);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.btn-instagram:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(188,24,136,0.3);
}

/* Мобильная версия */
@media (max-width: 992px) {

  .telegram-text {
    max-width: 100%;
  }

  .telegram-text h2 {
    font-size: 36px;
  }

  .telegram-desc {
    font-size: 17px;
  }

  .social-buttons {
    justify-content: center;
  }

  .btn-social {
    padding: 14px 28px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .telegram-section {
    padding: 80px 0;
  }

  .telegram-text h2 {
    font-size: 30px;
  }

  .social-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .btn-social {
    width: 100%;
    justify-content: center;
  }
}
.btn-instagram img {
  filter: brightness(0) invert(1);  
}
@media (max-width: 992px) {
  .telegram-phone {
    position: relative;
    margin-top: -10px;           
    margin-bottom: -50px;        
  }
}
@media (max-width: 992px) {
  .form-right {
    display: none !important;      
  }
}
@media (max-width: 992px) {
  .process-premium {
    padding: 0 0 30px;
  }

  .section-subtitle {
    font-size: 18px;
    margin-bottom: 50px;
  }

  .steps-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .step-card {
    max-width: 480px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  }

  /* Скрываем все изображения на мобильке */
  .step-image {
    display: none !important;
  }

  /* Текстовый контент занимает всю карточку */
  .step-content {
    padding-top: 20px !important;     /* уменьшаем отступ сверху внутри карточки */
    padding-bottom: 20px;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;      /* текст прижимается к верху */
    min-height: 10px;                /* минимальная высота, чтобы карточки не съёживались */
  }

  .step-header {
    margin-top: 0 !important;         /* убираем любой лишний отступ сверху */
  }

  .step-content h3 {
    margin-top: 0 !important;
  }
}
  .step-content h3 {
    font-size: 24px;
    margin: 16px 0 12px;
  }

  .step-content p {
    font-size: 15.5px;
    line-height: 1.6;
  }
.mission-section {
  padding: 100px 0;
  background: #f8f9fa;
  text-align: center;
}

.mission-image img {
  width: 100%;
  max-width: 800px;
  border-radius: 24px;
  margin: 40px auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.mission-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 40px 0 60px;
  flex-wrap: wrap;
}

.stat-item {
  font-size: 18px;
  color: #555;
}

.stat-icon {
  font-size: 36px;
  margin-bottom: 12px;
}


.mobile-only {
  display: none;
}


@media (max-width: 992px) {
  .desktop-only {
    display: none !important; 
  }

  .mobile-only {
    display: block !important;
  }

  .mission-mobile {
    padding: 60px 0 40px;
    background: #f8f9fa;
  }

  .mission-mobile-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    margin-bottom: 40px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
    text-align: center;
  }

  .mission-mobile-image img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 24px;
  }

  .mission-mobile h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #111;
  }

  .mission-stats-mobile {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
  }

  .stat-item {
    font-size: 16px;
  }

  .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #D4AF37;
    display: block;
    margin-bottom: 8px;
  }
}

/*  */ */ */ */ */ */
.form-section {
  padding: 10px 0;
  background: #f8f8f8;
}

.form-wrapper {
  display: flex;
  align-items: stretch;
  width: 100vw;                    
  margin-left: calc(-50vw + 50%);   
  max-width: none;
}

.form-left {
  flex: 0 0 65%;                    
  max-width: 700px;            
  padding: 0 65px;                  
  box-sizing: border-box;
  gap: 60px;
}

.form-left h2 {
  font-size: 28px;
  font-weight: 700; 
  margin-bottom: 30px;
  gap: 50px;
}

.form-btn,
.filter-button {
  height: 64px;
  width: 100%;
  padding: 0 20px;
  border: 1px solid #D4AF37;
  border-radius: 16px;
  background: transparent;
  color: #D4AF37;
  font-size: 16px;
  font-weight: 500;
  text-align: center;               
  cursor: pointer;
  box-sizing: border-box;
}

.filter-button {
  appearance: none;
  text-align: center;
  text-align-last: center;
}

.submit-btn {
  height: 64px;
  padding: 0 40px;
  min-width: 100%;                 
  border-radius: 999px;           
  border: none;
  background: #D4AF37;
  color: white;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 24px;
  transition: all 0.3s;
  display: block;                  
}

.submit-btn:hover {
  background: #b8962e;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184,150,46,0.3);
}

@media (max-width: 992px) {
  .form-wrapper {
    flex-direction: column;
    width: 110%;
    margin-left: 0;
    margin-right: 0;
  }

  .form-left {
    flex: none;
    width: 100%;
    max-width: none;
    padding: 0 20px;
  }

  @media (max-width: 992px) {
    .form-wrapper {
      width: 110%;
      max-width: none;
      position: relative;
      left: 50%;
      transform: translateX(-50%);     
    }
  }


  .submit-btn {
    min-width: 100%;                
    padding: 0 1px;
    border-radius: 999px;
  }

  .form-btn,
  .filter-button {
    height: 56px;
    font-size: 15px;
    border-radius: 14px;
  }
}

.modal {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999; 
}

.modal.active {
  display: flex !important;
}

.modal-content {
  background: white;
  padding: 40px 30px;
  border-radius: 24px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 36px;
  cursor: pointer;
  color: #aaa;
}

.modal-close:hover {
  color: #333;
}

.modal h3 {
  margin: 0 0 28px 0;
  font-size: 24px;
  color: #111;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: all 0.3s;
}

.whatsapp-btn {
  background: #25D366;
}

.telegram-btn {
  background: #0088cc;
}

.modal-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.modal-btn img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1); 
}

.modal-btn img {
  filter: brightness(0) invert(1);
}


.filter-button:focus,
.filter-button:active,
.filter-button:hover,
.filter-button option:checked,
.filter-button option[selected],
.filter-button option:focus {
  background: transparent !important;
  color: #D4AF37 !important;
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #D4AF37 !important; 
}


.filter-button::-moz-focus-inner {
  border: 0;
}



.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 30px;
}

.social-icons img {
  width: 50px;
  height: 50px;
  filter: 
    invert(73%) 
    sepia(92%) 
    saturate(430%) 
    hue-rotate(4deg) 
    brightness(96%) 
    contrast(92%);
}
 
.carousel-track {
  display: flex !important;
  gap: 40px !important;
}



@media (max-width: 768px) {

  .carousel-track {
    gap: 0 !important;
  }

  .property-card {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

}
html {
  scroll-behavior: smooth;
}

#selection {
  scroll-margin-top: 120px;
}

.scroll-top-btn {
  position: fixed;
  right: 30px;      /* регулируешь вправо-влево */
  bottom: 110px;    /* регулируешь по высоте */
  
  width: 65px;
  height: 65px;
  
  border-radius: 50%;
  border: none;
  
  background: linear-gradient(135deg, #c6a55c, #e5c97a);
  color: #111;
  font-size: 26px;
  font-weight: bold;
  
  cursor: pointer;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}
@media (max-width: 768px) {

  .scroll-top-btn {
    width: 50px;
    height: 50px;

    right: 15px;     /* ближе к краю */
    bottom: 90px;    /* ниже support-кнопки */

    font-size: 20px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  }

}

/* /* /* /* /* /* /* /*/  
.support-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);

  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;

  z-index: 99990;  
}

.support {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99999; 
}


.support-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.support-menu {
  position: absolute;

  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: 0.3s ease;

  background: none !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}


.support-menu.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
  background: transparent; 
}


.support-toggle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: transparent;
  background: linear-gradient(135deg, #c6a55c, #e5c97a);
  color: #111;
  font-size: 22px;
  font-weight: bold;

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.support-toggle:hover {
  transform: translateY(-4px);
}
.help-ring {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.help-ring circle {
  fill: none;
  stroke: #0a0a0a;
  stroke-width: 3;
  stroke-linecap: round;

  stroke-dasharray: 1;
  stroke-dashoffset: 1;

  animation: drawCircle 6s linear infinite;
}

@keyframes drawCircle {
  0% { stroke-dashoffset: 1; }
  90% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}
.help-icon {
  position: relative;
  color: #030303;
  font-size: 28px;
  font-weight: 600;
}
.support-menu a {
  width: 55px;
  height: 55px;
  border-radius: 50%;

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

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.support-menu a.telegram {
  background: #0088cc;
}

.support-menu a.whatsapp {
  background: #25D366;
}

.support-menu img {
  width: 55px;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {

  .support-toggle {
    width: 50px;
    height: 50px;
  }

  .help-ring {
    width: 50px;
    height: 50px;
  }

  .help-icon {
    font-size: 20px;
  }

  .support-menu a {
    width: 44px;
    height: 44px;
  }

  .support-menu a img {
    width: 22px;
    height: 22px;
  }

  .support {
    right: 15px;
    bottom: 20px;
  }

}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  border-radius: 35px;
  background: #fafafa;
}

.property-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  border-radius: 35px 35px 0 0 ;
}

.property-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #222;
}

.property-location {
  font-size: 14px;
  color: #777;
  margin-bottom: 14px;
}

.property-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.badge {
  background: rgba(198,165,92,0.12);
  color: #c6a55c;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.property-price {
  display: inline-block;
  background: linear-gradient(135deg, #c6a55c, #e5c97a);
  color: #111;
  padding: 16px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
}

.property-card:active,
.property-card:focus {
  transform: none;
  outline: none;
}


@media (max-width: 992px) {
  .property-card:hover {
    transform: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-radius: 25px;
  }
 
  .property-card {
    background: transparent;
    background: #f5f4f4;
    box-shadow: none;
    padding-left: 16px;
    padding-right: 15px;
    -webkit-tap-highlight-color: transparent;
  }
  
  .property-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
  
  }
}   
  
  
  



