/*
Theme Name: Taymara Realtors
Author: Apex Web Studio
Author URI: https://wordpress.org/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: TaymaraRealtors
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

body {
    font-family: 'Neue Montreal';
    font-weight: 400;
    margin: 0;
    padding: 0;
}



/* Additional uploaded Neue Montreal font faces */
@font-face {
    font-family: 'Neue Montreal';
    src: url('/wp-content/uploads/2026/04/NeueMontreal-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('/wp-content/uploads/2026/04/NeueMontreal-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('/wp-content/uploads/2026/04/NeueMontreal-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('/wp-content/uploads/2026/04/NeueMontreal-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('/wp-content/uploads/2026/04/NeueMontreal-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('/wp-content/uploads/2026/04/NeueMontreal-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('/wp-content/uploads/2026/04/NeueMontreal-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('/wp-content/uploads/2026/04/NeueMontreal-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

:root {
    --heading-font: 'Neue Montreal';
    --para-font: 'Neue Montreal';
    --primary-color: #F5C161;
    --white-color: #ffffff;
    --black-color: #0E0E0E;
    --grey-color: #636363;
}

.primary-color {
    color: var(--primary-color) !important;
}

.white-color {
    color: var(--white-color) !important;
}

.black-color {
    color: var(--black-color) !important;
}

.grey-color {
    color: var(--grey-color) !important;
}

.light-grey-color {
    color: #F1F5F9 !important;
}

.light-grey-color-bg {
    background-color: #F1F5F9 !important;
}

a {
    font-family: var(--para-font);
}

.container {
    max-width: 1520px;
    width: 100%;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 10px;
}

.glob-cta-yellow {
    background-color: var(--primary-color);
    color: var(--black-color);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    display: inline-block;
}

.glob-border-cta {
    border: 1.5px solid var(--black-color);
    color: var(--black-color);
    padding: 11px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glob-border-cta:hover {
    color: var(--white-color) !important;
}

.glob-border-cta:after {
    position: absolute;
    content: '';
    background: #000;
    width: 150px;
    height: 100px;
    left: -20px;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    transition: all 0.3s ease;
    border-radius: 50%;
    transform: scale(0.1);
    z-index: -1;
}

.glob-border-cta:hover:after {
    transform: scale(1.5);
}

h1 {
    font-size: 64px !important;
    font-family: var(--heading-font);
}

h2 {
    font-size: 40px !important;
    font-family: var(--heading-font);
}

h3 {
    font-size: 32px !important;
    font-family: var(--heading-font);
}

h4 {
    font-size: 28px !important;
    font-family: var(--heading-font);
}

h5 {
    font-size: 26px !important;
    font-family: var(--heading-font);
}

h6 {
    font-size: 24px !important;
    font-family: var(--heading-font);
}

.xs-font-size {
    font-size: 16px !important;
}

.sm-font-size {
    font-size: 18px !important;
}

.md-font-size {
    font-size: 20px !important;
}




/* ---------- Header styles ---------- */
.site-header {
    max-width: 100%;
    width: 100%;
    z-index: 9;
}

.page-template-homepagetemplate .site-header {
    position: absolute;
}

header.site-header.inner-header {
    background: #000;
}

.site-header .header-inner {
    max-width: 1520px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px;
    gap: 20px 40px;
}

.header-logo img {
    display: block;
    max-height: 56px;
    width: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: end;
    flex: 1 1 auto;
}

.primary-nav .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 32px;
    justify-content: center;
}

.primary-nav .menu li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color .18s ease, transform .18s ease;
}

.primary-nav .menu li.current-menu-item a,
.primary-nav .menu li.current_page_item a {
    color: var(--white-color) !important;
}

.primary-nav .menu li a:hover {
    color: var(--white-color);
    transform: translateY(-1px);
}



/* ===============================
HAMBURGER
================================= */

.menu-toggle {
    display: none;
    width: 35px;
    height: 25px;
    border: 0;
    background: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px 0;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: #ffffff;
    transition: .3s;
}

/* CLOSE ICON */

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-47deg) translate(7px, -7px);
}

/* ===============================
MOBILE DRAWER
================================= */

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    padding: 40px 25px;
    transition: .4s;
    overflow-y: auto;
}

.mobile-drawer.active {
    left: 0;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
}

.mobile-menu-list li {
    margin-bottom: 20px;
}

.mobile-menu-list a {
    text-decoration: none;
    font-size: 18px;
    color: #000;
}

/* ===============================
OVERLAY
================================= */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===============================
RESPONSIVE
================================= */

@media(max-width:991px) {

    .desktop-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .contact-btn {
        display: none;
    }

}

.label-icon {
    background: var(--primary-color);
    padding: 7px;
    border-radius: 50px;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.label-icon-text-wrap {
    max-width: fit-content;
    padding: 5px 15px 5px 5px;
    border-radius: 50px;
    background: #E9E9E9;
}


.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
}

.hero-content-col h1 {
    font-weight: 400;
    max-width: 881px;
    line-height: 1.2em;
}



/* MOBILE */

@media(max-width:768px) {

    .hero-section {
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 34px;
    }

}

/* Media Query Start */
@media(max-width:767px) {
    h1 {
        font-size: 30px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 26px !important;
    }

    h4 {
        font-size: 24px !important;
    }

    h5 {
        font-size: 22px !important;
    }

    h6 {
        font-size: 20px !important;
    }

    .sm-text-center {
        text-align: center !important;
    }

    .label-icon-text-wrap {
        margin: 0 auto 20px;
    }

    .sm-justify-center {
        justify-content: center !important;
    }

}

/* Mobile Query End */

/* 768px - 991px */
@media(min-width:768px) and (max-width:991px) {}

/* 768px - 991px  End*/

/* 768px - 1024px */
@media(min-width:768px) and (max-width:1024px) {}

/* 768px - 1024px  End*/

/* Max 1024px */
@media(max-width:1024px) {
    .md-display-none {
        display: none !important;
    }

    .md-display-block {
        display: block !important;
    }
}

/* Max 1024px  End*/


/* Min 1025px */
@media(min-width:1025px) {
    .lg-display-none {
        display: none !important;
    }
}

/* Min 1025px  End*/




.about-img-wrap {
    overflow: hidden;
    height: 100%;
}

.about-main-img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content-wrap {
    padding: 30px 0px 30px 70px;
}

.about-desc-text {
    font-size: 36px;
    line-height: 1.3em;
    color: var(--grey-color);
    font-weight: 500;
    margin: 0;
}

.about-desc-text strong {
    font-weight: 500;
    color: var(--black-color);
}


.brands-strip {
    margin-top: 70px;
    padding-top: 40px;
}

.brands-strip-inner {
    display: flex;
    align-items: center;
    gap: 20px 50px;
}

.trusted-text-col {
    flex-shrink: 0;
    border-left: 2px solid #DCDCDC;
    padding-left: 20px;
}

.trusted-by-text {
    font-size: 24px;
    color: var(--grey-color);
    line-height: 1.3em;
    margin: 0;
    font-weight: 500;
}

/* Marquee outer wrapper — clips overflow and applies gradient fade */
.marquee-outer {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding-left: 40px;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            #000 12%,
            #000 88%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            #000 12%,
            #000 88%,
            transparent 100%);
}

