/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4rem;

  /*========== Colors ==========*/
  --hue: 174;
  --sat: 63%;
  --primary-color: hsl(var(--hue), var(--sat), 40%);
  --primary-color-alt: hsl(var(--hue), var(--sat), 36%);
  --primary-color-2: #8bea8b;
  --primary-color-2-alt: #79ea79;
  --accent-color: #79ea79;
  --default-color: hsl(var(--hue), 12%, 15%);
  --text-color: #003366;
  --body-color: hsl(var(--hue), 100%, 99%);
  --background-color: rgb(187, 253, 200);

  /*========== Gradients ==========*/
  --header-gradient: linear-gradient(90deg, var(--background-color), var(--primary-color-2) 100%);
  --sidebar-gradient: linear-gradient(180deg, var(--background-color) 60%, var(--primary-color-2) 100%);
  --footer-gradient: linear-gradient(90deg, var(--background-color), var(--primary-color-2));

  /*========== Font and typography ==========*/
  --body-font: "Open Sans", sans-serif;
  --h1-font-size: 1.5rem;
  --normal-font-size: 0.938rem;
  --tiny-font-size: 0.625rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 9999;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

html, body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  /* height: 100%;
  margin: 0; */
}

.theme-text {
  color: var(--text-color);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

/* a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
} */

/*================== HEADER and HEADER/BOTTOM NAVIGATION ================================*/
.nav_container {
  max-width: 968px;
  margin-left: 1rem;
  margin-right: 1rem;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--header-gradient); /* changed to gradient */
  z-index: var(--z-fixed);
  transition: 0.4s;
  box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.logo {
  max-height: 2.5rem;
  padding: 3px;
}
.search {
  z-index: 10002;
}
.search-icon {
  font-size: 18px;
}
.navigation a {
  text-decoration: none;
}
.navigation {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-color);
}
.navigation-list-toggler-container {
  display: none;
}
#messages-nav-link {
  position: relative;
}
.messages-notification-badge {
  position: absolute;
  top: -2px;
  background-color: rgb(248, 1, 1);
  color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 2px;
  font-size: 9px;
  font-weight: bold;
  text-align: center;
  left: 24px;
}
#notifications-link {
  position: relative;
}
#notifications-icon {
  font-size: 20px;
}
.notifications-badge {
  position: absolute;
  top: -5px;
  background-color: rgb(248, 1, 1);
  color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 2px;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  left: 10px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .navigation-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    display: grid;
    align-content: center;
    transition: 0.4s;
  }
  .navigation-list-toggler-container {
    display: flex;
    justify-content: center;
    padding: 0;
  }
  .navigation-list-toggler {
    background-color: var(--background-color);
    padding: 4px;
    border-radius: 20px 20px 0px 0px;
    font-size: large;
    z-index: 103;
    border-top: 1px solid gray;
    border-left: 1px solid gray;
    border-right: 1px solid gray;
  }
  .navigation-menu .navigation-list {
    background-color: var(--background-color);
    box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
    padding: auto;
  }
}
.navigation-menu .navigation-list {
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navigation-menu .navigation-list a {
  color: inherit;
  text-decoration: none;
}
.navigation-menu .navigation-list span {
  font-weight: normal;
}
.navigation-item {
  padding: 10px;
}
.navigation-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0px;
}
.navigation-name {
  font-size: 10px;
}
@media screen and (max-width: 320px) {
  .navigation-name {
    display: none;
  }
  .navigation-menu .navigation-list {
    padding: 6px;
  }
  .messages-notification-badge {
    left: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .nav_container {
    margin-left: auto;
    margin-right: auto;
  }
}
.pull-bottom-navigation-up {
  display: none;
}
@media screen and (max-width: 768px) {
  .pull-bottom-navigation-up {
    position: fixed;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    font-size: large;
    bottom: 0;
  }
  #pull-bottom-navigation-up-arrow {
    background-color: var(--background-color);
    border-radius: 10px 10px 0px 0px;
    padding: 4px;
    border-top: 1px solid gray;
    border-left: 1px solid gray;
    border-right: 1px solid gray;
    box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
  }
}
/* Auth Buttons Container */
.auth-btns-container {
  display: flex;
  justify-content: center;
  padding: 8px;
  column-gap: 10px;
}
.sign-in-btn,
.sign-up-btn {
  text-decoration: none;
  color: white;
  padding: 5px;
  border-radius: 5px;
  font-size: 11px;
}
.sign-in-btn {
  background-color: rgb(1, 102, 97);
  border:1px solid rgb(1, 102, 97);
}
.sign-up-btn {
  background-color: var(--text-color);
  border:1px solid var(--text-color);
}
/*================ User Action Dropdown Menu ===================*/
.user-action-container {
  display: flex;
  justify-content: center;
  padding: 8px;
}

