/* Base css start */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ol,
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style-type: none;
}

a,
button {
  transition: all 0.3s;
  color: inherit;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
b,
strong {
  font-weight: 700;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-inline: 20px;
}
body {
  font-family: "Gotham";
  font-weight: 300;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.5px;
  color: #333;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  text-transform: uppercase;
  color: #221c35;
  margin-bottom: 0;
}
h1 {
  font-size: 4vw;
  line-height: 1.2;
}
h2 {
  font-size: 3.2vw;
  line-height: 1.2;
}
h3 {
  font-size: 45px;
  line-height: 1.2;
}
h4 {
  font-size: 22px;
  line-height: 1.2;
}
p {
  margin-bottom: 0;
}

.theme-btn {
  color: #fff;
  text-align: center;
  display: inline-flex;
  white-space: normal;
  word-break: break-word;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 1px;
  padding-inline: 30px;
  border-radius: 100px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 0;
  background-color: #080808;
  gap: 8px;
  transition: all 0.15s ease-in-out;
  position: relative;
  z-index: 1;
  background-image: linear-gradient(120deg, #221c35 0%, #5f4b8b 100%);
  text-transform: uppercase;
}
.theme-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, #5f4b8b 0%, #221c35 100%);
  border-radius: inherit;
  z-index: -1;
  transition: opacity 0.25s linear;
  opacity: 0;
}
.theme-btn:hover {
  color: #fff;
  background-color: transparent;
}
.theme-btn:hover::before {
  opacity: 1;
}
.theme-btn.theme-btn--sm {
  font-size: 13px;
  height: 42px;
  padding-inline: 24px;
}
.theme-btn--outline {
  color: #000;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.theme-btn--outline:hover {
  border-color: #221c35;
}
.theme-btn--white {
  background: #fff;
  color: #221c35;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.theme-btn--white:hover {
  border-color: #221c35;
}
.theme-btn--black {
  background: #080808;
}
.theme-btn--black::before {
  display: none;
}
.theme-btn--black:hover {
  background: rgba(8, 8, 8, 0.7);
}

.theme-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.7);
}

/* slick slider start */
.slick-slider .slick-track,
.slick-slider .slick-list {
  height: 100%;
}
.slick-arrow {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  min-width: 50px;
  line-height: 0;
  font-size: 0;
  background-color: #000;
  border-radius: 50%;
  top: 50%;
  margin-top: -35px;
  border: 1px solid #fff;
  z-index: 10;
  transition: all 0.5s ease;
  color: #fff;
}
.slick-arrow:hover {
  border-color: #000;
  outline: none;
}
.slick-arrow::before {
  font-size: 24px;
  color: #fff;
  font-family: "Font Awesome 6 Pro";
}
.slick-prev::before {
  content: "\f104";
}
.slick-next::before {
  content: "\f105";
}
.services__slider .slick-prev {
  left: 14.5vw;
}
.services__slider .slick-next {
  right: 14.5vw;
}
/* slick slider end */

.link-text {
  text-decoration: underline;
}
.link-text:hover {
  text-decoration: unset;
}

.section__header {
  width: 90%;
  max-width: 1100px;
}
.section__header-desc {
  padding-inline: 15%;
}
/* Base css end */

/* theme-card style start */
.theme-card {
  height: 400px;
  padding: 5rem 2rem 1.5rem;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
}
.theme-card__title {
  font-size: 30px;
}
.theme-card__desc {
  font-size: 16px;
}
.theme-card::before {
  content: "";
  position: absolute;
  width: 98%;
  height: 98%;
  top: 1%;
  bottom: unset;
  left: 1%;
  right: unset;
  border: 4px double white;
  z-index: -1;
}
.theme-card::after {
  content: "";
  width: 100%;
  height: 70%;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  z-index: -2;
}
/* theme-card style end */