/* Scrolling track — two identical sets side by side */
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
    will-change: transform;
}

.marquee-logos-set {
    display: flex;
    align-items: center;
    gap: 56px;
    padding-right: 56px;
    flex-shrink: 0;
}

.marquee-logos-set img {
    height: 28px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.marquee-outer:hover .marquee-track {
    animation-play-state: paused;
}


/* ================================================
   RESPONSIVE — ABOUT + MARQUEE
================================================ */

@media (max-width: 1199px) {
    .about-content-wrap {
        padding-left: 20px;
    }

    .about-desc-text {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .about-content-wrap {
        padding-left: 0;
        padding-top: 10px;
    }

    .about-desc-text {
        font-size: 20px;
    }

    .brands-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .trusted-text-col {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #E5E5E5;
        padding-right: 0;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .marquee-outer {
        width: 100%;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .about-desc-text {
        font-size: 17px;
    }

    .brands-strip {
        margin-top: 50px;
        padding-top: 30px;
    }

    .marquee-logos-set {
        gap: 36px;
        padding-right: 36px;
    }

    .marquee-logos-set img {
        height: 22px;
    }
}


.light-grey-color-bg {
    background-color: #F2F4F6;
}

.md-font-size {
    font-size: 16px;
    line-height: 1.6;
}

/* Yellow circle prev/next buttons */
.props-arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.props-arrow-btn:hover {
    opacity: 0.8;
}

/* Location tab navigation */
.prop-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
    margin-bottom: 40px;
}

.prop-tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(14, 14, 14, 0.5);
    background: rgba(17, 17, 17, 0.05);
    opacity: 0.4;
    color: var(--black-color);
    font-size: 16px;
    font-family: var(--para-font);
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s;
}

.prop-tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    opacity: 1;
}

.prop-tab-btn:hover:not(.active) {
    border-color: #AEAEAE;
}

/* Tab panels */
.props-tab-panel {
    display: none;
}

.props-tab-panel.active {
    display: block;
}

/* Slick gap between cards */
.props-slider {
    overflow: hidden;
}

.props-slider .slick-list {
    margin: 0 -12px;
    overflow: visible;
}

.prop-slide {
    padding: 0 12px;
}

/* Property card */
.prop-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #DCDCDC;
    border-radius: 12px;
    background: #fff;
    padding: 15px;
}

.prop-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #E2E5E9;
    flex-shrink: 0;
    border-radius: 6px;
}

.prop-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

.prop-card-body {
    padding: 25px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.prop-price {
    font-size: 26px;
    color: var(--black-color);
    margin: 0;
    line-height: 1.2;
    font-weight: 500;
}

/* Specs row */
.prop-specs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 6px;
    font-size: 13px;
    color: var(--grey-color);
}

.prop-specs>span {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.prop-specs .spec-sep {
    color: #D0D0D0;
}

.prop-specs svg {
    flex-shrink: 0;
}

.prop-spec-icon,
.prop-location img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
    display: inline-block;
}

.prop-title {
    line-height: 1.4em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 15px 0 0;
}

