@charset "UTF-8";

/*-----------------------------------------------
Preloader
-----------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*-----------------------------------------------
Scroll Top
-----------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*-----------------------------------------------
Navigation Menu
-----------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*-----------------------------------------------
Global Header 
-----------------------------------------------*/
.header {
  --background-color: #2DA8EB;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo svg {
  height: 32px;
  margin-right: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*-----------------------------------------------
Global Footer
-----------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*-----------------------------------------------
Global Page Titles
-----------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*-----------------------------------------------
Global Sections
-----------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*-----------------------------------------------
Global Section Titles
-----------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*-----------------------------------------------
Home Page
-----------------------------------------------*/
.home .content-header p.lead-text {
  font-size: 1.2rem;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.home .content-header .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* background: color-mix(in srgb, var(--accent-color), transparent 85%); */
  color: var(--accent-color);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.home .content-header .label i {
  font-size: 16px;
}

.home {
  padding-top: 40px;
  background: linear-gradient(45deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

.home::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 100%);
  z-index: 1;
}

.home .home-wrapper {
  position: relative;
  z-index: 2;
}

.home .home-content .content-header {
  margin-bottom: 24px;
}

.home .home-content .content-header .home-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.home .home-content .content-header .home-label i {
  font-size: 16px;
}

.home .home-content .content-header h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .home .home-content .content-header h1 {
    font-size: 2.4rem;
  }
}

.home .home-content .content-header p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.home .home-content .search-container {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  margin-bottom: 40px;
}

.home .home-content .search-container .search-header {
  text-align: center;
  margin-bottom: 32px;
}

.home .home-content .search-container .search-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.home .home-content .search-container .search-header p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  font-size: 15px;
}

.home .home-visual .visual-container {
  position: relative;
  /* height: 650px; */
}

.home .home-visual .property-status .overlay-featured {
  top: 15px;
  left: 15px;
}

.home .home-visual .property-status .status-badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  margin-right: 6px;
  margin-bottom: 6px;
  top: 15px;
  left: 15px;
}

.home .home-visual .property-status .status-badge.featured {
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  color: white;
}

.home .home-visual .property-status .overlay-featured {
  top: 15px;
  left: 15px;
}

.home .home-visual .property-status .status-badge.sale {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0066cc 20%));
  color: white;
}

.home .home-visual .visual-container .featured-property {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 30px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.home .home-visual .visual-container .featured-property img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home .home-visual .visual-container .featured-property .property-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 40px 24px 24px;
  color: white;
}

.home .home-visual .visual-container .featured-property .property-info .property-price {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.home .home-visual .visual-container .featured-property .property-info .property-price {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.home .home-visual .visual-container .featured-property .property-info .property-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home .home-visual .visual-container .featured-property .property-info .property-details span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.home .home-visual .visual-container .featured-property .property-info .property-details span i {
  font-size: 13px;
}

.home .home-visual .visual-container .overlay-status {
  position: absolute;
  top: 15px;
  left: 15px;
}

.home .home-visual .visual-container .overlay-images .overlay-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 80%);
  border: 4px solid var(--surface-color);
}

.home .home-visual .visual-container .overlay-images .overlay-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home .home-visual .visual-container .overlay-images .overlay-1 {
  top: 170px;
  right: 10px;
  width: 140px;
  height: 140px;
}

.home .home-visual .visual-container .overlay-images .overlay-2 {
  top: 320px;
  right: 10px;
  width: 140px;
  height: 140px;
}

@media (max-width: 992px) {
  .home {
    padding: 50px 0 30px;
  }

  .home .home-visual .visual-container .featured-property {
    height: 380px;
  }

  .home .home-visual .visual-container .overlay-images .overlay-1 {
    top: 40px;
    right: 10px;
    width: 120px;
    height: 120px;
  }

  .home .home-visual .visual-container .overlay-images .overlay-2 {
    top: 180px;
    right: 30;
    width: 100px;
    height: 100px;
  }

  .home .search-container {
    padding: 28px;
  }
}

@media (max-width: 576px) {
  .home {
    padding: 40px 0 20px;
  }

  .home .home-content .content-header .home-label {
    padding: 10px 16px;
    font-size: 14px;
  }

  .home .search-container {
    padding: 20px;
  }

  .home .search-container .search-header h3 {
    font-size: 1.3rem;
  }

  .home .achievement-grid .achievement-item {
    padding: 16px 12px;
  }

  .home .achievement-grid .achievement-item .achievement-number {
    font-size: 1.8rem;
  }

  .home .home-visual .visual-container .featured-property {
    height: 300px;
  }

  .home .home-visual .visual-container .featured-property .property-info {
    padding: 30px 20px 20px;
  }

  .home .home-visual .visual-container .featured-property .property-info .property-price {
    font-size: 1.5rem;
  }

  .home .home-visual .visual-container .overlay-images .overlay-1 {
    width: 100px;
    height: 100px;
  }

  .home .home-visual .visual-container .overlay-images .overlay-2 {
    width: 80px;
    height: 80px;
  }
}

.listing-gallery .swiper-button-prev,
.listing-gallery .swiper-button-next {
  width: 30px;
  height: 30px;
  background: var(--surface-color);
  border-radius: 6px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 85%);
}

.listing-gallery .swiper-button-prev::after,
.listing-gallery .swiper-button-next::after {
  font-size: 12px;
  color: var(--default-color);
  font-weight: 700;
}

.listing-gallery .swiper-button-prev:hover,
.listing-gallery .swiper-button-next:hover {
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 5%);
}

.listing-gallery .swiper-pagination-bullet {
  background: var(--surface-color);
  opacity: 0.7;
  width: 8px;
  height: 8px;
}

.listing-gallery .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent-color);
}

.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

.why-us {
  /* padding: 50px 0; */
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/background/abstract-bg-3.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.03;
  z-index: 0;
}

.why-us .container {
  position: relative;
  z-index: 1;
}

.why-us .image-showcase {
  position: relative;
}