/* header section start */
.header {
  padding: 25px;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 50;
}
.header__logo img {
  height: auto;
}
.header__menu {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  gap: 35px;
  font-size: 13px;
}
.header__link {
  padding: 5px 0 7px;
  color: white;
  letter-spacing: 0.5px;
}
.header__link::before {
  content: "";
  position: absolute;
  top: unset;
  bottom: -1px;
  left: 0;
  right: unset;
  width: 100%;
  height: 1px;
  background-color: white;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.header__link:hover::before {
  opacity: 1;
}
.header__actions {
  gap: 16px;
}
.header__action-btn {
  min-width: 134px;
}
.header__actions .theme-btn--outline:not(:hover) {
  border-color: rgba(255, 255, 255, 0.25);
}

/* megamenu start */
.megamenu {
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  transition-delay: 1s;
}
.megamenu__main {
  background-image: url(https://assets.agentfire3.com/uploads/sites/1832/2024/09/Seagulls-at-sunrise-in-Jacksonville-Beach-FL-1.jpg);
  background-size: cover;
  background-position: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}
.megamenu__main::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: unset;
  left: unset;
  right: 0;
  width: 70%;
  height: 100%;
  background-image: -webkit-linear-gradient(305deg, #221c35 15%, #000 50%);
  background-image: linear-gradient(145deg, #221c35 15%, #000 50%);
  z-index: -1;
}
.megamenu__header {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transform: translate3d(0, -100%, 0);
  opacity: 0;
  transition: opacity 0.6s, transform 0.8s;
}
.megamenu__logo img {
  width: 250px;
}
.megamenu__close-btn {
  height: 48px;
  padding-inline: 20px;
}
.megamenu__col {
  max-width: 60%;
  flex: 0 0 60%;
  transform: translate3d(0, -100%, 0);
  opacity: 0;
  transition: opacity 0.6s, transform 0.8s;
}
.megamenu__body {
  padding-top: 2rem;
}
.megamenu__divider {
  width: 185px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 0.6rem 0 2rem;
}
.megamenu__menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
}
.megamenu__menu-widget h4 {
  font-size: 18px;
}
.megamenu__menu-widget ul {
  margin-top: 0.7rem;
}
.megamenu__menu-widget ul li {
  font-size: 16px;
  line-height: 1.6;
}
.megamenu__menu-widget ul li a {
  opacity: 0.7;
  transition: opacity 0.15s linear;
}
.megamenu__menu-widget ul li a:hover {
  opacity: 1;
}
.megamenu__contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  gap: 1rem;
}
.megamenu__phone a {
  font-size: 18px;
  opacity: 0.7;
}
.megamenu__phone a:hover {
  opacity: 1;
}
.megamenu.show {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.megamenu.show .megamenu__header,
.megamenu.show .megamenu__col {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
/* megamenu end */

/* header section end */

/* secondary nav start */

.nav {
  background-image: linear-gradient(145deg, #221c35 15%, #000 50%);
  padding: 10px;
}
.nav__profile-img::after {
  display: none;
}
.nav__profile-img {
  width: 54px;
  height: 54px;
}
.nav__neighborhood-input {
  height: 54px;
  background-color: transparent;
  border: 0;
  padding: 0 32px 0 16px;
  color: #fff;
  text-transform: uppercase;
  min-width: 0;
  cursor: pointer;
}
.nav__neighborhood-input:focus {
  outline: 1px dotted #e5e5e5;
}
.nav__neighborhood-chevron {
  font-size: 20px;
  line-height: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -10px;
  pointer-events: none;
  color: #fff;
}
.nav__neighborhood-select {
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.035);
  color: white;
  max-height: 50vh;
  overflow: auto;
}
.nav__neighborhood-select ul li {
  font-size: 16px;
  padding: 2px 12px;
  cursor: pointer;
}
.nav__links {
  flex: 1;
  padding-inline: 12px;
}
.nav__link {
  color: #fff;
  font-size: 1.05rem;
  text-transform: capitalize;
  letter-spacing: 0.02rem;
  padding: 6px 12px;
}
.nav__link:hover {
  opacity: 0.75;
}
.nav__neighborhood {
  min-width: 0;
}
/* secondary nav end */

/* hero section start */
.hero {
  padding: 10rem 0 6rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.hero__content {
  width: 90%;
  max-width: 1100px;
}
.hero__content-header {
  margin-bottom: 3rem;
}
.hero__slide-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-position: center;
}
.hero__desc {
  padding-inline: 3rem;
}
.hero--style-2 {
  min-height: 85vh;
}
.hero--style-2-sm {
  min-height: 65vh;
}
.hero--style-2-xs {
  min-height: 45vh;
}
.hero--style-2::after {
  background-color: rgba(0, 0, 0, 0.75);
}
.hero--style-2 .hero__content {
  max-width: 1055px;
}
.hero--relocate-to-florida .hero__content {
  max-width: 800px;
}
.hero--about .hero__content {
  max-width: 950px;
}

.hero--blog {
  min-height: 70vh;
}
.hero--find-dream-home .hero__content {
  max-width: 1100px;
}
/* hero section end */

/* about section start */

.about {
  padding-top: 4rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.about__header {
  max-width: 72%;
}
.about__title {
  font-size: 80px;
}
.about__left {
  max-width: 55%;
  flex: 0 0 55%;
  padding: 0 8vw 0 2vw;
  background-image: url("../img/bg/about-bg.jpg");
  background-size: cover;
  background-position: center;
}
.about__thumb {
  margin-top: -15vw;
}
.about .theme-overlay {
  background: linear-gradient(to right, #000000 0%, rgba(95, 75, 139, 0.8) 100%);
}
.about__right {
  max-width: 45%;
  flex: 0 0 45%;
}
.about__content {
  max-width: 780px;
  padding: 3vw 5vw;
}
.about__desc p {
  font-size: 19px;
  margin-bottom: 14px;
}
.about__desc {
  margin-bottom: 3rem;
}

.about--style-2 {
  padding-block: 6rem;
  background-color: #f7f7ff;
}
.about--style-2::before {
  content: "";
  position: absolute;
  background-image: linear-gradient(180deg, #221c35 20%, #000 80%);
  width: 38%;
  height: 100%;
  top: 0;
  right: 0;
}
.about--style-2 .about__container {
  width: 90%;
  max-width: 1600px;
}
.about--style-2 .about__wrapper {
  margin-inline: -50px;
}
.about--style-2 .about__left {
  max-width: 50%;
  flex: 0 0 50%;
  background-image: unset;
  padding: 0 50px;
}
.about--style-2 .about__thumb {
  margin-top: 0;
  height: 600px;
  border: 5px solid #fff;
}
.about--style-2 .about__content {
  padding: 0;
}
.about--style-2 .about__right {
  max-width: 50%;
  flex: 0 0 50%;
  padding-inline: 50px;
}
/* .about--style-2 h2 {
  font-size: 3.4rem;
} */
.about--style-2 .about__desc p {
  font-size: inherit;
}

.about--relocation::before,
.about--career::before {
  right: auto;
  left: 0;
}
.about--relocation .about__left {
  max-width: 55%;
  flex: 0 0 55%;
}
.about--relocation .about__right {
  max-width: 45%;
  flex: 0 0 45%;
}

.about--style-3::before {
  background-image: unset;
  background-color: #fff;
  width: 70%;
}
.about--style-3 .theme-overlay {
  background-image: unset;
  background-color: rgba(0, 0, 0, 0.75);
}
.about--style-3 .about__container {
  max-width: 1400px;
}
.about--style-3 .about__left {
  max-width: 40%;
  flex: 0 0 40%;
}
.about--style-3 .about__thumb {
  max-width: 480px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}
.about--style-3 .about__right {
  max-width: 60%;
  flex: 0 0 60%;
}
.about--style-3 .about__content {
  max-width: 670px;
}
.about-rank {
  width: 90%;
  max-width: 1200px;
  margin-bottom: 4rem;
}
/* about section end */

/* services section start */
.services {
  background-color: #000;
  padding-block: 7rem;
}
.services__slider .slick-list {
  padding: 0px 25vw 0px 25vw !important;
  overflow: visible;
}
.services__slide {
  padding: 0px 5vw;
  height: auto;
  transform: scale(0.85) !important;
  opacity: 0.8 !important;
  transition: all 0.8s ease !important;
}
.services__slide.slick-current {
  transform: scale(1) !important;
  opacity: 1 !important;
}
.services__slide-content-inner {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10vw 5vw;
  height: 35vw;
  max-height: 580px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgb(34, 28, 53));
}
.services__slide h2 {
  transition: all 0.5s ease-in-out;
  position: absolute;
  display: block;
  width: 115%;
  z-index: 3;
  opacity: 0;
  font-size: 4.6vw;
  line-height: 1.1;
  color: #fff;
}
.services__slide.slick-current h2 {
  opacity: 0.8;
}
.services__slide.slick-current:hover h2 {
  transform: scale(1.05);
  transition: all 0.3s ease;
  opacity: 1;
}
.services__slide p {
  position: absolute;
  bottom: 25px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  font-style: italic;
  opacity: 0;
}
.services__slide.slick-current p {
  opacity: 1;
}
/* services section end */

/* brands section start */
.brands {
  padding-block: 5rem;
}
.brands__header {
  margin-bottom: 4rem;
}
.brands__wrapper {
  width: 90%;
  max-width: 1119px;
}
.brands__slider .slick-list {
  margin-inline: -50px;
}
.brands__slide {
  padding-inline: 50px;
  height: 65px;
}
.brands__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* brands section end */

/* testimonial section start */
.testimonial {
  padding: 6rem 0 4rem;
}
.testimonial::after {
  content: "";
  position: absolute;
  background-image: url("../img/icons/quote2.png");
  background-repeat: repeat;
  background-color: transparent;
  background-size: cover;
  width: 9vw;
  height: 9vw;
  opacity: 0.1;
  top: unset;
  bottom: 1vw;
  left: unset;
  right: 1vw;
}
.testimonial::before {
  content: "";
  position: absolute;
  background-image: url("../img/icons/quote.png");
  background-repeat: repeat;
  background-color: transparent;
  background-size: cover;
  width: 9vw;
  height: 9vw;
  opacity: 0.1;
  top: 1vw;
  bottom: unset;
  left: 1vw;
  right: unset;
}
.testimonial__header {
  width: 90%;
  max-width: 950px;
}
.testimonial__slider {
  margin-top: 4rem;
}
.testimonial__slider .slick-list {
  padding: 0px 10vw !important;
  margin: 0 -25px;
}
.testimonial__slider .slick-track {
  display: flex;
}
.testimonial__slide {
  padding: 0px 2vw;
  height: auto;
}
.testimonial__review {
  padding: 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial__review-body {
  font-size: 20px;
  line-height: 2.0;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.testimonial__review-footer {
  margin-top: 10px;
  gap: 12px;
}
.testimonial__review-user-photo {
  width: 50px;
  height: 50px;
}
.testimonial__review-user-name {
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}
.testimonial__review-user-location {
  font-size: 13px;
  line-height: 1;
}
.testimonial__review-text a {
  font-size: 100%;
  font-weight: 700;
  color: #221c35;
}
.testimonial__review-text a:hover {
  text-decoration: underline;
}
.testimonial__slider .slick-prev {
  left: 6vw;
}
.testimonial__slider .slick-next {
  right: 6vw;
}
/* testimonial section end */

/* app-download section start */
.app-download {
  background-color: #f2f2f2;
  padding-block: 6rem;
}
.app-download__container {
  width: 90%;
  max-width: 1300px;
}
.app-download__wrapper {
  margin-inline: -40px;
}
.app-download__left {
  max-width: 40%;
  flex: 0 0 40%;
  padding-inline: 40px;
}
.app-download__right {
  max-width: 60%;
  flex: 0 0 60%;
  padding-inline: 40px;
}
.app-download__content h3 {
  color: #5f4b8b;
  margin-bottom: 10px;
}
.app-download__content {
  padding-right: 2em;
}
.app-download__desc {
  margin: 1.5rem 0 2rem;
}
.app-download__btns {
  margin: 5px;
  gap: 16px;
}
.app-download__btn img {
  width: 150px;
}
/* app-download section end */

/* footer section start */
.footer__top {
  background-image: url("../img/bg/Footer-Banner-01.png");
  background-size: cover;
  background-position: center;
  min-height: 65vh;
  padding-block: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer__container {
  width: 90%;
  max-width: 1600px;
}
.footer__top-content {
  max-width: 780px;
  padding: 3rem;
}
.footer__top-desc {
  margin: 1.5rem 0 2rem;
}
.footer__top .theme-overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%);
}
.footer__bottom {
  padding-block: 4rem 5rem;
  border: 10px solid #fff;
}
.footer__logo img {
  width: 300px;
}
.social-icon {
  color: white;
  text-align: center;
  width: 50px;
  height: 50px;
  margin: 4px;
  transition: all 0.5s;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  border: 1px solid #5f4b8b;
}
.social-icon:hover {
  background-color: #5f4b8b;
}
.social-icon--dark {
  color: #221c35;
}
.social-icon--dark:hover {
  color: #fff;
}
.social-icon__label {
  color: #221c35;
  position: absolute;
  bottom: 0;
  left: -20px;
  right: -25px;
  padding: 5px 7px;
  z-index: -1;
  font-size: 14px;
  border-radius: 2px;
  background-color: #f7f7f7;
  visibility: hidden;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  line-height: 1;
}
.social-icon__label::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #f7f7f7;
  position: absolute;
  bottom: -5px;
  left: 40px;
}
.social-icon:hover .social-icon__label {
  bottom: 60px;
  visibility: visible;
  opacity: 1;
  z-index: 3;
}
.footer__widgets {
  padding-block: 3rem;
  margin: -20px -15px 0;
}
.footer__widget {
  max-width: 18%;
  flex: 0 0 18%;
  padding: 20px 15px 0;
}
.footer__widget-divider {
  height: 2rem;
  width: 40px;
}
.footer__widget-divider::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #5f4b8b;
}
.footer__menu li {
  font-size: 15px;
  line-height: 1.6;
}
.footer__menu-link {
  padding: 3px;
}
.footer__menu-link:hover {
  color: rgba(255, 255, 255, 0.75);
}
.footer__widget:last-child {
  max-width: 28%;
  flex: 0 0 28%;
}
.footer__widget:last-child .footer__widget-title {
  font-size: 50px;
}
.footer__widget .link-text {
  font-size: 22px;
}
.footer__meta {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__meta .footer__menu-link {
  font-size: 13px;
  letter-spacing: 1px;
  padding: 5px;
  text-transform: uppercase;
}
/* footer section end */

/* quick search start */
.quick-search {
  background: linear-gradient(145deg, #221c35 15%, #000 50%);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.quick-search__wrapper {
  margin: -15px -7.5px 0;
}
.quick-search__left {
  max-width: 60%;
  flex: 0 0 60%;
  padding: 15px 7.5px 0;
}
.quick-search__right {
  max-width: 40%;
  flex: 0 0 40%;
  padding: 15px 7.5px 0;
}
.quick-search__actions {
  gap: 45px;
}
.quick-search__action-btn {
  gap: 16px;
  color: #fff;
  opacity: 0.75;
  transition: 0.2s;
  padding: 0.5rem 1rem;
}
.quick-search__action-btn:hover {
  opacity: 1;
}
.quick-search__action-btn svg {
  padding-right: 12px;
  border-right: 1px solid currentColor;
  fill: currentColor;
}
.quick-search__action-btn::after {
  display: none;
}
.quick-search__action-btn span.small {
  font-size: 12px;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.quick-search__action-btn span.big {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 700;
}
.quick-search__action-btn span.big i {
  margin-left: 10px;
}
.quick-search__searchbar-btn {
  height: 52px;
  min-width: 140px;
}
.quick-search__searchbar-input {
  height: 52px;
  border: 0;
  padding-inline: 10px;
  color: #222222;
}
.quick-search__searchbar-input::placeholder {
  color: #222222;
}
.quick-search__searchbar-input:focus {
  outline: none;
}
.quick-search__dropdown-menu {
  min-width: 660px;
  padding: 15px;
  background: linear-gradient(145deg, #221c35 15%, #000 50%);
  max-width: 660px;
}
.quick-search__dropdown-menu.show {
  display: flex;
  flex-wrap: wrap;
}
.quick-search__dropdown-menu .dropdown-item {
  width: 33.333%;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  padding: 5px;
}
.quick-search__dropdown-menu .dropdown-item:hover {
  color: #acacac;
  background-color: transparent;
}
/* quick search end */

/* evaluation section start */
.evaluation {
  padding-block: 6rem;
  background-image: url("../img/bg/Interior-Desing-drone-views-and-twilight-shoots-1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.evaluation__wrapper {
  width: 90%;
}
.evaluation__content {
  max-width: 700px;
  padding: 4rem;
  background-image: linear-gradient(180deg, #221c35 20%, #000 80%);
}
.evaluation__desc {
  margin-block: 2rem 3rem;
}
/* evaluation section end */

/* support section start */

.support {
  padding-block: 6rem;
}
.support__container {
  width: 90%;
  max-width: 1500px;
  margin-top: 5rem;
}
.support__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.support__item {
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.support__item:first-child {
  border: none;
}
.support__item:nth-child(2) {
  border-block: 0;
}
.support__item:nth-child(3) {
  border: none;
}
.support__item:nth-child(4) {
  border-inline: none;
  border-bottom: none;
}
.support__item:nth-child(5) {
  border-bottom: none;
}
.support__item:last-child {
  border-inline: none;
  border-bottom: none;
}
.support__icon img {
  width: 80px;
}
.support__title {
  margin-block: 20px 10px;
}

.support--find-dream-home {
  padding-bottom: 12rem;
}
.support--find-dream-home .support__item {
  padding: 1rem 2rem;
  grid-column: span 4;
}
.support--find-dream-home .support__items {
  grid-template-columns: repeat(12, 1fr);
}
.support--find-dream-home .support__item--col-6 {
  grid-column: span 6;
  padding: 2rem 4vw 1rem;
}
.support--find-dream-home .support__item:last-child {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
/* support section end */

/* features section start */
.features {
  padding-block: 6rem 12rem;
}
.features .section__header {
  max-width: 850px;
}
.features .section__header-desc {
  padding-inline: 5%;
}
.features__wrapper {
  width: 90%;
  max-width: 1500px;
  margin-top: 5rem;
}
.features__wrapper .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}
/* features section end */

/* contact section start */
.contact {
  background-image: url("../img/bg/hero-bg-4.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding-bottom: 6rem;
}

.contact__container {
  width: 90%;
  max-width: 1000px;
}
.form {
  background-image: linear-gradient(145deg, #221c35 30%, #000 80%);
  padding: 3rem;
  transform: translateY(-6rem);
  margin-bottom: -6rem;
}
.form__title {
  font-size: 3.2rem;
}
.form__body {
  gap: 20px;
}
.form__widget-title {
  margin-bottom: 20px;
}
.form__input-field {
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background-color: transparent;
  padding-inline: 10px;
  font-size: 16px;
}
.form__input-field::placeholder {
  color: #fff;
}
form__input-field--textarea {
  height: 100px;
}
.form__input-field--textarea {
  height: 100px;
  max-height: 100px;
  padding: 10px;
  overflow: auto;
  resize: vertical;
}
.form__widget-title--sm {
  font-size: 15px;
}
.form__input-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 3%;
}
.form__input-note {
  font-size: 15px;
  margin-top: 10px;
}
.form__input--fluid {
  grid-column: 1 / 3;
}
.form__footer {
  margin-top: 16px;
}
.form__checkbox {
  font-size: 11px;
}
.form__disclaimer {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}
.form__checkbox label a {
  color: #fff;
}
.form__submit-btn {
  min-width: 200px;
}

.contact--style-2 {
  background-color: #fff;
  background-image: unset;
  padding-block: 6rem;
}
.contact--style-2 .contact__container {
  max-width: 1600px;
}
.contact__wrapper {
  margin-inline: -50px;
  row-gap: 50px;
}
.contact__left {
  max-width: 55%;
  flex: 0 0 55%;
  padding-inline: 50px;
}
.contact__right {
  max-width: 45%;
  flex: 0 0 45%;
  padding-inline: 50px;
}
.contact--style-2 .contact__form {
  margin: 0;
  transform: unset;
  padding: 2rem;
}
.contact__info {
  gap: 3rem;
}
.contact__info-item a {
  font-size: 20px;
  text-decoration: none;
}
.contact__info-item a:hover {
  text-decoration: underline;
}
.contact__social p {
  font-size: 24px;
  margin-bottom: 10px;
}
.contact--style-2 .form__input-list {
  gap: 16px 20px;
}
.contact__text {
  margin: 40px 15% 0 0;
}
/* contact section end */

/* blog section start */

.blog {
  padding-block: 5em;
}
.blog__container {
  max-width: 1600px;
  width: 90%;
  gap: 60px;
  grid-template-columns: minmax(100px, 3fr) minmax(100px, 1fr);
  grid-template-areas: "main sidebar";
}
.blog__items {
  grid-area: main;
  grid-template-columns: repeat(3, minmax(8rem, 1fr));
  gap: 30px;
}
.blog__sidebar {
  grid-area: sidebar;
}
.blog__card {
  background-image: linear-gradient(145deg, #000 30%, #221c35 80%);
  box-shadow: 0 0 25px 0 rgba(41, 43, 44, 0.15);
  transition: all 0.4s ease;
}
.blog__card:hover {
  box-shadow: none;
}
.blog__card-content {
  padding: 25px;
}
.blog__category {
  font-size: 14px;
  line-height: 0.75rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.blog__category a:hover {
  text-decoration: underline;
}
.blog__card-title a:hover {
  color: #5f4b8b;
}
.blog__date {
  font-size: 12px;
  line-height: 30px;
}
.blog__card-desc {
  margin-top: 5px;
  font-size: 15px;
  line-height: 22px;
}
.readmore-btn {
  font-size: 15px;
  border-bottom: 1px solid #5f4b8b;
  line-height: 1.25;
  letter-spacing: 1px;
}
.readmore-btn:hover {
  border-color: #fff;
}
.blog__card .readmore-btn {
  margin-top: 10px;
}
.blog__widget {
  background-color: #dadada;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  padding: 30px;
  margin-bottom: 20px;
}
.blog__widget-title {
  margin-bottom: 20px;
}
.search-form__input {
  padding: 12px;
  font-size: 15px;
  line-height: 20px;
  background-color: white;
  border: 1px solid #221c35;
  color: #221c35;
}
.search-form__btn {
  padding: 10px;
  color: #fff;
  background-color: #221c35;
  border: 0;
  min-width: 42px;
}
.search-form__btn:hover {
  background-color: #5f4b8b;
}
.blog__widget ul li {
  font-size: 16px;
  color: #221c35;
  list-style: disc;
}
.blog__widget ul {
  padding-left: 20px;
}
.blog__widget ul li a {
  color: inherit;
}
.blog__widget ul li a:hover {
  color: #5f4b8b;
  text-decoration: underline;
}

.blog .section__header {
  margin-bottom: 4rem;
}
.blog--style-2 .blog__items {
  max-width: 1400px;
}
.blog--style-2 .blog__card-thumb {
  height: 230px;
}
/* blog section end */

/* description section start */
.description {
  padding-block: 6rem;
  background-color: #f2f2f2;
}
.description__container {
  width: 90%;
  max-width: 1400px;
}
.description__wrapper {
  margin-inline: -50px;
}
.description__col {
  padding-inline: 50px;
}
.description__thumb {
  max-width: 40%;
  flex: 0 0 40%;
}
.description__content {
  max-width: 60%;
  flex: 0 0 60%;
}
.description__content-wrapper {
  max-width: 750px;
  padding-block: 3rem;
}
.description__text {
  margin-top: 2rem;
}
.description__content h5 {
  font-size: 1.3rem;
  line-height: 1.8;
}
/* description section end */

/* top-schools section start */

.top-schools {
  padding-block: 5rem;
  background-image: linear-gradient(145deg, #000 30%, #221c35 80%);
}
.top-schools__container {
  max-width: 1400px;
  width: 90%;
}
.top-schools__header {
  margin-bottom: 3rem;
}
.top-schools__subtitle {
  color: #dadada;
}
.top-schools__dropdown .dropdown-toggle {
  background-color: transparent;
  border: 0;
  font-size: 14px;
  color: #fff;
  padding: 12px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: underline;
  text-underline-offset: 5px;
  display: flex;
  gap: 12px;
}
.top-schools__dropdown .dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  border: 0;
}
.top-schools__dropdown .dropdown-menu {
  background-color: #000;
  color: #fff;
}
.top-schools__dropdown .dropdown-item {
  color: #fff;
  padding: 0.25rem 1.5rem;
}
.top-schools__dropdown .dropdown-item:hover {
  opacity: 0.75;
  background-color: #000;
}
.school__item {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.04);
  color: #dadada;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  cursor: pointer;
}
.school__item:hover {
  opacity: 0.8;
}
.school__title {
  flex: 1 1 100%;
  padding-left: 0 !important;
}
.school__phone {
  flex: 0 0 18%;
  white-space: nowrap;
}
.school__type {
  flex: 0 0 11%;
}
.school__grades {
  flex: 0 0 11%;
}
.school__rating {
  flex: 0 0 11%;
  font-size: 18px;
  color: #b19a55;
}
.school__item > span {
  padding-inline: 20px;
}
.school__list-nav {
  gap: 6px;
}
.school__list-btn::before {
  display: none;
}
.school__list-btn {
  width: 36px !important;
  height: 36px !important;
  background-color: #221c35;
  color: #fff;
  font-size: 16px;
  min-width: 0;
}
.school__list-btn:focus {
  outline: 1px dotted #fff !important;
}
.school__list-btn.slick-disabled {
  opacity: 0.5;
  cursor: default;
}
/* top-schools section end */
/**
 * DJ&Lindsey Property Search Styles
 * Matches theme design: Gotham font, purple gradients, rounded buttons
 * Version: 1.0.0
 */

/* Grid Layout */
.djl-property-grid {
    display: grid;
    gap: 24px;
    margin: 0;
}

.djl-property-grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.djl-property-grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.djl-property-grid--cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .djl-property-grid--cols-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .djl-property-grid--cols-4,
    .djl-property-grid--cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .djl-property-grid--cols-4,
    .djl-property-grid--cols-3,
    .djl-property-grid--cols-2 {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PROPERTY CARDS - Luxury Editorial Style
   Full-bleed images, cinematic proportions, elegant overlays
   ========================================================================== */

.djl-property-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.djl-property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.djl-property-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

/* Property Image - Full bleed, cinematic ratio */
.djl-property-image {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.djl-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
    filter: brightness(0.85);
}

.djl-property-card:hover .djl-property-image img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

/* Gradient overlay for text legibility */
.djl-property-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* Status Badge - Refined luxury style */
.djl-property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 18px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    z-index: 2;
}

.djl-property-badge--pending {
    background: rgba(212, 175, 55, 0.9);
    border-color: rgba(212, 175, 55, 0.3);
    color: #000;
}

.djl-property-badge--sold {
    background: rgba(139, 0, 0, 0.9);
    border-color: rgba(139, 0, 0, 0.3);
}

/* Property Info - Overlaid on image */
.djl-property-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: #fff;
    z-index: 1;
}

/* City - Always visible, prominent placement */
.djl-property-city {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

/* Price - Large, elegant display */
.djl-property-price {
    font-family: "Gotham", "Helvetica Neue", sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transition: margin 0.4s ease;
}

.djl-property-card:hover .djl-property-price {
    margin-bottom: 12px;
}

/* Meta info - Hidden by default, revealed on hover */
.djl-property-meta {
    display: flex;
    gap: 16px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 0.5px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease 0.05s;
}

.djl-property-card:hover .djl-property-meta {
    max-height: 30px;
    opacity: 1;
}

.djl-property-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.djl-property-meta span::before {
    content: "";
    width: 4px;
    height: 4px;
    background: #d4af37;
    border-radius: 50%;
}

.djl-property-meta span:first-child::before {
    display: none;
}

/* Address - Hidden by default, revealed on hover */
.djl-property-address {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.4;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease 0.1s;
}

.djl-property-card:hover .djl-property-address {
    max-height: 50px;
    opacity: 1;
}

/* View Property indicator - Top right corner */
.djl-property-card::after {
    content: "View Property →";
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.djl-property-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* Featured Style - Even more dramatic */
.djl-property-card--featured .djl-property-image {
    height: 450px;
}

.djl-property-card--featured .djl-property-price {
    font-size: 3rem;
}

/* Compact Style */
.djl-property-card--compact .djl-property-image {
    height: 300px;
}

.djl-property-card--compact .djl-property-info {
    padding: 24px;
}

.djl-property-card--compact .djl-property-price {
    font-size: 1.8rem;
}

.djl-property-card--compact .djl-property-meta {
    font-size: 12px;
    gap: 15px;
}

/* CTA Button - Luxury Style */
.djl-cta {
    text-align: center;
    margin-top: 60px;
}

.djl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 56px;
    background: linear-gradient(135deg, #221c35 0%, #5f4b8b 100%);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(34, 28, 53, 0.3);
}

.djl-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5f4b8b 0%, #221c35 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.djl-button:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 28, 53, 0.4);
}

.djl-button:hover::before {
    opacity: 1;
}

.djl-button span {
    position: relative;
    z-index: 1;
}

.djl-button--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff !important;
}

.djl-button--outline:hover {
    border-color: #d4af37;
    color: #d4af37 !important;
}

.djl-button--large {
    padding: 0 60px;
    height: 64px;
    font-size: 13px;
}

.djl-button--white {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.djl-button--white:hover {
    border-color: #d4af37;
    color: #d4af37 !important;
}

/* No Properties Message */
.djl-no-properties {
    text-align: center;
    padding: 80px 24px;
    color: #666;
    font-size: 1.1rem;
    background: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
}

/* Section Styling */
.featured-listings {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.featured-listings .section-title {
    font-family: "Gotham", sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    text-transform: uppercase;
    color: #221c35;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.featured-listings .section-subtitle {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #666;
}

/* Property search page section */
.services-details-section {
    background: #fff;
}

/* Property Filters - Search Page (Full-width, snug against hero) */
.hero + .property-filters-wrapper,
.hero--style-2 + .property-filters-wrapper {
    margin-top: 0;
}

.property-filters-wrapper {
    background: linear-gradient(180deg, #000 0%, #221c35 100%);
    padding: 24px 0;
    margin: 0;
    width: 100%;
}

.property-filters {
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin: 0;
}

.property-filters .form-select {
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 15px;
    border-radius: 8px;
}

.property-filters .form-select:focus {
    border-color: #5f4b8b;
    box-shadow: 0 0 0 2px rgba(95, 75, 139, 0.25);
    outline: none;
}

.property-filters .form-select option {
    background: #221c35;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .djl-property-image {
        height: 320px;
    }

    .djl-property-price {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .djl-property-image {
        height: 280px;
    }

    .djl-property-info {
        padding: 24px;
    }

    .djl-property-price {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }

    /* Show all info on mobile - no hover on touch devices */
    .djl-property-meta {
        max-height: 30px;
        opacity: 1;
    }

    .djl-property-address {
        max-height: 50px;
        opacity: 1;
    }

    .djl-property-card::after {
        display: none;
    }

    .featured-listings .section-title {
        font-size: 28px;
    }

    .djl-button {
        height: 50px;
        padding: 0 24px;
        font-size: 11px;
    }

    .property-filters-wrapper {
        padding: 20px 0;
    }

    .property-filters .form-select {
        height: 48px;
    }
}

/* ==========================================================================
   PROPERTY SLIDER - Beautiful carousel for blog posts
   ========================================================================== */

.djl-slider-section {
    margin: 60px 0;
    padding: 50px 0;
    background: linear-gradient(135deg, #0f0c18 0%, #1a1528 50%, #0f0c18 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.djl-slider-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(95, 75, 139, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.djl-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px 30px;
    position: relative;
    z-index: 2;
}

.djl-slider-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.djl-slider-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: fit-content;
}

.djl-slider-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.djl-slider-title {
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
}

.djl-slider-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.djl-slider-view-all:hover {
    color: #d4af37;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.djl-slider-view-all svg {
    transition: transform 0.3s ease;
}

.djl-slider-view-all:hover svg {
    transform: translateX(4px);
}

/* Slider Container */
.djl-property-slider {
    position: relative;
    padding: 0 50px;
}

.djl-slider-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.djl-slider-track::-webkit-scrollbar {
    display: none;
}

/* Individual Slide */
.djl-slider-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 320px;
    scroll-snap-align: start;
}

.djl-slider-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.djl-slider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.djl-slider-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.djl-slider-price {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.djl-slider-info {
    padding: 20px;
}

.djl-slider-address {
    font-size: 16px;
    font-weight: 600;
    color: #1a1528;
    margin-bottom: 4px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.djl-slider-location {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.djl-slider-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #444;
}

.djl-slider-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.djl-slider-meta strong {
    color: #1a1528;
}

/* Navigation Arrows */
.djl-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.djl-slider-nav:hover {
    background: #1a1528;
    color: #fff;
}

.djl-slider-nav:hover svg {
    stroke: #fff;
}

.djl-slider-prev {
    left: 10px;
}

.djl-slider-next {
    right: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
    .djl-slider-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .djl-slider-section {
        margin: 40px -15px;
        border-radius: 0;
        padding: 40px 0;
    }

    .djl-slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 0 20px 24px;
    }

    .djl-slider-title {
        font-size: 22px;
    }

    .djl-property-slider {
        padding: 0 20px;
    }

    .djl-slider-slide {
        flex: 0 0 calc(85%);
        min-width: 280px;
    }

    .djl-slider-nav {
        display: none;
    }

    .djl-slider-image {
        height: 180px;
    }

    .djl-slider-price {
        font-size: 18px;
        padding: 8px 14px;
    }
}