.prop-location {
    font-size: 14px;
    color: var(--grey-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.prop-location svg {
    flex-shrink: 0;
}

/* Card action buttons */
.prop-btns {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 10px;
}

.prop-btn-call,
.prop-btn-whatsapp {
    flex: 1;
    text-align: center;
    padding: 10px 6px;
    text-decoration: none;
    color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: border-color 0.2s;
    background: #F9F9F9;
    border: 1px solid #DCDCDC;
    border-radius: 32px;
    font-weight: 500;
}

.prop-btn-whatsapp {
    color: #25D366 !important;
}

.prop-btn-call:hover,
.prop-btn-whatsapp:hover {
    border-color: #AEAEAE;
    color: var(--black-color);
    text-decoration: none;
}

.offplan-wrap {
    z-index: 1;
}

.offplan-img-wrap img {
    max-width: 100%;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.offplan-detail-wrap-inner-one {
    padding: 20px 0;
    border-bottom: 2px solid #DCDCDC;
}

.offplan-detail-wrap-inner-two {
    padding: 20px 0;
    display: flex;
    gap: 10px 15px;
}

.offplan-detail-wrap-inner-two span:not(.grey-color) {
    color: #DCDCDC;
}

.offplan-detail-wrap {
    padding: 0 15px;
    backdrop-filter: blur(10px);
    border: 1px solid #ffffff40;
    border-top: 0;
}

.section-big-heading {
    font-size: clamp(40px, 8vw, 150px) !important;
    color: #E5E5E5;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 0;
}


.offplan-section.active h2,
.offplan-section.active .sm-justify-center p,
.offplan-section.active .offplan-detail-wrap-inner-one h5,
.offplan-section.active .offplan-detail-wrap-inner-one span,
.offplan-section.active .offplan-detail-wrap-inner-two span {
    color: #fff !important;
}


.offplan-section {
    background: #fff;
    overflow: hidden;
}

.offplan-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    clip-path: circle(0% at 50% 0%);
    transition: clip-path 1.5s ease-out;
    z-index: 1;
}

/* ACTIVE STATE */
.offplan-section.active::before {
    clip-path: circle(150% at 50% 0%);
}

/* keep content above overlay */
.offplan-section>* {
    position: relative;
    z-index: 2;
}

/* ================================================
   RESPONSIVE — PROPERTIES
================================================ */

@media (max-width: 991px) {
    .props-nav-arrows {
        display: none !important;
    }

    .prop-tabs-nav {
        margin-top: 20px;
        margin-bottom: 28px;
    }
}

@media (max-width: 767px) {
    .glob-border-cta {
        font-size: 14px;
        padding: 9px 18px;
    }

    .prop-tab-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .prop-card-img {
        height: 195px;
    }

    .prop-price {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .prop-tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .prop-tabs-nav::-webkit-scrollbar {
        display: none;
    }
}


/* ================================================
   OFF-PLAN SLIDER
================================================ */

/* Even-numbered cards (2nd, 4th, 6th…) drop down 150px */
.offplan-wrap-even {
    margin-top: 150px;
}

/* Slick gap between off-plan slides */
.offplan-slider .slick-list {
    /* Let the even cards overflow downward without clipping */
    overflow: visible;
}

/* Each slide gets horizontal padding for the gap */
.offplan-slider .slick-slide {
    padding: 0 12px;
}


/* Prevent the container-fluid from clipping the stagger overflow */
.offplan-section .row {
    overflow: visible;
}

/* Responsive — disable stagger below tablet so it doesn't break layout */
@media (max-width: 991px) {
    .offplan-wrap-even {
        margin-top: 0;
    }

    .offplan-section {
        padding-bottom: 100px !important;
    }
}


/* ============================================================
   TESTIMONIAL & STATS SECTION
   ============================================================ */

:root {
    --testi-overlay: rgba(14, 14, 14, 0.55);
    --testi-box-bg: rgba(22, 22, 22, 0.55);
    --testi-box-border: rgba(255, 255, 255, 0.08);
    --testi-divider: rgba(255, 255, 255, 0.15);
    --testi-muted: rgba(255, 255, 255, 0.72);
    --testi-badge-bg: rgba(14, 14, 14, 0.55);
}

.testimonial-section {
    background-color: #F1F5F9;
}

/* ---- Testimonial Card ---- */
.testimonial-card {
    position: relative;
    width: 100%;
    min-height: 540px;
    border-radius: 24px;
    overflow: hidden;
    background-image: url('/wp-content/uploads/2026/04/testimonial-bg.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px;
}

.testimonial-rating-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 25px 20px 25px;
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    z-index: 2;
    background: rgba(7, 7, 7, 0.1);
    backdrop-filter: blur(23px);
}

.rating-avatars {
    display: flex;
    align-items: center;
}

.rating-avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #fff;
    object-fit: cover;
    margin-left: -10px;
}

.rating-avatars img:first-child {
    margin-left: 0;
}

.rating-text .rating-score {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white-color);
    font-size: 25px;
    line-height: 1.1;
}

.rating-text .rating-score .fa-star {
    color: var(--primary-color);
    font-size: 14px;
}

.rating-text .rating-caption {
    font-size: 16px;
    color: #F1F5F9;
}

/* Testimonial Content Box */
.testimonial-box {
    position: relative;
    width: 100%;
    max-width: 540px;
    padding: 45px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(27px);
    border-radius: 16px;
}

.testimonial-quote-mark {
    position: absolute;
    top: -75px;
    right: 10px;
    font-size: 450px;
    color: #fff;
    pointer-events: none;
    opacity: 0.12;
    line-height: 1.2em;
    height: unset;
}

.testimonial-title {
    line-height: 1.3;
    font-weight: 500;
    margin: 0 0 50px;
    position: relative;
    z-index: 1;
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.testimonial-stars .fa-star {
    color: #FF8741;
    font-size: 14px;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.2em;
    position: relative;
    z-index: 1;
    font-weight: 400;
    margin-bottom: 60px;
    color: #F1F5F9;
}

.testimonial-divider {
    width: 100%;
    height: 1px;
    background: var(--testi-divider);
    margin-bottom: 20px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info .author-name {
    font-size: 16px !important;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}

.author-info .author-role {
    font-size: 13px;
    color: var(--testi-muted);
    margin: 2px 0 0;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 14px;
}

.testi-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--black-color);
}

/* ---- Stats Strip ---- */
.stats-strip {
    margin-top: 60px;
    padding: 30px 0;
}

.stat-item {
    text-align: left;
    padding: 10px 28px;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background: #D9D9D9;
}

.row>[class*="col-"]:first-child .stat-item::before {
    display: none;
}

.stat-item .stat-number {
    font-size: 72px !important;
    line-height: 1;
    margin: 0 0 8px;
    color: var(--black-color);
    font-weight: 500;
}

.stat-item .stat-label {
    font-size: 22px;
    color: var(--black-color);
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
    .testimonial-card {
        min-height: 500px;
        padding: 30px;
    }

    .testimonial-quote-mark {
        font-size: 200px;
    }

    .stat-item .stat-number {
        font-size: 44px !important;
    }

    .stat-item {
        padding: 10px 20px;
    }
}

@media (max-width: 991px) {
    .testimonial-card {
        min-height: auto;
        padding: 24px;
        justify-content: center;
        align-items: flex-start;
        padding-bottom: 110px;
    }

    .testimonial-box {
        max-width: 100%;
    }

    .testimonial-title {
        font-size: 20px !important;
    }

    .stats-strip {
        margin-top: 40px;
    }

    .stat-item {
        padding: 16px 18px;
    }

    .stat-item .stat-number {
        font-size: 38px !important;
    }

    /* Show dividers only between siblings in 3-col grid at md */
    .row>[class*="col-"]:nth-child(3n+1) .stat-item::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        padding: 20px;
        padding-bottom: 100px;
    }

    .testimonial-box {
        padding: 26px 22px 22px;
    }

    .testimonial-quote-mark {
        font-size: 160px;
        top: -28px;
    }

    .testimonial-title {
        font-size: 18px !important;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-rating-badge {
        left: 16px;
        bottom: 16px;
        padding: 8px 14px 8px 10px;
    }

    .rating-avatars img {
        width: 30px;
        height: 30px;
    }

    .testimonial-footer {
        flex-wrap: wrap;
    }

    .stats-strip {
        margin-top: 30px;
        padding: 16px 0;
    }

    .stat-item {
        text-align: center;
        padding: 18px 10px;
    }

    .stat-item::before {
        display: none !important;
    }

    .stat-item .stat-number {
        font-size: 34px !important;
    }

    .stat-item .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .testimonial-card {
        padding: 16px;
        padding-bottom: 96px;
    }

    .testimonial-box {
        padding: 22px 18px 18px;
    }

    .testimonial-footer {
        gap: 12px;
    }

    .testi-nav-btn {
        width: 36px;
        height: 36px;
    }
}


/* ============================================================
   LOCATION SERVE SECTION
   ============================================================ */

:root {
    --ls-card-radius: 18px;
    --ls-card-height: 520px;
    --ls-gap: 16px;
    --ls-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.65) 100%);
    --ls-icon-size: 84px;
}