.why-us .image-showcase .main-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-us .image-showcase .main-image-wrapper .main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.why-us .image-showcase .main-image-wrapper .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content {
  text-align: center;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content .play-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content .play-icon:hover {
  transform: scale(1.1);
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content span {
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0 0 15px 10px;
}

.why-us .image-showcase .main-image-wrapper:hover .main-image {
  transform: scale(1.05);
}

.why-us .image-showcase .floating-stats {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-us .image-showcase .floating-stats .stat-badge {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-us .image-showcase .floating-stats .stat-badge:nth-child(2) {
  transform: rotate(-3deg);
  background: var(--surface-color);
  color: var(--default-color);
}

.why-us .image-showcase .floating-stats .stat-badge .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-us .image-showcase .floating-stats .stat-badge .stat-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.why-us .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.why-us .content-wrapper .section-badge i {
  color: var(--accent-color);
}

.why-us .content-wrapper h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.why-us .content-wrapper .lead-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
}

.why-us .content-wrapper .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.why-us .content-wrapper .benefits-grid .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-icon i {
  font-size: 1.2rem;
  color: var(--contrast-color);
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .content-wrapper .achievement-highlights {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  margin-bottom: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  background: var(--surface-color);
  justify-content: center;
}

.why-us .content-wrapper .achievement-highlights .highlight-item {
  text-align: center;
}

.why-us .content-wrapper .achievement-highlights .highlight-item .highlight-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.why-us .content-wrapper .achievement-highlights .highlight-item .highlight-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.why-us .content-wrapper .achievement-highlights .highlight-divider {
  width: 1px;
  height: 40px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.why-us .content-wrapper .action-buttons {
  display: flex;
  gap: 1.5rem;
}

.why-us .content-wrapper .action-buttons .btn {
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.why-us .content-wrapper .action-buttons .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border: none;
  color: var(--contrast-color);
}

.why-us .content-wrapper .action-buttons .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.why-us .content-wrapper .action-buttons .btn.btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.why-us .content-wrapper .action-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .why-us {
    padding: 40px 0;
  }

  .why-us .content-wrapper {
    padding-left: 0;
    margin-top: 3rem;
  }

  .why-us .content-wrapper h2 {
    font-size: 2.3rem;
  }

  .why-us .content-wrapper .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-us .content-wrapper .achievement-highlights {
    flex-direction: column;
    gap: 1.5rem;
  }

  .why-us .content-wrapper .achievement-highlights .highlight-divider {
    width: 40px;
    height: 1px;
  }

  .why-us .content-wrapper .action-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .why-us .image-showcase .main-image-wrapper .main-image {
    height: 400px;
  }

  .why-us .image-showcase .floating-stats {
    position: absolute;
    top: 20px;
    right: 0;
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .why-us {
    padding: 30px 0;
  }

  .why-us .content-wrapper h2 {
    font-size: 2rem;
  }

  .why-us .content-wrapper .lead-text {
    font-size: 1.1rem;
  }

  .why-us .image-showcase .floating-stats {
    flex-direction: column;
    gap: 10px;
  }

  .why-us .image-showcase .floating-stats .stat-badge {
    padding: 15px;
  }

  .why-us .image-showcase .floating-stats .stat-badge .stat-number {
    font-size: 1.5rem;
  }
}

.call-to-action {
  position: relative;
  /* min-height: 300px; */
  display: flex;
  align-items: center;
}

.call-to-action .call-to-action-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.call-to-action .call-to-action-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .call-to-action-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .call-to-action .call-to-action-content h2 {
    font-size: 2rem;
  }
}

.call-to-action .call-to-action-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.call-to-action .call-to-action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.call-to-action .call-to-action-buttons .btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.call-to-action .call-to-action-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.call-to-action .call-to-action-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.call-to-action .call-to-action-buttons .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.call-to-action .call-to-action-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .call-to-action .call-to-action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .call-to-action .call-to-action-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.call-to-action .call-to-action-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.call-to-action .call-to-action-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.call-to-action .call-to-action-features .feature-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.call-to-action .call-to-action-features .feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 576px) {
  .call-to-action .call-to-action-features {
    flex-direction: column;
    gap: 1rem;
  }

  .call-to-action .call-to-action-features .feature-item {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    min-height: 400px;
    padding: 80px 0;
  }

  .call-to-action .call-to-action-content h2 {
    margin-bottom: 1rem;
  }

  .call-to-action .call-to-action-content p {
    margin-bottom: 2rem;
  }

  .call-to-action .call-to-action-buttons {
    margin-bottom: 2rem;
  }
}

.property-details .listing-gallery {
  margin-bottom: 24px;
}

.property-details .listing-gallery .gallery-slider {
  border-radius: 8px;
  overflow: hidden;
}

.property-details .listing-gallery .gallery-slider .swiper-wrapper {
  height: auto !important;
}

.property-details .listing-gallery .gallery-slider .swiper-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.property-details .listing-gallery .gallery-slider .swiper-button-prev,
.property-details .listing-gallery .gallery-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background: var(--surface-color);
  border-radius: 6px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 85%);
}

.property-details .listing-gallery .gallery-slider .swiper-button-prev::after,
.property-details .listing-gallery .gallery-slider .swiper-button-next::after {
  font-size: 14px;
  color: var(--default-color);
  font-weight: 700;
}

.property-details .listing-gallery .gallery-slider .swiper-button-prev:hover,
.property-details .listing-gallery .gallery-slider .swiper-button-next:hover {
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 5%);
}

.property-details .listing-gallery .gallery-slider .swiper-pagination-bullet {
  background: var(--surface-color);
  opacity: 0.7;
  width: 8px;
  height: 8px;
}

.property-details .listing-gallery .gallery-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent-color);
}

@media (max-width: 768px) {
  .property-details .listing-gallery .gallery-slider .swiper-slide img {
    height: 260px;
  }
}

/*-----------------------------------------------
About Page(s)
-----------------------------------------------*/
.kas-real-estate .content-header .about,
.kas-town .content-header .about,
.purchasing-property .content-header .about {
  display: inline-flex;
  align-items: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  padding: 4px 16px;
  margin-bottom: 12px;
}

.kas-real-estate .content-header h2,
.kas-town .content-header h2,
.purchasing-property .content-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2.25rem;
}
.kas-town .kas-town-gallery .gallery-slider {
  border-radius: 8px;
  overflow: hidden;
}

.kas-town .kas-town-gallery .gallery-slider .swiper-wrapper {
  height: auto !important;
}

.kas-town .kas-town-gallery .gallery-slider .swiper-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.kas-town .kas-town-gallery .gallery-slider .swiper-slide .slide-caption {
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 0 15px;
  text-align: center;
  font-family: sans-serif;
  color: #333;
}

