[data-theme=light] {
  --primary-color: #3a0aa2;
  --secondary-color: #373d42;
  --success-color: #198754;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --text-color: #212529;
  --bg-color: #ffffff;
  --navbar-color: #ffffff;
  --card-bg: #ffffff;
  --footer-bg: #efefef;
  --border-color: #dee2e6;
  --social-links: #2d57ba;
}

[data-theme=dark] {
  --primary-color: #471fab;
  --secondary-color: #e6e6e6;
  --success-color: #198754;
  --light-color: #212529;
  --dark-color: #b7cbdf;
  --text-color: #ffffff;
  --bg-color: #232324;
  --card-bg: #2c2c2c;
  --footer-bg: #1a1a1a;
  --border-color: #474747;
  --navbar-color: #636363;
  --social-links: #d5d7db;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--text-color);
  background-color: var(--bg-color);
  font-family: "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
  transition: background-color 0.3s, color 0.3s;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

.page {
  flex: 1 0 auto;
  margin: 24px auto;
  padding: 0px 16px;
  max-width: 1230px;
}

.contact-me {
  gap: 32px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.header {
  top: 0px;
  width: 100%;
  padding: 0;
  position: fixed;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
}
[data-theme=dark] .header {
  background: rgba(30, 30, 30, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header .navbar-brand {
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--text-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header .nav-link {
  font-weight: 500;
  color: var(--text-color);
  margin: 0 0.5rem;
  position: relative;
  padding: 0.5rem 0;
}
.header .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}
.header .nav-link:hover {
  color: var(--primary-color);
}
.header .nav-link:hover::after {
  width: 100%;
}
.header .theme-toggle {
  margin-top: 4px;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.header .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-primary {
  color: #ffffff;
  background-color: var(--primary-color);
  border: none;
  font-size: 1.1rem;
  padding: 12px 24px;
  border-radius: 12px;
}
.btn-primary:hover {
  background-color: var(--primary-color);
}

section {
  padding: 24px 0px;
}
section h1 {
  margin: 24px 0px;
}

.section-hero {
  color: white;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), no-repeat center center;
  background-size: cover;
  display: flex;
  position: relative;
  justify-content: center;
}
.section-hero .hero-content {
  color: #ffffff;
  max-width: 1300px;
  padding: 80px 16px;
}
.section-hero .hero-content h1 {
  font-size: 5rem;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.8);
}
.section-hero .hero-content p {
  font-size: 17pt;
  max-width: 700px;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 768px) {
  .section-hero .hero-content h1 {
    font-size: 42px;
  }
}

/* Features Section */
.feature-card {
  background: white;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--gold-color);
  margin-bottom: 20px;
}

/* Gallery Section */
.masonry-grid {
  -moz-column-count: 4;
       column-count: 4;
  -moz-column-gap: 1.2em;
       column-gap: 1.2em;
}
@media screen and (max-width: 992px) {
  .masonry-grid {
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media screen and (max-width: 768px) {
  .masonry-grid {
    -moz-column-count: 2;
         column-count: 2;
  }
}

.masonry-item {
  display: flex;
  margin: 0 0 1.5em;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.masonry-item:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.masonry-item:hover img {
  transform: scale(1.1);
}

.masonry-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.masonry-item:hover .masonry-caption {
  opacity: 1;
}

/* Video Section */
.video-container {
  display: flex;
  overflow: hidden;
}
.video-container .plyr {
  flex: 1;
}

/* Apartments Section */
.apartment-card {
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.apartment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.apartment-card img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.apartment-info {
  padding: 20px;
  background: white;
}

.apartment-price {
  color: var(--gold-color);
  font-weight: 700;
  font-size: 1.5rem;
}

/* Location Section */
.map-container {
  max-height: 500px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonial-card {
  padding: 30px;
  background: var(--light-color);
  margin-bottom: 30px;
  position: relative;
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(0, 0, 0, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://images.unsplash.com/photo-1560520031-3a4dc4e9de0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80") no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

/* Stats Section */
.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 10px;
}

.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
}
.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.sl-wrapper .sl-image img {
  background: #111 !important;
}

.sl-overlay {
  background: rgba(0, 0, 0, 0.9) !important;
}

.photo-gallery .photos {
  gap: 8px;
  display: flex;
  overflow-x: scroll;
  padding: 16px 0px;
  justify-content: space-evenly;
}
.photo-gallery .photos img {
  width: 320px;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.section {
  padding: 24px 0px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--text-color);
}

.section-about {
  gap: 24px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .section-about {
    align-items: center;
    flex-direction: column;
  }
}
.section-about .profile-photo {
  border-radius: 24px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .section-about .profile-photo {
    border-radius: 50%;
    width: 180px;
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.section-about .stat-item {
  text-align: center;
  padding: 1rem;
}
.section-about .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
}
.section-about .stat-item .stat-text {
  font-size: 1rem;
  color: var(--secondary-color);
}

.service-card {
  border: none;
  color: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: var(--card-bg);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.service-card .service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-card .card-title {
  font-weight: 600;
  margin-bottom: 1rem;
}
.service-card ul {
  padding-left: 1rem;
}
.service-card ul li {
  margin-bottom: 0.5rem;
}

.review-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  color: var(--text-color);
  background-color: var(--card-bg);
  padding: 1.5rem;
}
.review-card .review-header {
  display: flex;
  align-items: center;
}
.review-card .review-avatar {
  width: 60px;
  height: 60px;
  margin-right: 1rem;
}
.review-card .review-author h5 {
  margin-bottom: 0.3rem;
}
.review-card .stars {
  color: #ffc107;
}
.review-card .review-text {
  color: var(--text-color);
}

.footer {
  flex-shrink: 0;
  background-color: #f8f9fa;
  padding: 20px 0;
  margin-top: auto;
  color: var(--text-color);
  background-color: var(--footer-bg);
}
.footer__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__content {
    gap: 16px;
    flex-direction: column;
    flex-direction: column-reverse;
  }
  .footer__content h4 {
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
  }
  .footer__content p {
    font-size: 13px;
    color: var(--text-color);
  }
}
.footer__links-group {
  gap: 128px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .footer__links-group {
    gap: 62px;
    padding-left: 8px;
  }
}
.footer__links-group__items {
  gap: 4px;
  display: flex;
  align-items: start;
  flex-direction: column;
  text-align: left;
}
.footer__links-group__items span {
  font-weight: 600;
}
.footer__links-group__items div {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.footer__copyright {
  display: flex;
  justify-content: space-between;
  font-size: 12pt;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    flex-direction: column;
  }
}
.footer__copyright i {
  color: rgb(202, 42, 42);
}
.footer a {
  color: var(--text-color);
}

.divider {
  height: 1px;
  margin: 16px 0px;
  border-top: 1px dashed #666666;
}

.listings-list .card {
  color: var(--text-color);
  background-color: var(--card-bg);
  border-color: var(--border-color);
}

.residentials {
  gap: 0px;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}
.residentials .full-width-banner {
  width: 100%;
  min-height: 440px;
  padding-top: 64px;
  position: relative;
  background-size: cover;
  background-position: center;
  align-items: center;
  color: white;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .residentials .full-width-banner {
    padding-top: 0px;
  }
}
.residentials .full-width-banner .btn-primary {
  width: 250px;
}
.residentials .full-width-banner .banner-content {
  display: flex;
  flex-direction: column;
}
.residentials .full-width-banner .banner-content h1 {
  padding: 0px;
  margin: 8px 0px;
  font-size: 36px;
  font-weight: 500;
  text-shadow: 2px 2px 8px #111;
}
.residentials .full-width-banner .banner-content p {
  max-width: 800px;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 2px 2px 8px #111;
}

.social-links {
  gap: 24px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .social-links {
    gap: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.social-links a {
  color: var(--social-links);
}
.social-links .social-item {
  gap: 8px;
  display: flex;
  align-items: center;
  border-radius: 44px;
  padding-right: 16px;
  transition: all linear 0.2s;
}
.social-links .social-item.callme:hover {
  color: #ffffff;
  background: #4caf50;
}
.social-links .social-item.whatsapp:hover {
  color: #ffffff;
  background: #29a71a;
}
.social-links .social-item.telegram:hover {
  color: #ffffff;
  background: #039be5;
}
.social-links .social-item.vk:hover {
  color: #ffffff;
  background: #4169e1;
}
.social-links .social-item.max:hover {
  color: #ffffff;
  background: #8c34da;
}
.social-links .social-item .social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.social-links .social-item .social-icon img {
  width: 44px;
  height: 44px;
  background-color: transparent;
  transition: transform 0.3s ease;
}

.residentials-landing {
  display: flex;
  flex-direction: column;
}
.residentials-landing .about-content {
  gap: 32px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .residentials-landing .about-content {
    flex-direction: column;
  }
}
.residentials-landing .about-content .side-column {
  flex: 1;
  gap: 16px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .residentials-landing .about-content .side-column:first-child {
    display: grid;
    grid-template: 1fr 1fr/1fr 1fr;
  }
}
.residentials-landing .about-content .side-column img {
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .residentials-landing .about-content .side-column img {
    width: 100%;
    height: 120px;
  }
}
.residentials-landing .about-content .side-column .features-list {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}
.residentials-landing #section-planning .plan-cards {
  padding: 0px;
  margin: 0px;
  gap: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 576px) {
  .residentials-landing #section-planning .plan-cards {
    grid-template-columns: 1fr;
  }
}
.residentials-landing #section-planning .plan-cards .plan-card {
  gap: 0px;
  display: flex;
  margin: 0px;
  padding: 0px;
  background: var(--card-bg);
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}
.residentials-landing #section-planning .plan-cards .plan-card__renders img {
  width: 260px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 992px) {
  .residentials-landing #section-planning .plan-cards .plan-card__renders img {
    width: 200px;
    height: 140px;
  }
}
.residentials-landing #section-planning .plan-cards .plan-card__img-plan {
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
}
.residentials-landing #section-planning .plan-cards .plan-card__img-plan img {
  display: flex;
  width: 100%;
  height: 320px;
  -o-object-fit: contain;
     object-fit: contain;
}
.residentials-landing #section-planning .plan-cards .plan-card__img-plan img:hover {
  cursor: zoom-in;
}
.residentials-landing #section-planning .plan-cards .plan-card__details {
  margin: 12px;
  float: right;
  position: absolute;
}
.residentials-landing #section-planning .plan-cards .plan-card__details span {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #efefef;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  text-align: center;
}

.section-location-content {
  gap: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .section-location-content {
    grid-template-columns: 1fr;
  }
}

.sl-wrapper .sl-close,
.sl-wrapper .sl-counter,
.sl-wrapper .sl-navigation button {
  color: var(--border-color) !important;
}
.sl-wrapper .sl-download {
  margin-bottom: 32px !important;
}/*# sourceMappingURL=styles.css.map */