.location-serve {
    background-color: var(--white-color);
}

/* ---- Header ---- */
.ls-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.ls-header-left {
    flex: 1 1 auto;
    max-width: 720px;
}

.ls-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(245, 193, 97, 0.18);
    color: var(--black-color);
    border-radius: 50px;
    padding: 6px 14px 6px 6px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 18px;
}

.ls-badge-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--black-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.ls-title {
    font-weight: 500;
    color: var(--black-color);
    margin: 0 0 10px;
    line-height: 1.15;
}

.ls-subtitle {
    font-size: 20px;
    line-height: 1.3em;
    margin: 0;
}

.ls-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ls-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: var(--primary-color);
    color: var(--black-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.25s ease;
}

.ls-nav-btn:hover {
    background-color: var(--black-color);
    color: var(--primary-color);
}

.ls-nav-btn.slick-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* ---- Full-bleed slider wrapper ---- */
/* Header stays inside .container; slider extends to viewport's right edge on desktop */
.ls-slider-wrap {
    width: 100%;
}

@media (min-width: 992px) {
    .location-serve.section-padding {
        padding-right: 0;
    }

    .ls-slider-wrap {
        padding-left: max(0px, calc((100vw - 1540px) / 2));
        overflow: hidden;
        margin-top: 80px;
    }
}