.kas-town .kas-town-gallery .gallery-slider .swiper-button-prev,
.kas-town .kas-town-gallery .gallery-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background: var(--surface-color);
  border-radius: 6px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 85%);
  top: 50% !important;
  transform: translateY(-50%);
}

.kas-town .kas-town-gallery .gallery-slider .swiper-button-prev::after,
.kas-town .kas-town-gallery .gallery-slider .swiper-button-next::after {
  font-size: 14px;
  color: var(--default-color);
  font-weight: 700;
}

.kas-town .kas-town-gallery .gallery-slider .swiper-button-prev:hover,
.kas-town .kas-town-gallery .gallery-slider .swiper-button-next:hover {
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 5%);
}

.kas-town .kas-town-gallery .gallery-slider .swiper-pagination-bullet {
  /* background: var(--surface-color); */
  opacity: 0.7;
  width: 8px;
  height: 8px;
}

.kas-town .kas-town-gallery .gallery-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent-color);
}

@media (max-width: 768px) {
  .kas-town .kas-town-gallery .gallery-slider .swiper-slide img {
    height: 260px;
  }
}

.purchasing-property .property-purchase-timeline {
  position: relative;
  padding-left: 2rem;
}

.purchasing-property .property-purchase-timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 3px;
}

.purchasing-property .property-purchase-timeline .timeline-breaker {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 30px;
  max-width: 150px;
  padding: 13px 15px;
  font-size: 14px;
  font-weight: 700;
}

.purchasing-property .property-purchase-timeline .timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.purchasing-property .property-purchase-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -2rem;
  top: 1rem;
  width: 45px;
  height: 45px;
  background: var(--surface-color);
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.purchasing-property .property-purchase-timeline .timeline-item .timeline-marker .step-num {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
}

.purchasing-property .property-purchase-timeline .timeline-item .timeline-content {
  background: var(--surface-color);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.purchasing-property .property-purchase-timeline .timeline-item .timeline-content h5 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.purchasing-property .property-purchase-timeline .timeline-item .timeline-content p {
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.purchasing-property .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.purchasing-property .features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.purchasing-property .features-list li:last-child {
  border-bottom: none;
}

.purchasing-property .features-list li i {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 700;
}

/*-----------------------------------------------
Contact Page
-----------------------------------------------*/
.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 50px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 15px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: 0.3s;
  margin-bottom: 15px;
}

.contact .contact-form-wrapper .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form-wrapper textarea.form-control {
  resize: vertical;
  min-height: 180px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 13px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
  display: inline-block;
  cursor: pointer;
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-info-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: 0.3s;
  height: 100%;
}

.contact .contact-info-card:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-5px);
}

.contact .contact-info-card .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-card .icon-box i {
  font-size: 26px;
}

.contact .contact-info-card .info-content h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.contact .contact-info-card .info-content p {
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
}

.contact .map-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact .map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .contact .contact-form-wrapper {
    padding: 30px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .contact .contact-info-card {
    padding: 25px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact .contact-info-card .icon-box {
    margin-bottom: 15px;
  }

  .contact .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 22px;
  }

  .contact .contact-info-card {
    padding: 20px;
  }

  .contact .map-container iframe {
    height: 350px;
  }
}

.contact .form-group .action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.contact .form-group .action-buttons .btn {
  padding: 12px 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact .form-group .action-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.contact .form-group .action-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.contact .form-group .action-buttons .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact .form-group .action-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .contact .form-group .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact .form-group .action-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contact .form-group .action-buttons {
    margin-bottom: 2rem;
  }
}

/*-----------------------------------------------
Services Page
-----------------------------------------------*/
.property-construction .action-buttons,
.property-consultancy .action-buttons,
.property-management .action-buttons,
.property-renovation .action-buttons,
.property-sales .action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.property-construction .action-buttons .btn,
.property-consultancy .action-buttons .btn,
.property-management .action-buttons .btn,
.property-renovation .action-buttons .btn,
.property-sales .action-buttons .btn {
  padding: 12px 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.property-construction .action-buttons .btn.btn-primary,
.property-consultancy .action-buttons .btn.btn-primary,
.property-management .action-buttons .btn.btn-primary,
.property-renovation .action-buttons .btn.btn-primary,
.property-sales .action-buttons  .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.property-construction .action-buttons .btn.btn-primary:hover,
.property-consultancy .action-buttons .btn.btn-primary:hover,
.property-management .action-buttons .btn.btn-primary:hover,
.property-renovation .action-buttons .btn.btn-primary:hover,
.property-sales .action-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.property-construction .action-buttons .btn.btn-outline,
.property-consultancy .action-buttons .btn.btn-outline,
.property-management .action-buttons .btn.btn-outline,
.property-renovation .action-buttons .btn.btn-outline,
.property-sales .action-buttons .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.property-construction .action-buttons .btn.btn-outline:hover,
.property-consultancy .action-buttons .btn.btn-outline:hover,
.property-management .action-buttons .btn.btn-outline:hover,
.property-renovation .action-buttons .btn.btn-outline:hover,
.property-sales .action-buttons .btn.btn-outline:hover { 
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .property-construction .action-buttons,
  .property-consultancy .action-buttons,
  .property-management .action-buttons,
  .property-renovation .action-buttons,
  .property-sales .action-buttons { 
    flex-direction: column;
    align-items: center;
  }

  .property-construction .action-buttons .btn,
  .property-consultancy .action-buttons .btn,
  .property-management .action-buttons .btn,
  .property-renovation .action-buttons .btn,
  .property-sales .action-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .property-construction .action-buttons,
  .property-consultancy .action-buttons,
  .property-management .action-buttons,
  .property-renovation .action-buttons,
  .property-sales .action-buttons { 
    margin-bottom: 2rem;
  }
}

.property-construction .content-header .services,
.property-consultancy .content-header .services,
.property-management .content-header .services,
.property-renovation .content-header .services,
.property-sales .content-header .services {
  display: inline-flex;
  align-items: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  padding: 4px 16px;
  margin-bottom: 12px;
}

.property-construction .content-header h2,
.property-consultancy .content-header h2,
.property-management .content-header h2,
.property-renovation .content-header h2,
.property-sales .content-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2.25rem;
}