.user-action {
  background-color: rgb(236, 242, 248);
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgb(199, 196, 196);
  cursor: pointer;
}

.user-action-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 150px;
  background-color: rgb(233, 243, 243);
  padding: 10px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 8px;
  display: none;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-10px);
  border:1px solid gray;
}

.user-action-dropdown-menu.active {
  display: flex;
  flex-direction: column;
  align-items: start;
  opacity: 1;
  transform: translateY(0);
}

.user-action-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 15px;
  width: 10px;
  height: 10px;
  background-color: rgb(233, 243, 243);
  box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.05);
  transform: rotate(45deg);
  border-top:1px solid gray;
  border-left:1px solid gray;
}

.user-action-dropdown-menu h6 {
  font-size: 13px;
  padding: 2px;
}

.user-action-dropdown-menu p {
  font-size: 11px;
  padding: 2px;
  color: gray;
}

.user-action-dropdown-menu ul {
  list-style: none;
  font-size: 12px;
  padding: 0;
}

.user-action-dropdown-menu ul li {
  padding: 6px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.user-action-dropdown-menu ul li:first-child {
  border-top: none;
}

@media screen and (max-width: 768px) {
  .user-action-dropdown-menu h6 {
    font-size: 11px;
  }
  .user-action-dropdown-menu p {
    font-size: 9px;
  }
  .user-action-dropdown-menu ul {
    font-size: 10px;
  }
}
/* Search Modal Section */
.search.modal .modal-content {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search.modal .modal-header {
    border-bottom: none;
    padding: 1.5rem 2rem;
    background-color: #ffffff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.search.modal .modal-body {
    padding: 2rem;
}

.search.modal .form-control-a {
    border-radius: 8px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

.search.modal .form-control-a:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.search.modal .form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.search.modal .btn-get-started {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    background-color: var(--primary-color-2);
}

.search.modal .btn-get-started:hover {
    background-color: var(--primary-color-2-alt);
    transform: translateY(-2px);
}

.search.modal .modal-footer {
    border-top: none;
    padding: 1rem;
    background-color: #ffffff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

@media (max-width: 576px) {
    .search.modal .modal-body {
        padding: 1.5rem;
    }

    .search.modal .form-control-lg {
        font-size: 1rem;
    }

    .search.modal .btn-get-started {
        width: 100%;
        padding: 0.75rem;
    }
}

/* =========================== SIDEBAR ============================= */
#sidebar-nav-toggler {
  cursor: pointer;
}
#sidebar-nav-toggler-icon {
  font-size: 1.5rem;
}
.sidebar-nav-close {
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .sidebar-nav-close {
    display: none;
  }
}
.sidebar {
  position: fixed;
  top: var(--header-height);
  left: -300px;
  width: 300px;
  height: calc(100vh - var(--header-height));
  background: var(--sidebar-gradient); /* changed to gradient */
  transition: left 0.3s ease-in-out;
  z-index: 100000;
  overflow-y: auto;
}
@media screen and (min-width: 1200px) {
  .sidebar {
    left: 0;
  }
  .sidebar:not(.sidebar-expanded) {
    left: -300px;
  }
}
.sidebar-expanded {
  left: 0;
}
@media screen and (max-width: 1199px) {
  .sidebar-expanded {
    left: 0;
  }
}
.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}
.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}
.sidebar a {
  text-decoration: none;
  color: var(--text-color);
}
.sidebar .sidebar-header {
  display: flex;
  position: relative;
  padding: 25px 20px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid gray;
}
.sidebar-logo {
  display: none;
}
@media screen and (max-width: 768px) {
  .sidebar {
    width: 100%;
    left: -100%;
    height: 100vh;
    top: 0;
  }
  .sidebar-expanded {
    left: 0;
  }
  .sidebar-logo {
    max-height: 2.5rem;
    padding: 3px;
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .sidebar-expanded ~ #main,
  .sidebar-expanded ~ #footer {
    margin-left: 300px;
    transition: margin-left 0.3s ease-in-out;
  }

  .sidebar:not(.sidebar-expanded) ~ #main,
  .sidebar:not(.sidebar-expanded) ~ #footer {
    margin-left: 0;
  }
}
@media screen and (max-width: 1199px) {
  #main,
  #footer {
    margin-left: 0;
    transition: margin-left 0.3s ease-in-out;
  }
}
.sidebar-navigation {
  display: flex;
  justify-content: start;
  padding: 10px;
}
.sidebar-navigation .navigation-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  flex-direction: column;
  transition: 0.4s ease;
  background-color: rgb(159, 248, 178);
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgb(218, 216, 216);
}
.sidebar-separator-text {
  padding: 10px;
  color: gray;
}
.sidebar-footer {
  padding: 10px;
}
.sidebar-copyright {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.sidebar-footer-socials {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
/*======================= FOOTER =========================*/
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--footer-gradient); /* changed to gradient */
  padding-bottom: 50px;
  padding-top: 20px;
  color: var(--text-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer-title {
  font-weight: bold;
}
.footer-quick-links {
  display: flex;
  justify-content: space-between;
  list-style: none;
  gap: 6px;
  padding: 5px;
  font-size: 11px;
}
.footer-quick-links a {
  text-decoration: none;
  color: var(--text-color);
}
.footer-socials {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  list-style: none;
  padding: 5px;
}
.footer-socials a {
  text-decoration: none;
  color: var(--text-color);
}
.footer-copyright {
  display: flex;
  justify-content: space-around;
  padding: 5px;
  font-size: 8px;
  font-style: italic;
}
/*--------------------------------------------------------------
 Main
--------------------------------------------------------------*/

#main {
  margin-top: var(--header-height);
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s;
}

.slider {
  position: relative;
  width: 100%;
  margin: 0 auto 1rem;
}

.slider a {
  text-decoration: none;
}

/* Slideshow container */
.slideshow-container {
  width: 100%;
  position: relative;
  height: 400px;
  margin-bottom: 10px;
}
.slider__slide {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider__slide.active {
  display: block;
}

.slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

/* Slider Content */
.slider__content {
  position: absolute;
  bottom: 2rem;
  left: 6rem;
  max-width: 500px;
  background: rgba(0, 0, 0, 0.7);
  padding: 1.5rem;
  border-radius: 8px;
  color: #fff;
}
.slider__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.slider__text {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.slider__cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color-2);
  color: #280202;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s;
}

.slider__cta:hover {
  background: var(--primary-color-2-alt);
}

.slider__slide.active {
  animation: sliderFade 1s ease-in-out;
}

/* Responsive Slide Img and Slideshow Container */
@media screen and (min-width:1000px) {
  .slider__slide img {
    height: 500px;
  }
  .slideshow-container {
    height: 500px;
  }
}
@media (max-width: 600px) {
  .slideshow-container {
    height: 300px;
  }

  .slider__content {
    width:75%;
    left: 3rem;
    bottom: 1rem;
    padding: 1rem;
  }

  .slider__title {
    font-size: 1.2rem;
  }

  .slider__text {
    font-size: 0.9rem;
  }

  .slider__cta {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
@media screen and (max-width:300px) {
  .slider__slide img {
    height: 200px;
  }
  .slideshow-container {
    height: 200px;
  }
}

/* Next & previous buttons */
.slider__prev,
.slider__next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #97f197;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "slider__next button" to the right */
.slider__next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.slider__prev:hover,
.slider__next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.slide-caption-text {
  color: #fffdfd;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* The dots/bullets/indicators */
.slider__dots {
  text-align: center;
  color: black;
  padding: 0.5rem 0;
}

.slider__dot {
  display: inline-block;
  width: 24px;
  height: 6px;
  margin: 0 0.4rem;
  background: #bbb;
  /* border-radius: 50%; */
  cursor: pointer;
  transition: background 0.3s;
}

.slider__dot.active,
.slider__dot:hover {
  background: var(--primary-color);
}

/* Fading animation */
.slider__fade {
  animation-name: sliderFade;
  animation-duration: 1.5s;
}

@keyframes sliderFade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .slider__prev,
  .slider__next,
  .slide-caption-text {
    font-size: 11px;
  }
}

/* Featured Properties Section */
.featured-properties {
  margin-top: 30px;
}

.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-title h2 {
  font-size: var(--h1-font-size);
  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(--primary-color-2);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Card General
--------------------------------------------------------------*/
@media (max-width: 767px) {

  .card-box-a,
  .card-box-b,
  .card-box-c,
  .card-box-d {
    margin-bottom: 2.5rem;
  }
}

.card-box-a span,
.card-box-b span,
.card-box-c span,
.card-box-d span {
  line-height: 0;
}

@media (min-width: 768px) {

  .grid .card-box-a,
  .grid .card-box-b,
  .grid .card-box-c,
  .grid .card-box-d {
    margin-bottom: 2.5rem;
  }
}

.card-box-a,
.card-box-b,
.card-box-d {
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.card-box-a .img-a,
.card-box-a .img-b,
.card-box-b .img-a,
.card-box-b .img-b {
  transition: 0.8s all ease-in-out;
}

@media (min-width: 768px) {

  .card-box-a:hover .img-a,
  .card-box-a:hover .img-b,
  .card-box-b:hover .img-a,
  .card-box-b:hover .img-b {
    transform: scale(1.2);
  }
}

@media (min-width: 768px) {

  .card-box-a .price-a,
  .card-box-b .price-a {
    font-size: 0.9rem;
  }
}

@media (min-width: 992px) {

  .card-box-a .price-a,
  .card-box-b .price-a {
    font-size: 1rem;
  }
}

.card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.card-shadow {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.card-shadow:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.65) 90%);
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}

.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 18px;
}

.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #012970;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .card-title {
  color: #012970;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}

/*======================================
//--//-->   PROPERTY - CARD-A
======================================*/
@media (min-width: 768px) {
  .card-box-a:hover .card-overlay-a-content {
    bottom: 60px;
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .card-box-a:hover .card-overlay-a-content {
    bottom: 60px;
  }
}

@media (min-width: 768px) and (min-width: 992px) {
  .card-box-a:hover .card-overlay-a-content {
    bottom: 64px;
  }
}

@media (min-width: 768px) {
  .card-box-a:hover .card-body-a {
    padding-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .card-box-a .card-overlay-a-content {
    bottom: 65px;
  }

  .card-box-a .card-body-a {
    padding-bottom: 1rem;
  }
}

.card-overlay-a-content {
  transition: all 0.5s ease-in;
  position: absolute;
  width: 100%;
  bottom: 0px;
  z-index: 2;
}

@media (min-width: 768px) {
  .card-overlay-a-content {
    bottom: -20px;
  }
}

@media (min-width: 992px) {
  .card-overlay-a-content {
    bottom: 0px;
  }
}

.card-header-a {
  padding: 0 1rem;
}

.card-header-a .card-title-a {
  color: #ffffff;
  margin-bottom: 0;
  padding-bottom: 0.7rem;
}

@media (min-width: 768px) {
  .card-header-a .card-title-a {
    font-size: 1.3rem;
  }
}

@media (min-width: 992px) {
  .card-header-a .card-title-a {
    font-size: 2rem;
  }
}

.card-header-a .card-title-a a {
  color: #ffffff;
  text-decoration: none;
}

.card-body-a {
  z-index: 2;
  transition: all 0.5s ease-in;
  padding: 0rem 1rem 2rem 1rem;
}

.card-body-a .price-box {
  padding-bottom: 0.5rem;
}

.price-a {
  color: #ffffff;
  padding: 0.6rem 0.8rem;
  border: 2px solid #2eca6a;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.price-b {
  color: #000000;
  padding: 0.6rem 0.8rem;
  border: 2px solid #2eca6a;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.card-footer-a {
  width: 100%;
  position: absolute;
  z-index: 2;
  background-color: #e7fad2;
  font-weight: bold;
}

.card-info {
  list-style: none;
  margin-bottom: 0;
  padding: 1rem 0;
}

.card-info .card-info-title {
  font-size: 1rem;
  color: #313131;
}

@media (min-width: 768px) {
  .card-info .card-info-title {
    font-size: 0.9rem;
  }
}

@media (min-width: 992px) {
  .card-info .card-info-title {
    font-size: 1rem;
  }
}

.card-info li span {
  color: #ffffff;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .card-info li span {
    font-size: 0.8rem;
  }
}

@media (min-width: 992px) {
  .card-info li span {
    font-size: 1rem;
  }
}

.link-a {
  text-decoration: none;
  color: #ffffff;
  text-decoration: none;
}

@media (min-width: 768px) {
  .link-a {
    font-size: 0.9rem;
  }
}

@media (min-width: 992px) {
  .link-a {
    font-size: 1rem;
  }
}

.link-a:hover {
  color: #ffffff;
  text-decoration: none;
}

.link-a span {
  font-size: 18px;
  vertical-align: middle;
  margin-left: 5px;
}

@media (min-width: 768px) {
  .link-a span {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .link-a span {
    font-size: 18px;
  }
}

/*------/ Intro Single /------*/
.intro-single {
  padding: 12rem 0 3rem;
}

@media (max-width: 767px) {
  .intro-single {
    padding-top: 9rem;
  }
}

.intro-single .title-single-box {
  padding: 1rem 0 1rem 2rem;
}

.intro-single .title-single-box {
  border-left: 3px solid #2eca6a;
}

.intro-single .title-single-box .title-single {
  font-weight: 600;
  font-size: 2.2rem;
}

@media (min-width: 768px) {
  .intro-single .title-single-box .title-single {
    font-size: 2.1rem;
  }
}

@media (min-width: 992px) {
  .intro-single .title-single-box .title-single {
    font-size: 2.5rem;
  }
}

.intro-single .breadcrumb-box {
  padding: 1rem 0 0 0.5rem;
}

.intro-single .breadcrumb {
  background-color: transparent;
  padding-right: 0;
  padding-left: 0;
}

/*------/ Property Grid /-----*/
.property-grid .grid-option {
    text-align: left;
    margin-bottom: 2rem;
}

.property-grid .grid-option .custom-select {
    border-radius: 0;
    
    border-color: #d1bebe;
    padding: 8px;
}

.property-grid .grid-option .custom-select:hover,
.property-grid .grid-option .custom-select:active,
.property-grid .grid-option .custom-select:focus {
    border-color: #d1bebe;
}

.property-grid .grid-option .custom-select option {
    border-color: #d1bebe;
}

.img-box-a img {
  height: 300px;
  width: 100%;
}

@media (min-width: 768px) {

    .grid .card-box-a,
    .grid .card-box-b,
    .grid .card-box-c,
    .grid .card-box-d {
        margin-bottom: 2.5rem;
    }
}
.property-details {
  margin-bottom: 20px;
}

/* Search Bar Section */
.search-section {
  background: var(--background-color);
  max-width: 1200px;
  margin: 0 auto;
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.search-input,
.search-select {
  padding: 0.75rem;
  border: 1px solid var(--text-color);
  border-radius: 5px;
  font-size: var(--normal-font-size);
  flex: 1;
  min-width: 200px;
}

.search-button {
  padding: 0.75rem 1.5rem;
  background: var(--primary-color-2);
  color: #280202;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.search-button:hover {
  background: var(--primary-color-2-alt);
}

/* Testimonials Section */
.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--background-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px hsla(var(--hue), var(--sat), 15%, 0.15);
  text-align: center;
}

.testimonial-card p {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-card h4 {
  font-size: 1.1rem;
  color: var(--default-color);
  margin-bottom: 0.5rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: gray;
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  background-color: white;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}

.featured-services .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4 a {
  color: var(--text-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
  color: var(--text-color);
}

.featured-services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

/* Call-to-Action Section */
.cta-section {
  padding: 2rem 1rem;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: var(--normal-font-size);
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 0.75rem 1.5rem;
  background: var(--primary-color-2);
  color: #280202;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s;
}

.cta-button:hover {
  background: var(--primary-color-2-alt);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .section-title h2 {
    font-size: 1.2rem;
  }

  .property-card img,
  .location-card img {
    height: 150px;
  }

  .property-info h3,
  .location-card h3 {
    font-size: 1rem;
  }

  .property-info p,
  .testimonial-card p,
  .cta-section p {
    font-size: 0.9rem;
  }

  .property-cta,
  .section-cta,
  .search-button,
  .cta-button,
  .location-cta {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .search-input,
  .search-select {
    min-width: 150px;
  }
}

@media (max-width: 300px) {
  .property-card img,
  .location-card img {
    height: 120px;
  }

  .section-title h2 {
    font-size: 1rem;
  }
}

/* AOS Animation Adjustments */
[data-aos] {
  transition-duration: 0.8s;
}

/* Page Title and Breadcrumbs */
.page-title {
  background: var(--body-color);
  padding: 1rem 0;
}

.breadcrumb {
  font-size: var(--normal-font-size);
  color: var(--text-color);
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  font-size: medium;
}

.breadcrumb-item.active {
  color: var(--text-color);
}

/* Auth Section */
.auth-section {
  padding: 2rem 0;
  background: var(--body-color);
}

/* Auth Form */
.auth-form {
  background: var(--background-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px hsla(var(--hue), var(--sat), 15%, 0.15);
}

.auth-form h3 {
  font-size: 1.25rem;
  color: var(--default-color);
  margin-bottom: 0.5rem;
}

.auth-form p {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.form-input-text {
  font-size: var(--normal-font-size);
  background: var(--body-color);
  border-color: var(--text-color);
}

.form-input-text:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem hsla(var(--hue), var(--sat), 40%, 0.25);
}

.input-group-text.password-append {
  background: var(--body-color);
  border-color: var(--text-color);
  cursor: pointer;
}

.password-toggle-icon {
  color: var(--text-color);
}

.password-toggle-icon:hover {
  color: var(--primary-color);
}

.location-button {
  background: rgb(96, 118, 243);
  color: #ffffff;
  border: none;
  font-weight: 500;
  transition: background 0.3s;
  padding: 8px;
}

.location-button:hover {
  background: rgb(83, 107, 243);
  color: #ffffff;
}

.auth-button {
  background: var(--primary-color-2);
  color: #280202;
  border: none;
  font-weight: 500;
  transition: background 0.3s;
  width: 100%;
  padding: 0.75rem;
}

.auth-button:hover {
  background: var(--primary-color-2-alt);
}

.alert-success,
.alert-warning {
  font-size: var(--normal-font-size);
}

.auth-form .text-muted a {
  color: var(--primary-color);
}

.auth-form .text-muted a:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .auth-form {
    padding: 1.5rem;
  }

  .section-title h2 {
    font-size: 1.2rem;
  }

  .section-title p,
  .auth-form p,
  .form-input-text,
  .auth-button,
  .alert-success,
  .alert-warning {
    font-size: 0.9rem;
  }

  .auth-form h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 300px) {
  .auth-form {
    padding: 1rem;
  }

  .section-title h2 {
    font-size: 1rem;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #defccd;
  z-index: 100001;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Hide animation */
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Logo pulse animation */
.pulse-logo {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.08); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/* Cookies */
.cookie-consent-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 9999;
    max-width: 500px;
    font-family: 'Inter', sans-serif;
    display: none;
}
.cookie-consent-popup.show {
    display: block;
}
.cookie-consent-popup h4 {
    color: #003366;
    margin-bottom: 15px;
}
.cookie-consent-popup p {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}
.cookie-consent-popup .btn {
    margin: 5px;
}
.cookie-consent-popup .btn-primary {
    background-color: #50b7f5;
    border-color: #50b7f5;
}
.cookie-consent-popup .btn-primary:hover {
    background-color: #3a8cc2;
    border-color: #3a8cc2;
}
.cookie-consent-popup .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}
.cookie-consent-popup .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #5a6268;
}
.cookie-consent-popup .form-check-label {
    color: #333;
}
.cookie-consent-popup .form-check-input:disabled ~ .form-check-label {
    color: #6c757d;
}
.error-message {
    display: none;
}
.error-message.show {
    display: block;
}