/* ---- Slider Cards ---- */
.ls-slider .slick-list {
    margin: 0 -8px;
}

.ls-slider .slick-slide>div {
    padding: 0 8px;
}

.ls-slide {
    outline: none;
    margin: 0 10px;
}

.ls-card {
    position: relative;
    display: block;
    width: 100%;
    height: var(--ls-card-height);
    border-radius: var(--ls-card-radius);
    overflow: hidden;
    text-decoration: none;
    isolation: isolate;
    background-color: #1c1c1c;
}

.ls-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.ls-card-overlay {
    position: absolute;
    inset: 0;
    background: var(--ls-overlay);
    transition: background 0.4s ease;
    z-index: 1;
}

.ls-card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6) rotate(45deg);
    width: var(--ls-icon-size);
    height: var(--ls-icon-size);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    pointer-events: none;
}

/* Card info (bottom-left) */
.ls-card-info {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    z-index: 2;
    color: var(--white-color);
}

.ls-card-name {
    font-weight: 500;
    margin: 0 0 15px;
    line-height: 1.2;
    color: var(--white-color);
    transform: translateY(8px);
    transition: transform 0.4s ease;
    text-align: center;
}

.ls-card-count {
    font-size: 20px;
    margin: 0;
    color: rgb(255 255 255);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-align: center;
}

/* Hover State */
.ls-card:hover .ls-card-img {
    transform: scale(1.06);
}

.ls-card:hover .ls-card-overlay {
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0) 100%);
}

.ls-card:hover .ls-card-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(-45deg);
}

.ls-card:hover .ls-card-name {
    transform: translateY(0);
}

.ls-card:hover .ls-card-count {
    opacity: 1;
    transform: translateY(0);
}


/* ---- Responsive ---- */
@media (max-width: 1199px) {
    :root {
        --ls-card-height: 460px;
    }

    .ls-title {
        font-size: 36px !important;
    }

    .ls-card-name {
        font-size: 24px !important;
    }
}

@media (max-width: 991px) {
    :root {
        --ls-card-height: 420px;
        --ls-icon-size: 70px;
    }

    .ls-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .ls-header-right {
        width: 100%;
        justify-content: flex-start;
    }

    .ls-card-info {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .ls-card-name {
        font-size: 22px !important;
    }
}

@media (max-width: 767px) {
    :root {
        --ls-card-height: 400px;
    }

    .ls-subtitle {
        font-size: 16px;
    }

    .ls-nav-btn {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 575px) {
    :root {
        --ls-card-height: 380px;
        --ls-icon-size: 60px;
    }

    .ls-card-name {
        font-size: 20px !important;
    }

    .ls-card-count {
        font-size: 14px;
    }

    /* Always show count on mobile (no hover available) */
    .ls-card .ls-card-count {
        opacity: 1;
        transform: translateY(0);
    }
}


.get-in-touch-section {
    background: url(/wp-content/uploads/2026/04/getintouch-bg-img.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.get-in-touch-section .get-in-touch-content-col {
    backdrop-filter: blur(7px);
    background: #0000005e;
    padding: 50px 80px;
    border-radius: 15px 0 0 15px;
}

p.get-in-touch-subtitle {
    color: #CFCFCF;
    font-size: 20px;
}

.get-in-touch-section .get-in-touch-form-col {
    background: #fff;
    padding: 50px 60px;
    border-radius: 0px 15px 15px 0;
}

.get-in-touch-icon-wrap {
    margin-top: 60px;
}

.icon-text-wrap {
    gap: 20px;
}

.icon-text-wrap .icon-wrap i {
    font-size: 20px;
    color: #fff;
    border-radius: 50px;
    border: 1px solid #636363;
    transition: all 0.3s ease;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-text-wrap:hover i {
    background: #fff;
    color: #000;
}

.icon-text-wrap .text-wrap h6 {
    font-size: 20px !important;
}


/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
    background-color: #F1F5F9;
}

/* ---- Header ---- */
.faq-header {
    max-width: 720px;
    margin: 0 auto 50px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(245, 193, 97, 0.18);
    color: var(--black-color);
    border-radius: 50px;
    padding: 6px 14px 6px 6px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    font-family: var(--para-font);
}

.faq-badge-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--black-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.faq-title {
    font-weight: 500;
    margin: 0 0 12px;
    line-height: 1.15;
}

.faq-subtitle {
    font-size: 22px;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 700px;
}

.faq-tabs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 10px;
    background: #fff;
}

.faq-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    color: var(--grey-color);
    font-family: var(--para-font);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
    border-radius: 10px;
}

.faq-tab i {
    font-size: 12px;
    color: var(--grey-color);
    transition: color 0.25s ease, transform 0.25s ease;
}

.faq-tab:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 10px;
}

.faq-tab:hover i {
    transform: translateX(2px);
}

.faq-tab:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.faq-tab.active {
    background-color: var(--primary-color);
    color: var(--black-color);
}

.faq-tab.active i {
    color: var(--black-color);
}

/* ---- Panels (right) ---- */
.faq-panel {
    display: none;
}

.faq-panel.active {
    display: block;
    animation: faqPanelFade 0.35s ease;
}

@keyframes faqPanelFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Accordion items ---- */
.faq-item {
    background-color: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(14, 14, 14, 0.04);
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item.open {
    box-shadow: 0 6px 24px rgba(14, 14, 14, 0.07);
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: var(--para-font);
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.4;
}

.faq-question:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
    border-radius: 12px;
}

.faq-q-text {
    flex: 1 1 auto;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(180deg);
}

/* Smooth slide-down using grid trick (no JS height calc needed) */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    min-height: 0;
}