.property-construction img,
.property-consultancy img,
.property-management img,
.property-renovation img,
.property-sales img {
  float: right !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 1.25rem !important;
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.property-consultancy .service-content .consultancy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.property-consultancy .service-content .consultancy-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.property-consultancy .service-content .consultancy-list li:last-child {
  border-bottom: none;
}

.property-consultancy .service-content .consultancy-list li i {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 700;
}

.property-sales .service-content {
  flex: 1;
  min-width: 0;
}

.property-sales .service-content .service-image {
  position: relative;
  margin-bottom: 2rem;
}

.property-sales .service-content .service-image img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 1.25rem !important;
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.property-sales .service-content .service-image .service-badge {
  position: absolute;
  top: 20px;
  left: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.property-sales .service-content .service-image .service-badge i {
  font-size: 16px;
}

.property-sales .service-content .service-overview {
  margin-bottom: 3rem;
}

.property-sales .service-content .service-overview h2 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.property-sales .service-content .service-overview .lead {
  font-size: 1.2rem;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.property-sales .service-content .service-overview p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.property-sales .service-content .service-features {
  margin-bottom: 3rem;
}

.property-sales .service-content .service-features h3 {
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.property-sales .service-content .service-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-sales .service-content .service-features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.property-sales .service-content .service-features .feature-item .feature-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.property-sales .service-content .service-features .feature-item .feature-icon i {
  font-size: 20px;
}

.property-sales .service-content .service-features .feature-item .feature-content h5 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.property-sales .service-content .service-features .feature-item .feature-content p {
  color: var(--default-color);
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.property-sales .service-content .service-process {
  margin-bottom: 3rem;
}

.property-sales .service-content .service-process h3 {
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.property-sales .service-content .service-process .process-steps .process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.property-sales .service-content .service-process .process-steps .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 45px;
  width: 2px;
  height: calc(100% + 10px);
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.property-sales .service-content .service-process .process-steps .process-step .step-number {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.property-sales .service-content .service-process .process-steps .process-step .step-content h5 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.property-sales .service-content .service-process .process-steps .process-step .step-content p {
  color: var(--default-color);
  margin: 0;
  line-height: 1.5;
}

.property-sales .service-content .service-stats {
  margin-bottom: 3rem;
}

.property-sales .service-content .service-stats h3 {
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.property-sales .service-content .service-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.property-sales .service-content .service-stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.property-sales .service-content .service-stats .stat-item .stat-label {
  color: var(--default-color);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .property-sales .service-content .service-overview h2 {
    font-size: 2rem;
  }

  .property-sales .service-content .service-overview .lead {
    font-size: 1.1rem;
  }

  .property-sales .service-content .service-process .process-steps .process-step:not(:last-child)::after {
    left: 17px;
  }

  .property-sales .service-content .service-process .process-steps .process-step .step-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

.property-sales .sidebar .contact-form-widget,
.property-sales .sidebar .quick-info-widget,
.property-sales .sidebar .testimonial-widget,
.property-sales .sidebar .related-services-widget {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.property-sales .sidebar .contact-form-widget h4,
.property-sales .sidebar .quick-info-widget h4,
.property-sales .sidebar .testimonial-widget h4,
.property-sales .sidebar .related-services-widget h4 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.property-sales .sidebar .contact-form-widget p {
  color: var(--default-color);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.property-sales .sidebar .contact-form-widget .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 5px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.property-sales .sidebar .contact-form-widget .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
  outline: 0;
}

.property-sales .sidebar .contact-form-widget .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.property-sales .sidebar .quick-info-widget .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.property-sales .sidebar .quick-info-widget .info-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.property-sales .sidebar .quick-info-widget .info-list li:last-child {
  border-bottom: none;
}

.property-sales .sidebar .quick-info-widget .info-list li i {
  color: var(--accent-color);
  font-size: 16px;
  width: 20px;
}

.property-sales .sidebar .quick-info-widget .info-list li span {
  color: var(--default-color);
  font-size: 14px;
}

.property-sales .sidebar .testimonial-widget .testimonial-item .testimonial-content {
  margin-bottom: 1rem;
}

.property-sales .sidebar .testimonial-widget .testimonial-item .testimonial-content p {
  color: var(--default-color);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

.property-sales .sidebar .testimonial-widget .testimonial-item .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.property-sales .sidebar .testimonial-widget .testimonial-item .testimonial-author img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.property-sales .sidebar .testimonial-widget .testimonial-item .testimonial-author .author-info h6 {
  color: var(--heading-color);
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.property-sales .sidebar .testimonial-widget .testimonial-item .testimonial-author .author-info span {
  color: var(--default-color);
  font-size: 12px;
}

.property-sales .sidebar .related-services-widget .service-links .service-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--default-color);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: color 0.3s ease;
}

.property-sales .sidebar .related-services-widget .service-links .service-link:last-child {
  border-bottom: none;
}

.property-sales .sidebar .related-services-widget .service-links .service-link:hover {
  color: var(--accent-color);
}

.property-sales .sidebar .related-services-widget .service-links .service-link:hover .bi-arrow-right {
  transform: translateX(5px);
}

.property-sales .sidebar .related-services-widget .service-links .service-link .bi:first-child {
  color: var(--accent-color);
  font-size: 16px;
  width: 20px;
}

.property-sales .sidebar .related-services-widget .service-links .service-link span {
  flex: 1;
  font-size: 14px;
}

.property-sales .sidebar .related-services-widget .service-links .service-link .bi-arrow-right {
  font-size: 14px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .property-sales .sidebar {
    margin-top: 2rem;
  }

  .property-sales .sidebar .contact-form-widget,
  .property-sales .sidebar .quick-info-widget,
  .property-sales .sidebar .testimonial-widget,
  .property-sales .sidebar .related-services-widget {
    padding: 1.5rem;
  }
}

.property-sales .service-content .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.property-sales .service-content .service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--default-color);
}

.property-sales .service-content .service-features li i {
  color: var(--accent-color);
  font-size: 16px;
  flex-shrink: 0;
}

.property-sales .service-content .service-features li:last-child {
  margin-bottom: 0;
}

.property-sales .service-content .service-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.property-sales .service-content .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.property-sales .service-content .service-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 30%), color-mix(in srgb, var(--accent-color), transparent 60%));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.property-sales .service-content .service-image .image-overlay i {
  font-size: 48px;
  color: var(--contrast-color);
}

/*-----------------------------------------------
Properties Page
-----------------------------------------------*/
.properties .search-bar .search-wrapper {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.properties .search-bar .search-wrapper .search-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.properties .search-bar .search-wrapper .search-field .form-control,
.properties .search-bar .search-wrapper .search-field .form-select {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  background-color: transparent;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.properties .search-bar .search-wrapper .search-field .form-control:focus,
.properties .search-bar .search-wrapper .search-field .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.properties .search-bar .search-wrapper .search-field .form-control::placeholder,
.properties .search-bar .search-wrapper .search-field .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.properties .search-bar .search-wrapper .search-field .bedroom-quick {
  display: flex;
  gap: 4px;
}

.properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn {
  flex: 1;
  padding: 12px 8px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background: transparent;
  color: var(--default-color);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn:hover,
.properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn.active {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.properties .search-bar .btn {
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.properties .search-bar .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.properties .search-bar .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.properties .search-bar .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.properties .search-bar .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .properties .search-bar {
    flex-direction: column;
    align-items: center;
  }

  .properties .search-bar .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .properties .search-bar {
    margin-bottom: 2rem;
  }
}

.properties .results-header .results-info h5 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 5px;
}

.properties .results-header .results-info .text-muted {
  color: color-mix(in srgb, var(--default-color), transparent 40%) !important;
  font-size: 14px;
}

.properties .results-header .results-controls .sort-dropdown .form-select {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 13px;
  padding: 8px 12px;
  min-width: 180px;
}

.properties .results-header .results-controls .sort-dropdown .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.properties .results-header .results-controls .pagination-dropdown .form-select {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 13px;
  padding: 8px 12px;
  min-width: 180px;
}

.properties .results-header .results-controls .pagination-dropdown .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.properties .results-header .results-controls .view-toggle {
  display: flex;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  overflow: hidden;
}

.properties .results-header .results-controls .view-toggle .view-btn {
  padding: 8px 12px;
  border: none;
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.properties .results-header .results-controls .view-toggle .view-btn:not(:last-child) {
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.properties .results-header .results-controls .view-toggle .view-btn.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.properties .results-header .results-controls .view-toggle .view-btn:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.properties .properties-container .view-masonry,
.properties .properties-container .view-rows {
  display: none;
}

.properties .properties-container .view-masonry.active,
.properties .properties-container .view-rows.active {
  display: block;
}

.properties .property-grid-item {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  height: 100%;
}

.properties .property-grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.properties .property-grid-item .property-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.properties .property-grid-item .property-link:hover {
  text-decoration: none;
  color: inherit;
}

.properties .property-grid-item .property-image-wrapper {
  position: relative;
  overflow: hidden;
}

.properties .property-grid-item .property-image-wrapper img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.properties .property-grid-item .property-image-wrapper:hover img {
  transform: scale(1.08);
}

.properties .property-grid-item .property-image-wrapper .property-status {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.properties .property-grid-item .property-image-wrapper .property-status .status-badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.properties .property-grid-item .property-image-wrapper .property-status .status-badge.featured {
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  color: white;
}

.properties .property-grid-item .property-image-wrapper .property-status .status-badge.new {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
}

.properties .property-grid-item .property-image-wrapper .property-status .status-badge.sale {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0066cc 20%));
  color: white;
}

.properties .property-grid-item .property-image-wrapper .property-status .status-badge.rent {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: white;
}

.properties .property-grid-item .property-image-wrapper .property-status .status-badge.open {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
}

.properties .property-grid-item .property-image-wrapper .property-status .status-badge.reduced {
  background: linear-gradient(135deg, #ef4444, #f87171);
  color: white;
}

.properties .property-grid-item .property-details {
  padding: 24px;
}

.properties .property-grid-item .property-details .property-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.properties .property-grid-item .property-details .property-header .property-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.properties .property-grid-item .property-details .property-header .property-price span {
  font-size: 16px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.properties .property-grid-item .property-details .property-header .property-price .old-price {
  font-size: 18px;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-left: 8px;
}

.properties .property-grid-item .property-details .property-header .property-type {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.properties .property-grid-item .property-details .property-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.properties .property-grid-item .property-details .property-address {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.properties .property-grid-item .property-details .property-address i {
  color: var(--accent-color);
  flex-shrink: 0;
}

.properties .property-grid-item .property-details .property-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.properties .property-grid-item .property-details .property-specs .spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--default-color);
}

.properties .property-grid-item .property-details .property-specs .spec-item i {
  color: var(--accent-color);
  font-size: 15px;
}

.properties .property-grid-item .property-details .property-agent-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
  border-radius: 12px;
}

.properties .property-grid-item .property-details .property-agent-info .agent-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.properties .property-grid-item .property-details .property-agent-info .agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.properties .property-grid-item .property-details .property-agent-info .agent-details {
  flex: 1;
}

.properties .property-grid-item .property-details .property-agent-info .agent-details strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 2px;
}

.properties .property-grid-item .property-details .property-agent-info .agent-details span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.properties .property-grid-item .property-details .property-agent-info .agent-contact .contact-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.properties .property-grid-item .property-details .property-agent-info .agent-contact .contact-btn:hover {
  transform: scale(1.1);
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.properties .property-list-item {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  margin-bottom: 24px;
}

.properties .property-list-item:hover {
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 88%);
}

.properties .property-list-item .property-row-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.properties .property-list-item .property-row-link:hover {
  text-decoration: none;
  color: inherit;
}

.properties .property-list-item .property-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 20px;
}

.properties .property-list-item .property-image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.properties .property-list-item .property-image-wrapper:hover img {
  transform: scale(1.05);
}

.properties .property-list-item .property-image-wrapper .property-status {
  position: absolute;
  top: 12px;
  left: 12px;
}

.properties .property-list-item .property-image-wrapper .property-status .status-badge {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  margin-right: 6px;
}

.properties .property-list-item .property-image-wrapper .property-status .status-badge.featured {
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  color: white;
}

.properties .property-list-item .property-image-wrapper .property-status .status-badge.new {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
}

.properties .property-list-item .property-image-wrapper .property-status .status-badge.sale {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0066cc 20%));
  color: white;
}

.properties .property-list-item .property-row-content {
  padding: 20px 20px 20px 0;
}

.properties .property-list-item .property-row-content .property-info .property-header {

  margin-bottom: 8px;
}

.properties .property-list-item .property-row-content .property-info .property-header .property-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.properties .property-list-item .property-row-content .property-info .property-header .property-type-price .property-type {
  display: block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.properties .property-list-item .property-row-content .property-info .property-header .property-type-price .property-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

.properties .property-list-item .property-row-content .property-info .property-header .property-type-price .property-price small {
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.properties .property-list-item .property-row-content .property-info .property-address {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.properties .property-list-item .property-row-content .property-info .property-address i {
  color: var(--accent-color);
}

.properties .property-list-item .property-row-content .property-info .property-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.properties .property-list-item .property-row-content .property-info .property-specs span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--default-color);
}

.properties .property-list-item .property-row-content .property-info .property-specs span i {
  color: var(--accent-color);
  font-size: 15px;
}

.properties .property-list-item .property-row-content .property-agent {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  background-color: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
  border-radius: 8px;
}

.properties .property-list-item .property-row-content .property-agent .agent-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.properties .property-list-item .property-row-content .property-agent span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 500;
}

.properties .property-list-item .property-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.properties .property-list-item .action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.properties .property-list-item .action-buttons .btn {
  padding: 12px 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.properties .property-list-item .action-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.properties .property-list-item .action-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.properties .property-list-item .action-buttons .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.properties .property-list-item .action-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .properties .property-list-item .action-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* TODO Remove
.properties .property-list-item .property-row-content .property-actions .action-buttons {
  display: flex;
  gap: 8px;
}

.properties .property-list-item .property-row-content .property-actions .action-buttons .action-btn {
  padding: 12px 10px;
  border-radius: 8px;
  background-color: transparent;
  color: var(--default-color);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  gap: 4px;
}

.properties .property-list-item .property-row-content .property-actions .action-buttons .action-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.properties .property-list-item .property-row-content .property-actions .action-buttons .action-btn.share-btn:hover {
  border-color: #ef4444;
  color: #ef4444;
}

.properties .property-list-item .property-row-content .property-actions .view-details-btn {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.properties .property-list-item .property-row-content .property-actions .view-details-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}
*/

@media (max-width: 992px) {
  .properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn {
    font-size: 12px;
    padding: 10px 6px;
  }

  .properties .property-list-item .property-row-content .property-info .property-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .properties .property-list-item .property-row-content .property-info .property-header .property-type-price {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .properties .property-list-item .property-row-content .property-info .property-header .property-type-price .property-type {
    margin-bottom: 0;
  }

  .properties .property-list-item .property-row-content .property-info .property-specs {
    gap: 16px;
  }

  .properties .property-list-item .property-row-content .property-actions {
    margin-top: 20px;
    align-items: flex-start;
  }

  .properties .property-list-item .property-row-content .property-actions .action-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .properties .property-list-item .property-row-content .property-actions .view-details-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .properties .search-bar .search-wrapper {
    padding: 20px;
  }

  .properties .search-bar .search-wrapper .search-field .bedroom-quick {
    flex-wrap: wrap;
  }

  .properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn {
    min-width: calc(20% - 3px);
  }

  .properties .results-header .results-controls {
    margin-top: 20px;
  }

  .properties .results-header .results-controls .d-flex {
    justify-content: space-between;
    width: 100%;
  }

  .properties .property-list-item .row {
    flex-direction: column;
  }

  .properties .property-list-item .property-image-wrapper {
    margin: 20px 20px 0 20px;
  }

  .properties .property-list-item .property-row-content {
    padding: 20px;
  }
}

.property-details .property-info .property-header .property-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.property-details .property-info .property-header .property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.property-details .property-info .property-header .property-meta .address {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
}

.property-details .property-info .property-header .property-meta .address i {
  color: var(--accent-color);
  margin-right: 8px;
}

.property-details .property-info .property-header .property-meta .listing-id {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 500;
}

.property-details .property-info .pricing-section {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6a11cb 30%));
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.property-details .property-info .pricing-section .main-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--contrast-color);
  line-height: 1;
  margin-bottom: 10px;
}

.property-details .property-info .pricing-section .main-price .period {
  font-size: 24px;
  font-weight: 400;
  opacity: 0.9;
}

.property-details .property-info .pricing-section .price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.property-details .property-info .pricing-section .price-breakdown span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.property-details .property-info .pricing-section .price-breakdown .available {
  font-weight: 600;
}

.property-details .property-info .quick-stats .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.property-details .property-info .quick-stats .stat-grid .stat-card {
  background: var(--surface-color);
  padding: 20px 15px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.property-details .property-info .quick-stats .stat-grid .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.property-details .property-info .quick-stats .stat-grid .stat-card .stat-icon {
  margin-bottom: 10px;
}

.property-details .property-info .quick-stats .stat-grid .stat-card .stat-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.property-details .property-info .quick-stats .stat-grid .stat-card .stat-number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.property-details .property-info .quick-stats .stat-grid .stat-card .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.property-details .property-details h3 {
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.property-details .property-details p {
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

@media (max-width: 768px) {
  .property-details .property-info .property-header .property-title {
    font-size: 28px;
  }

  .property-details .property-info .property-header .property-meta {
    flex-direction: column;
    gap: 10px;
  }

  .property-details .property-info .pricing-section .main-price {
    font-size: 36px;
  }

  .property-details .property-info .quick-stats .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .property-details .property-info .quick-stats .stat-grid .stat-card {
    padding: 15px 10px;
  }
}

/*-----------------------------------------------
Property Details Page
-----------------------------------------------*/
.property-details .property-gallery .main-image-container {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
}

.property-details .property-gallery .main-image-container .main-property-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  cursor: zoom-in;
}

.property-details .property-gallery .main-image-container .image-zoom-container {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  z-index: 10;
}

@media (max-width: 768px) {
  .property-details .property-gallery .main-image-container .image-zoom-container {
    display: none;
  }
}

.property-details .property-gallery .main-image-container .image-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  backdrop-filter: blur(10px);
}

.property-details .property-gallery .main-image-container .image-nav-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.property-details .property-gallery .main-image-container .image-nav-btn.prev-image {
  left: 15px;
}

.property-details .property-gallery .main-image-container .image-nav-btn.next-image {
  right: 15px;
}

.property-gallery .swiper-slide {
  position: relative;
  overflow: hidden;
}

.property-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-gallery .swiper-button-prev,
.property-gallery .swiper-button-next {
  width: 30px;
  height: 30px;
  background: var(--surface-color);
  border-radius: 6px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 85%);
}

.property-gallery .swiper-button-prev::after,
.property-gallery .swiper-button-next::after {
  font-size: 12px;
  color: var(--default-color);
  font-weight: 700;
}

.property-gallery .swiper-button-prev:hover,
.property-gallery .swiper-button-next:hover {
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 5%);
}

.property-gallery .swiper-pagination-bullet {
  background: var(--surface-color);
  opacity: 0.7;
  width: 8px;
  height: 8px;
}

.property-gallery .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent-color);
}

.property-details .property-description {
  margin-top: 40px;
  padding: 30px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.property-details .property-description h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}

.property-details .property-description p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.property-details .property-amenities {
  margin-top: 40px;
  padding: 30px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.property-details .property-amenities h3 {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
}

.property-details .property-amenities h4 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
}

.property-details .property-amenities .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.property-details .property-amenities .features-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.property-details .property-amenities .features-list li i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 16px;
}

.property-details .property-map {
  margin-top: 40px;
  padding: 30px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.property-details .property-map h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}

.property-details .property-map .map-container {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.property-details .property-map .map-container iframe {
  border-radius: 12px;
}

.property-details .property-map .location-details h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}

.property-details .property-map .location-details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.6;
}

.property-details .property-overview {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  top: 100px;
}

.property-details .property-overview .price-tag {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.property-details .property-overview .property-status {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.property-details .property-overview .property-address {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.property-details .property-overview .property-address h4 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
}

.property-details .property-overview .property-address p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.property-details .property-overview .property-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.property-details .property-overview .property-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.property-details .property-overview .property-stats .stat-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 24px;
}

.property-details .property-overview .property-stats .stat-item .value {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  display: block;
}

.property-details .property-overview .property-stats .stat-item .label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.property-details .property-overview .agent-info {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
  border-radius: 12px;
  border-top: 3px solid var(--accent-color);
}

.property-details .property-overview .agent-info .agent-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.property-details .property-overview .agent-info .agent-details h4 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}

.property-details .property-overview .agent-info .agent-details p {
  margin-bottom: 3px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.property-details .property-overview .agent-info .agent-details p i {
  margin-right: 5px;
  color: var(--accent-color);
}

.property-details .property-overview .agent-info .agent-details .agent-title {
  font-style: italic;
}

.property-details .sidebar-card .action-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.property-details .sidebar-card .action-buttons .btn {
  padding: 12px 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.property-details .sidebar-card .action-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.property-details .sidebar-card .action-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.property-details .sidebar-card .action-buttons .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.property-details .sidebar-card .action-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .property-details .sidebar-card .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .property-details .sidebar-card .action-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .property-details .sidebar-card .action-buttons {
    margin-bottom: 2rem;
  }

  .property-details .property-overview {
    position: static !important;
    top: auto !important;
    margin-top: 30px;
  }

  .property-details .property-overview .property-stats {
    grid-template-columns: 1fr;
  }

  .property-details .property-gallery .main-image-container .main-property-image {
    height: 300px;
  }
}

.property-details .quick-stats .stat-badge i {
  font-size: 15px;
  color: var(--accent-color);
}

.property-details .listing-tabs .nav-tabs {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  gap: 0;
}

.property-details .listing-tabs .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.2s ease;
}

.property-details .listing-tabs .nav-tabs .nav-link:hover {
  color: var(--default-color);
  border-bottom-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.property-details .listing-tabs .nav-tabs .nav-link.active {
  color: var(--heading-color);
  border-bottom-color: var(--accent-color);
  background: transparent;
}

.property-details .listing-tabs .tab-inner {
  padding: 32px 0;
}

.property-details .listing-tabs .tab-inner h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.property-details .listing-tabs .tab-inner h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.property-details .listing-tabs .tab-inner p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 16px;
}

.property-details .listing-tabs .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.property-details .listing-tabs .features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.property-details .listing-tabs .features-list li:last-child {
  border-bottom: none;
}

.property-details .listing-tabs .features-list li i {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 700;
}

.property-details .listing-tabs .map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.property-details .sidebar-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
  top: 100px;
}

.property-details .sidebar-card .divider {
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  margin: 20px 0;
}

.property-details .sidebar-card .listing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.property-details .sidebar-card .listing-header .listing-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  /* color: var(--accent-color); */
  letter-spacing: -0.01em;
}

.property-details .sidebar-card .listing-header .status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.property-details .sidebar-card .listing-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 14px;
}

.property-details .sidebar-card .listing-address i {
  font-size: 18px;
  color: var(--accent-color);
  margin-top: 2px;
}

.property-details .sidebar-card .listing-address .street {
  display: block;
  font-weight: 500;
  color: var(--default-color);
}

.property-details .sidebar-card .listing-address .city {
  display: block;
  font-size: 13px;
}

.property-details .sidebar-card .key-details .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.property-details .sidebar-card .key-details .detail-row:not(:last-child) {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.property-details .sidebar-card .key-details .detail-row .detail-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.property-details .sidebar-card .key-details .detail-row .detail-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.property-details .sidebar-card .agent-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
  border-radius: 12px;
  padding: 16px;
}

.property-details .sidebar-card .agent-card .agent-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.property-details .sidebar-card .agent-card .agent-meta h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.property-details .sidebar-card .agent-card .agent-meta .agent-role {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
}

@media (max-width: 992px) {
  .property-details .sidebar-card {
    position: static !important;
    top: auto !important;
    margin-top: 16px;
  }
}