.faq-answer-inner p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--grey-color);
    font-size: 15px;
    line-height: 1.6;
    font-family: var(--para-font);
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
    .faq-title {
        font-size: 38px !important;
    }
}

@media (max-width: 991px) {
    .faq-title {
        font-size: 32px !important;
    }

    .faq-header {
        margin-bottom: 36px;
    }

    .faq-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .faq-tab {
        flex: 1 1 calc(50% - 4px);
        min-width: 0;
        justify-content: center;
        padding: 12px 14px;
    }

    .faq-tab i {
        display: none;
    }
}

@media (max-width: 767px) {
    .faq-title {
        font-size: 26px !important;
    }

    .faq-subtitle {
        font-size: 14px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 15px;
    }

    .faq-answer-inner p {
        padding: 0 18px 18px;
        font-size: 14px;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 575px) {
    .faq-tab {
        flex: 1 1 100%;
    }
}


/* ============================================================
   VIDEO CAROUSEL (Social Media)
   ============================================================ */

.video-carousel-section {
    background-color: var(--white-color);
}

/* Header */
.vc-header {
    max-width: 720px;
    margin: 0 auto 50px;
}

.vc-subtitle {
    max-width: 620px;
    line-height: 1.5;
    font-size: 18px;
}

/* Slider wrap (full-width, with absolute nav arrows) */
.vc-slider-wrap {
    position: relative;
}

/* Slick spacing for offset-peek look */
.vc-slider .slick-list {
    overflow: hidden;
}

.vc-slider .slick-slide {
    padding: 0 8px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Card */
.vc-card {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 14;
    border-radius: 12px;
    overflow: hidden;
    background-color: #1c1c1c;
}

.vc-card .vc-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play button overlay */
.vc-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--black-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.vc-play-btn:hover {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.08);
}

.vc-card.is-playing .vc-play-btn {
    opacity: 0;
    pointer-events: none;
}

/* Nav arrows positioned over the slider */
.vc-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.vc-prev {
    left: 20px;
}

.vc-next {
    right: 20px;
}

/* Responsive */
@media (max-width: 1199px) {
    .vc-play-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .vc-header {
        margin-bottom: 36px;
    }

    .vc-prev {
        left: 12px;
    }

    .vc-next {
        right: 12px;
    }
}

@media (max-width: 767px) {
    .vc-card {
        aspect-ratio: 9 / 13;
    }

    .vc-play-btn {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .vc-nav {
        width: 40px !important;
        height: 40px !important;
    }
}

@media (max-width: 575px) {
    .vc-prev {
        left: 6px;
    }

    .vc-next {
        right: 6px;
    }
}


/* ============================================================
   SITE FOOTER
   ============================================================ */

.site-footer {
    position: relative;
    color: var(--white-color);
    font-family: var(--para-font);
    overflow: hidden;
}

.site-footer-bg {
    position: relative;
    background-image: linear-gradient(180deg, rgb(0 0 0) 0%, rgb(0 0 0 / 70%) 60%, rgba(0, 0, 0, 0.85) 100%), url(/wp-content/uploads/2026/04/footer-bg-scaled.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 10px 80px;
}

/* ---- Top grid ---- */
.footer-top {
    padding-bottom: 50px;
}

.footer-col {
    color: rgba(255, 255, 255, 0.78);
}

.footer-heading {
    font-size: 30px !important;
    font-weight: 500;
    margin: 0 0 22px;
    font-family: var(--heading-font);
}

.footer-text {
    line-height: 1.4em;
    color: #CFCFCF;
    margin: 0 0 22px;
    font-size: 20px;
}

/* ---- About: CTA pill ---- */
.footer-cta {
    display: inline-block;
    padding: 11px 24px;
    background-color: var(--white-color);
    color: var(--black-color);
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.footer-cta:hover {
    background-color: var(--primary-color);
    color: var(--black-color);
}

/* ---- Nav lists ---- */
.footer-nav .footer-menu-list,
.footer-nav .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav .footer-menu-list a,
.footer-nav .menu a {
    color: #CFCFCF;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-nav .footer-menu-list a:hover,
.footer-nav .menu a:hover {
    color: var(--primary-color);
    transform: translateX(2px);
}

.footer-form-area {
    margin-bottom: 30px;
}

.footer-socials {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--black-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-social:hover {
    background-color: var(--primary-color);
    color: var(--black-color);
    transform: translateY(-2px);
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 30px 0 30px;
    border-top: 1px solid #636363;
    border-bottom: 1px solid #636363;
    margin-bottom: 60px;
}

.footer-credit, .footer-powered {
    margin: 0;
    font-size: 16px;
    color: var(--white-color);
    letter-spacing: 0.02em;
}

.footer-credit strong,
.footer-powered strong {
    color: var(--white-color);
    font-weight: 600;
}

/* ---- Big brand watermark ---- */
.footer-brand-mark {
    pointer-events: none;
    text-align: center;
    margin-top: 20px;
    line-height: 0;
}

.footer-brand-mark-text {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    user-select: none;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .site-footer-bg {
        padding-top: 60px;
    }

    .footer-heading {
        font-size: 20px !important;
        margin-bottom: 16px;
    }

    .footer-top {
        padding-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .site-footer-bg {
        padding-top: 50px;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 20px 0 24px;
    }

    .footer-form-area {
        height: 48px;
    }
}

@media (max-width: 575px) {
    .footer-heading {
        font-size: 18px !important;
    }

    .footer-text,
    .footer-nav .footer-menu-list a,
    .footer-nav .menu a {
        font-size: 14px;
    }

    .footer-cta {
        padding: 10px 22px;
        font-size: 14px;
    }
}


/* ============================================================
   HERO PROPERTY FILTER BAR
   ============================================================ */

.home-filter-wrapper {
    margin-top: 36px;
    width: 100%;
}

.home-property-filter {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 920px;
    padding: 8px 8px 8px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(29px);
}

/* Each segment */
.filter-box {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    padding: 6px 14px;
}

/* Vertical separators between segments */
.filter-box+.filter-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.25);
}

/* Hide the native select (custom dropdown is rendered via JS) */
.filter-select {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* ---- Custom modern dropdown ---- */
.filter-dd {
    position: relative;
    width: 100%;
}

.filter-dd-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: 0;
    padding: 8px 4px 8px 0;
    color: var(--white-color);
    font-family: var(--para-font);
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    outline: none;
    text-align: left;
}

.filter-dd-trigger .filter-dd-value {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.filter-dd-trigger .filter-dd-value.is-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.filter-dd-trigger .filter-caret {
    font-size: 11px;
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.85);
    transition: transform 0.25s ease, color 0.2s ease;
}

.filter-dd.open .filter-dd-trigger .filter-caret {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.filter-dd-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: -8px;
    right: -8px;
    z-index: 20;
    margin: 0;
    padding: 6px;
    list-style: none;
    background-color: rgba(20, 20, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    max-height: 280px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.filter-dd.open .filter-dd-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-dd-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14.5px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease;
    user-select: none;
}

.filter-dd-option:hover,
.filter-dd-option.is-active {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--white-color);
}

.filter-dd-option.is-selected {
    color: var(--primary-color);
    font-weight: 500;
}

.filter-dd-option.is-selected::after {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: inset 0 0 0 3px rgba(20, 20, 20, 0.96);
    margin-left: 12px;
    flex-shrink: 0;
}

/* Custom scrollbar (Webkit) for long menus */
.filter-dd-menu::-webkit-scrollbar {
    width: 6px;
}

.filter-dd-menu::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.18);
    border-radius: 6px;
}

/* Price Range trigger (mirrors the select look) */
.price-range-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: 0;
    padding: 8px 4px 8px 0;
    color: var(--white-color);
    font-family: var(--para-font);
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    outline: none;
}

.price-range-trigger .filter-caret {
    font-size: 11px;
    margin-left: 10px;
    transition: transform 0.25s ease;
}

.price-range-box.open .price-range-trigger .filter-caret {
    transform: rotate(180deg);
}

/* Price Range dropdown panel */
.price-range-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    z-index: 20;
    background-color: rgba(20, 20, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 18px 20px 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    color: var(--white-color);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.price-range-box.open .price-range-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.price-range-head {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px 15px;
    margin-bottom: 10px;
}

.price-range-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.price-range-values {
    font-size: 16px;
    font-weight: 400;
}

.price-range-values span.currency-symbol {
    font-size: 13px;
    margin-right: 5px;
    color: var(--primary-color);
    font-weight: 700;
}

.price-range-dash {
    margin: 0 4px;
    color: rgba(255, 255, 255, 0.5);
}

/* Dual-handle range slider */
.price-range-sliders {
    position: relative;
    height: 28px;
    padding: 0 4px;
}

.price-range-track {
    position: absolute;
    left: 4px;
    right: 4px;
    top: 50%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    transform: translateY(-50%);
    pointer-events: none;
}

.price-range-fill {
    position: absolute;
    top: 0;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 4px;
}

.price-range-sliders input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 28px;
    background: transparent;
    margin: 0;
    outline: none;
}

.price-range-sliders input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 2px solid var(--white-color);
    cursor: grab;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.price-range-sliders input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 2px solid var(--white-color);
    cursor: grab;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.price-range-sliders input[type="range"]::-webkit-slider-runnable-track {
    background: transparent;
    height: 28px;
}

.price-range-sliders input[type="range"]::-moz-range-track {
    background: transparent;
    height: 28px;
}

/* Submit button */
.home-property-filter .explore-btn {
    flex: 0 0 auto;
    margin-left: 10px;
    padding: 12px 26px;
    border: 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    border-radius: 50px;
    transition: filter 0.25s ease, transform 0.25s ease;
}

.home-property-filter .explore-btn:hover {
    filter: brightness(0.95);
    transform: translateY(-1px);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .home-property-filter {
        max-width: 100%;
        padding: 8px 8px 8px 18px;
    }

    .filter-box {
        padding: 6px 12px;
    }

    .filter-select,
    .price-range-trigger {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .home-property-filter {
        flex-wrap: wrap;
        border-radius: 22px;
        padding: 14px;
        gap: 10px;
    }

    .filter-box {
        flex: 1 1 100%;
        padding: 6px 25px;
        background-color: rgba(255, 255, 255, 0.06);
        border-radius: 50px;
    }

    .filter-box+.filter-box::before {
        display: none;
    }

    .home-property-filter .explore-btn {
        flex: 1 1 100%;
        margin-left: 0;
        padding: 14px 20px;
    }

    .price-range-panel {
        margin-top: 55px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .price-range-box.open .price-range-panel {
        display: block;
    }
}


/* ============================================================
   PROPERTIES ARCHIVE / SEARCH RESULTS
   ============================================================ */

.property-archive {
    padding-top: 40px;
    background-color: var(--white-color);
}

/* ---- Filter / Search Bar ---- */
.archive-filter-form {
    display: flex;
    align-items: stretch;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.archive-filter-form .af-search {
    flex: 0 1 320px;
    min-width: 220px;
}

.archive-filter-form .af-search input {
    width: 100%;
    height: 48px;
    padding: 0 18px;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    font-family: var(--para-font);
    font-size: 15px;
    color: var(--black-color);
    background-color: var(--white-color);
    outline: none;
    transition: border-color 0.2s ease;
}

.archive-filter-form .af-search input:focus {
    border-color: var(--black-color);
}

.archive-filter-form .af-search input::placeholder {
    color: rgba(99, 99, 99, 0.7);
}

.archive-filter-form .af-select-box {
    position: relative;
    flex: 0 1 170px;
    min-width: 140px;
}

.archive-filter-form .af-select-box select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 48px;
    padding: 0 38px 0 16px;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    background-color: var(--white-color);
    font-family: var(--para-font);
    font-size: 15px;
    color: var(--black-color);
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s ease;
}

.archive-filter-form .af-select-box select:focus {
    border-color: var(--black-color);
}

.archive-filter-form .af-caret {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--black-color);
    font-size: 11px;
}

.archive-filter-form .af-search-btn {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 10px;
    background-color: var(--primary-color);
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.archive-filter-form .af-search-btn:hover {
    background-color: var(--black-color);
    transform: translateY(-1px);
}

/* ---- Breadcrumb ---- */
.archive-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--grey-color);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.archive-breadcrumb a {
    color: var(--grey-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.archive-breadcrumb a:hover {
    color: var(--black-color);
}

.archive-breadcrumb i {
    font-size: 9px;
    color: rgba(99, 99, 99, 0.6);
}

/* ---- Page Title ---- */
.archive-title {
    font-size: 44px !important;
    line-height: 1.2;
    margin: 0 0 36px;
    font-weight: 500;
}

.archive-title-accent {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
}

/* ---- Cards Grid (reuses .prop-card from home — no extra card styling needed) ---- */

/* ---- Empty State ---- */
.archive-empty {
    text-align: center;
    padding: 60px 20px;
}

.archive-empty p {
    color: var(--grey-color);
    font-size: 16px;
    margin: 0 0 18px;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
    .archive-title {
        font-size: 36px !important;
    }
}

@media (max-width: 991px) {
    .archive-title {
        font-size: 30px !important;
    }

    .archive-filter-form .af-search {
        flex: 1 1 100%;
    }

    .archive-filter-form .af-select-box {
        flex: 1 1 calc(33.333% - 8px);
    }

    .archive-filter-form .af-search-btn {
        flex: 0 0 48px;
    }
}

@media (max-width: 767px) {
    .archive-title {
        font-size: 26px !important;
        margin-bottom: 24px;
    }

    .archive-filter-form .af-select-box {
        flex: 1 1 calc(50% - 6px);
    }
}

@media (max-width: 575px) {
    .archive-filter-form .af-select-box {
        flex: 1 1 100%;
    }

    .archive-filter-form .af-search-btn {
        flex: 1 1 100%;
    }
}


#forminator-module-147 .forminator-label{
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 1.3em;
    margin-bottom: 8px;
}
#forminator-module-147 .forminator-input,
#forminator-module-147 .select2-selection__rendered{
    padding:12px 15px;
}

#forminator-module-147 .forminator-button {
    max-width: 100%;
    width: 100%;
    border-radius: 50px;
    margin-top: 20px;
}
#forminator-module-148 .forminator-label{
    display:none !important;
}
#forminator-module-148 .forminator-input{
    border-radius:50px;
    padding: 18px 25px;
    font-family: var(--heading-font) !important;
}
#forminator-module-148{
    position:relative;
}
#forminator-module-148 .forminator-button{
    position:absolute;
    font-family: 'Neue Montreal' !important;
    top: 6px;
    right: 9px;
    border-radius:50px;
    padding:13px 30px;
}

.property-archive .price-range-box{
    padding: 0 38px 0 16px;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    background-color: var(--white-color);
    font-family: var(--para-font);
    font-size: 15px;
}
.property-archive .price-range-box .price-range-trigger{
    color:#000;
    padding: 12px 0;
}