.property-details .quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.property-details .quick-stats .stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  color: var(--default-color);
}

.property-details .quick-stats .stat-badge i {
  font-size: 15px;
  color: var(--accent-color);
}

.property-details .listing-tabs .nav-tabs {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  gap: 0;
}

.property-details .listing-tabs .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.2s ease;
}

.property-details .listing-tabs .nav-tabs .nav-link:hover {
  color: var(--default-color);
  border-bottom-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.property-details .listing-tabs .nav-tabs .nav-link.active {
  color: var(--heading-color);
  border-bottom-color: var(--accent-color);
  background: transparent;
}

.property-details .listing-tabs .tab-inner {
  padding: 32px 0;
}

.property-details .listing-tabs .tab-inner h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.property-details .listing-tabs .tab-inner h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.property-details .listing-tabs .tab-inner p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 16px;
}

.property-details .listing-tabs .map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.property-details .sidebar-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
  top: 100px;
}

.property-details .sidebar-card .divider {
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  margin: 20px 0;
}

.property-details .sidebar-card .listing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.property-details .sidebar-card .listing-header .listing-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  /* color: var(--accent-color); */
  letter-spacing: -0.01em;
}

.property-details .sidebar-card .listing-header .status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.property-details .sidebar-card .listing-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 14px;
}

.property-details .sidebar-card .listing-address i {
  font-size: 18px;
  color: var(--accent-color);
  margin-top: 2px;
}

.property-details .sidebar-card .listing-address .street {
  display: block;
  font-weight: 500;
  color: var(--default-color);
}

.property-details .sidebar-card .listing-address .city {
  display: block;
  font-size: 13px;
}

.property-details .sidebar-card .key-details .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.property-details .sidebar-card .key-details .detail-row:not(:last-child) {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.property-details .sidebar-card .key-details .detail-row .detail-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.property-details .sidebar-card .key-details .detail-row .detail-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.property-details .sidebar-card .agent-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
  border-radius: 12px;
  padding: 16px;
}

.property-details .sidebar-card .agent-card .agent-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.property-details .sidebar-card .agent-card .agent-meta h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.property-details .sidebar-card .agent-card .agent-meta .agent-role {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
}

.property-details .sidebar-card .agent-card .agent-meta .agent-contact-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.property-details .sidebar-card .agent-card .agent-meta .agent-contact-links a {
  font-size: 13px;
  color: var(--default-color);
  transition: color 0.2s ease;
}

.property-details .sidebar-card .agent-card .agent-meta .agent-contact-links a i {
  color: var(--accent-color);
  margin-right: 6px;
  font-size: 13px;
}

.property-details .sidebar-card .agent-card .agent-meta .agent-contact-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .property-details .sidebar-card {
    position: static !important;
    top: auto !important;
    margin-top: 16px;
  }
}

/*-----------------------------------------------
Privacy Policy Page
-----------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
}

.privacy .privacy-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.privacy .privacy-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.privacy .privacy-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

.privacy .privacy-content {
  font-size: 16px;
  line-height: 1.7;
}

.privacy .privacy-content .last-updated {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent-color);
}

.privacy .privacy-content .last-updated p {
  margin: 0;
  color: var(--heading-color);
}

.privacy .privacy-content {
  margin-bottom: 50px;
}

.privacy .privacy-content h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 15px;
}

.privacy .privacy-content h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.privacy .privacy-content h4 {
  color: var(--heading-color);
  font-size: 22px;
  margin: 30px 0 15px 0;
}

.privacy .privacy-content h5 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.privacy .privacy-content p {
  margin-bottom: 20px;
  color: var(--default-color);
}

.privacy .privacy-content ul,
.privacy .privacy-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.privacy .privacy-content ul li,
.privacy .privacy-content ol li {
  margin-bottom: 10px;
  color: var(--default-color);
}

.privacy .privacy-content .info-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .info-box h4 {
  color: var(--heading-color);
  margin-top: 0;
}

.privacy .privacy-content .highlight-box {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  color: var(--contrast-color);
  margin: 40px 0;
}

.privacy .privacy-content .highlight-box i {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .highlight-box h4 {
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.privacy .privacy-content .highlight-box p {
  color: var(--contrast-color);
  margin: 0;
  opacity: 0.9;
}

.privacy .privacy-content .security-measures {
  margin: 30px 0;
}

.privacy .privacy-content .security-measures .measure-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .security-measures .measure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy .privacy-content .security-measures .measure-item i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .security-measures .measure-item h5 {
  margin-bottom: 15px;
}

.privacy .privacy-content .security-measures .measure-item p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .rights-list {
  margin: 30px 0;
}

.privacy .privacy-content .rights-list .right-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  margin-bottom: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .rights-list .right-item:hover {
  border-color: var(--accent-color);
  transform: translateX(5px);
}

.privacy .privacy-content .rights-list .right-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 20px;
  margin-top: 5px;
  min-width: 24px;
}

.privacy .privacy-content .rights-list .right-item div {
  flex: 1;
}

.privacy .privacy-content .rights-list .right-item div h5 {
  margin-bottom: 10px;
}

.privacy .privacy-content .rights-list .right-item div p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .cookie-types {
  margin: 30px 0;
}

.privacy .privacy-content .cookie-types h4 {
  margin-bottom: 20px;
}

.privacy .privacy-content .cookie-types .table-responsive {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .cookie-types .table-responsive .table {
  margin: 0;
}

.privacy .privacy-content .cookie-types .table-responsive .table thead {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .cookie-types .table-responsive .table thead th {
  border: none;
  color: var(--heading-color);
  font-weight: 600;
  padding: 15px 20px;
}

.privacy .privacy-content .cookie-types .table-responsive .table tbody td {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 15px 20px;
  color: var(--default-color);
}

.privacy .privacy-content .cookie-types .table-responsive .table tbody tr:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.privacy .privacy-content .contact-section {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .contact-section h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
}

.privacy .privacy-content .contact-section h3:after {
  background: var(--accent-color);
}

.privacy .privacy-content .contact-section .contact-info {
  margin-top: 30px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item i {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 15px;
  min-width: 18px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item span {
  color: var(--default-color);
}

@media (max-width: 768px) {
  .privacy .privacy-content {
    font-size: 15px;
  }

  .privacy .privacy-content h3 {
    font-size: 24px;
  }

  .privacy .privacy-content h4 {
    font-size: 20px;
  }

  .privacy .privacy-content .security-measures .row>div {
    margin-bottom: 20px;
  }

  .privacy .privacy-content .rights-list .right-item {
    flex-direction: column;
    text-align: center;
  }

  .privacy .privacy-content .rights-list .right-item i {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/*-----------------------------------------------
Terms Of Service Page
-----------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px; /* border-radius: 30px; */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*-----------------------------------------------
404 Page
-----------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}


.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }
}
