body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fb;
}
/* ===============================
   HEADER MAIN
================================ */
.custom-header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 5000;
    background: transparent;
    transition: all .35s ease;
}

/* HEADER INNER */
.header-inner {
    width: 72%;
    background: #ffffff;
    border: 3px solid #0a72c6;
    border-radius: 22px;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .35s ease;
}

/* STICKY EFFECT */
.custom-header.sticky {
    padding: 10px 0;
}

.custom-header.sticky .header-inner {
    border-radius: 40px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    padding: 12px 28px;
}

/* ===============================
   MENUS
================================ */
.menu-left,
.menu-right {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-left a,
.menu-right a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    position: relative;
    transition: color .25s ease;
}

/* HOVER */
.menu-left a:hover,
.menu-right a:hover {
    color: #0a72c6;
}

/* ACTIVE UNDERLINE */
.menu-left a.active::after,
.menu-right a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 18px;
    height: 3px;
    background: #0a72c6;
    border-radius: 3px;
}

/* ===============================
   LOGO
================================ */
.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo img {
    height: 58px;
    transition: all .3s ease;
}

/* ===============================
   360 ROTATION BUTTON
================================ */
.rotation-btn {
    background: linear-gradient(135deg, #0a72c6, #084298);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(10,114,198,.35);
    transition: all .25s ease;
}

.rotation-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(10,114,198,.45);
}

/* ===============================
   MOBILE MENU BUTTON
================================ */
.mobile-menu-btn {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #0a72c6;
}

/* ===============================
   MOBILE SIDEBAR
================================ */
.mobile-sidebar {
    width: 260px;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    left: -260px;
    transition: .3s ease;
    z-index: 6000;
    padding: 22px;
    box-shadow: 4px 0 25px rgba(0,0,0,0.18);
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-close-btn {
    font-size: 26px;
    position: absolute;
    right: 18px;
    top: 14px;
    cursor: pointer;
}

.mobile-sidebar ul {
    list-style: none;
    padding: 0;
    margin-top: 60px;
}

.mobile-sidebar ul li {
    margin-bottom: 14px;
}

.mobile-sidebar ul li a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    color: #111;
}

/* MOBILE CTA */
.sidebar-cta a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #0a72c6;
    color: #fff !important;
    border-radius: 999px;
    font-size: 14px;
}

/* ===============================
   OVERLAY
================================ */
.sidebar-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 5500;
}

.sidebar-overlay.active {
    display: block;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .header-inner {
        width: 92%;
        padding: 12px 20px;
    }

    .menu-left,
    .menu-right {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-logo img {
        height: 50px;
    }
}
/* ===============================
   MOBILE SIDEBAR (FIXED LOGIC)
================================ */

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    padding: 24px 22px;
    transform: translateX(-100%);
    transition: transform .35s ease;
    z-index: 6000;
    box-shadow: 6px 0 30px rgba(0,0,0,0.18);
}

.mobile-sidebar.active {
    transform: translateX(0);
}

/* CLOSE BUTTON */
.sidebar-close-btn {
    position: absolute;
    right: 18px;
    top: 16px;
    font-size: 26px;
    cursor: pointer;
    color: #333;
}

/* ===============================
   MENU LIST
================================ */

.mobile-menu {
    list-style: none;
    padding: 0;
    margin-top: 70px;
}

.mobile-menu li {
    margin-bottom: 16px;
}

.mobile-menu li a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    color: #111;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 4px;
    transition: all .25s ease;
}

.mobile-menu li a:hover {
    color: #0a72c6;
    transform: translateX(4px);
}

/* ===============================
   ACCORDION
================================ */

.mobile-accordion .acc-title {
    font-size: 17px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 4px;
}

.acc-arrow {
    font-size: 14px;
    transition: transform .3s ease;
}

/* ACCORDION CONTENT */
.mobile-accordion .acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding-left: 14px;
    margin-top: 6px;
}

.mobile-accordion .acc-content li {
    margin: 8px 0;
}

.mobile-accordion .acc-content li a {
    font-size: 15px;
    font-weight: 500;
    color: #444;
}

/* OPEN STATE */
.mobile-accordion.active .acc-content {
    max-height: 200px;
}

.mobile-accordion.active .acc-arrow {
    transform: rotate(180deg);
}

/* ===============================
   CTA BUTTON
================================ */

.sidebar-cta {
    margin-top: 28px;
}

.sidebar-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #0a72c6, #084298);
    color: #fff !important;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(10,114,198,.4);
    transition: all .3s ease;
}

.sidebar-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(10,114,198,.45);
}

/* ===============================
   OVERLAY
================================ */

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
    display: none;
    z-index: 5500;
}

.sidebar-overlay.active {
    display: block;
}


/* ---------------- ABOUT BLOCK ---------------- */
.about-container {
    width: 95%;
    margin: 40px auto;
    background: #8ac7f921;
    padding: 40px;
    border-radius: 22px;
}

.two-image-wrapper {
    position: relative;
}

.two-image-wrapper .img-main {
    width: 100%;
    height: 340px;
    border-radius: 20px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.two-image-wrapper .img-small {
    width: 60%;
    height: 230px;
    position: absolute;
    bottom: -35px;
    right: 20px;
    border-radius: 18px;
    box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.25);
    object-fit: cover;
    border: 6px solid #ffffff;
}

.section-eyebrow {
    font-size: 12px;
    color: #9c8a69;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.about-title {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2b2b2b;
}

.about-desc {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 18px 0 20px;
}

.about-stats div strong {
    font-size: 20px;
    color: #2b2b2b;
}

.about-stats div span {
    font-size: 12px;
    color: #555;
}

.about-btn {
    background: linear-gradient(135deg, #6cbcfd, #0a72c6);
    border: none;
    color: #fff;
    padding: 10px 28px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0px 6px 18px #6ea9d780;
    transition: 0.3s;
}

.about-btn:hover {
    transform: translateY(-2px);
}

        /* ---------------- HERO ---------------- */
        .hero-container {
            width: 95%;
            margin: 20px auto 0 auto;
        }

        .hero-img {
            width: 100%;
            height: 420px;
            background-size: cover;
            background-position: center;
            border-radius: 20px;
            overflow: hidden;
                border: solid #0a72c6;
        }

/* Smooth hide */
.property-card.smooth-hide {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s ease;
}

/* Smooth show */
.property-card.smooth-show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.35s ease;
}

/* Container fade + slide */
#property-list.smooth-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s ease;
}

#property-list.smooth-transition.active {
    opacity: 1;
    transform: translateY(0);
}

        /* --------- AREA SLIDER SECTION (same width as header = 95%) --------- */
.area-section {
    width: 100%;
    padding: 30px 0 10px;
}

.area-section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.area-section-sub {
    max-width: 600px;
    margin: 0 auto 15px;
    font-size: 14px;
    color: #666;
}

/* top menu buttons */
.area-menu {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.area-menu button {
    border: none;
    border-radius: 999px;
    padding: 7px 20px;
    font-size: 14px;
    background: #f1f2f6;
    cursor: pointer;
    transition: 0.25s ease;
}

.area-menu button.active {
    background:  #0a72c6;
    color: #fff;
}

/* slider wrapper + buttons */
.area-slider-wrapper {
    position: relative;
    background: #8ac7f921;
    border-radius: 20px;
    padding: 18px 45px;
    overflow: hidden;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
}

.slider-btn i {
    font-size: 16px;
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

/* slider track */
.area-slider {
    display: flex;
    gap: 20px;
    transition: transform .45s ease, opacity .3s ease, filter .3s ease;
}

/* small fade/slide animation while filtering */
.area-slider.fading {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(1px);
}

/* each card – row layout like your small screenshot  */
/* 4 cards desktop, 2 tablet, 1 mobile */
.area-card {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: .25s ease;
}

/* Tablet: 2 per row */
@media (max-width: 992px) {
    .area-card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}

/* Mobile: 1 per row full width */
@media (max-width: 576px) {
    .area-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.area-img-box {
    width: 90px;
    height: 80px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.area-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-info h5 {
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 600;
}

.area-meta {
    font-size: 11px;
    margin: 0;
    color: #777;
}

.area-meta i {
    margin-right: 4px;
}

.area-btn {
    margin-top: 6px;
    padding: 4px 14px;
    font-size: 11px;
    border-radius: 999px;
    border: none;
    background:  #0a72c6;
    color: #fff;
    cursor: pointer;
}

/* responsive: 2 cards per view on tablet, 1 on mobile */
@media (max-width: 992px) {
    .area-card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .area-slider-wrapper {
        padding-inline: 40px;
    }
}

@media (max-width: 576px) {
    .area-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .area-slider-wrapper {
        padding-inline: 20px;
    }

    .slider-btn {
        display: none;
    }
}

.area-menu {
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:20px;
}
.area-menu button {
    padding:7px 20px;
    background:#f1f2f6;
    border:none;
    border-radius:50px;
    font-size:14px;
}
.area-menu .active {
    background:#000;
    color:white;
}

/* SWIPER AREA CARD */
.area-slider-wrapper {
    background:#8ac7f921;
    border-radius:20px;
    padding:20px;
}

.swiper {
    width:100%;
    padding:20px 10px;
}

.area-card {
    display:flex;
    background:white;
    border-radius:18px;
    padding:14px;
    gap:14px;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.area-img-box {
    width:90px;
    height:80px;
    overflow:hidden;
    border-radius:14px;
}
.area-img-box img { width:100%; height:100%; object-fit:cover; }

/* Responsive */
@media (max-width:768px){
    .header-inner { width:90%; }
}

        /* ---------------- PROPERTY SECTION ---------------- */
        .property-container {
            width: 95%;
            margin: 40px auto;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .section-sub {
            color: #666;
            font-size: 14px;
            max-width: 600px;
            margin: 0 auto 20px;
        }
/* MOBILE SCROLLABLE TABS */
.property-menu {
    scroll-behavior: smooth;
}

@media (max-width: 600px) {
    .property-menu {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 6px;
        justify-content: flex-start !important; /* left align on mobile */
        -webkit-overflow-scrolling: touch;
    }

    .property-menu::-webkit-scrollbar {
        display: none; /* hide scrollbar */
    }

    .property-menu button {
        flex: 0 0 auto; /* do not shrink */
        padding: 8px 18px;
        font-size: 13px;
        border-radius: 50px;
        white-space: nowrap;
    }
}

        .property-menu {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .property-menu button {
            background: #eee;
            border: none;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            transition: .3s;
        }

        .property-card {
            opacity: 1;
            transition: .4s ease;
        }

        .hidden-card {
            opacity: 0;
            transform: translateY(20px);
        }

        .property-menu button.active {
            background:#0a72c6;
            color: #fff;
        }

        .card-box {
            border-radius: 16px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
            transition: .3s;
            
        }

        .card-box:hover {
            transform: translateY(-5px);
        }

        .card-box img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }

        .card-body {
            padding: 15px;
            display: grid;
        }

        .card-body h5 {
            font-size: 15px;
            font-weight: 700;
        }

        .location {
            font-size: 13px;
            color: #666;
            margin-bottom: 6px;
            display: inline-grid;
        }

        .meta {
            font-size: 12px;
            color: #777;
            display: inline-grid;
        }

        /* .meta span {
            float: right;
        } */

        .price {
            font-size: 15px;
            margin-top: 8px;
            font-weight: 700;
        }

        

        /* ---------------- WHY SECTION ---------------- */
        /* FIX WHY SECTION MOBILE HEIGHT */
@media (max-width: 600px) {

    .why-container {
        padding: 20px 18px !important;  /* reduce padding */
        margin: 20px auto !important;   /* reduce margin */
    }

    .why-list li {
        margin-bottom: 12px !important; /* reduce gaps */
    }

    .why-list p {
        margin: 4px 0 !important;       /* reduce paragraph spacing */
    }

    .why-img-box {
        padding: 3px !important;        /* slightly smaller image wrapper */
    }

    .why-img-box img {
        border-radius: 14px !important;
    }
}

        .why-container {
            width: 95%;
            margin: 40px auto;
            background: #8ac7f921;
            padding: 40px;
            border-radius: 22px;
            display: block;
        }

        .section-desc {
            font-size: 14px;
            margin-bottom: 20px;
            color: #555;
        }

        .why-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .why-list li {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
        }

        .check {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            color: #000;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .why-img-box {
            border-radius: 22px;
            overflow: hidden;
            padding: 6px;
            background: #fff;
            box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
        }

        .why-img-box img {
            width: 100%;
            border-radius: 18px;
        }

        /* TESTIMONIAL SECTION */
        .testimonialSwiper .swiper-pagination {
    position: relative !important;
    margin-top: 20px;
    text-align: center !important;
}
        .testimonialSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d4d4d4;
    opacity: 1;
    margin: 0 5px !important;
    transition: .3s ease;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    background: #0066ff;
    transform: scale(1.3);
}
.testimonial-section {
    width: 95%;
    margin: 40px auto;
}

.testimonial-title {
    font-size: 28px;
    font-weight: 700;
}

.testimonial-sub {
    color: #666;
    max-width: 600px;
    margin: 0 auto 25px;
}

/* SWIPER CARD */
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
    height: auto;
}

.testimonial-content p {
    font-size: 14px;
    color: #555;
    margin: 14px 0;
    line-height: 1.5;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.testimonial-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.testimonial-user h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.testimonial-user span {
    font-size: 12px;
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .testimonial-title {
        font-size: 22px;
    }
    .testimonial-card {
        padding: 20px;
    }
}

/* LOGO SLIDER SECTION */
.logo-slider-section {
    width: 95%;
    margin: 40px auto;
    overflow: hidden;
}

.logo-title {
    font-size: 24px;
    font-weight: 700;
}

/* Wrapper */
.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Track (no fixed width anymore) */
.logo-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: logoScroll 20s linear infinite;
}

/* Logos */
.logo-track img {
    height: 55px;
    width: auto;
    flex-shrink: 0;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: .3s;
}

.logo-track img:hover {
    filter: none;
    opacity: 1;
}

/* TRUE INFINITE SCROLL FIX */
@keyframes logoScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .logo-track img {
        height: 45px;
    }
}
@media (max-width: 480px) {
    .logo-track img {
        height: 36px;
    }
}


        /* ---------------- FOOTER ---------------- */
       /* --- MAIN FOOTER --- */
.main-footer {
    background:  #0a72c6;
    color: #ddd;
    padding: 50px 0 20px;
    margin-top: 40px;
}

.footer-inner {
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 35px;
}

.footer-col h4 {
    font-size: 22px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 10px;
}

.footer-col h5 {
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.footer-col ul {
    padding: 0;
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.25s;
}

.footer-col ul li a:hover {
    color: #FFF;
}

/* Social Icons */
.footer-social a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    background: #1a1a1a;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #FFF;
    margin-right: 8px;
    font-size: 16px;
    transition: .25s;
}

.footer-social a:hover {
    background: #FFF;
    color: #000;
}

/* Bottom Bar */
.footer-bottom {
    width: 95%;
    margin: 20px auto 0;
    border-top: 1px solid #333;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 12px;
}

.footer-bottom a {
    margin-left: 15px;
    color: #ddd;
    text-decoration: none;
    transition: .25s;
}

.footer-bottom a:hover {
    color: #FFF;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
.rotation-btn {
    background: #0a72c6;
    color: #fff !important;
    padding: 7px 16px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s ease;
}

.rotation-btn:hover {
    background: #0054a3;
    color: #fff !important;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 120px;
    margin-bottom: 20px;
    animation: fadeLogo 1.5s infinite alternate;
}

@keyframes fadeLogo {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

.loader {
    width: 45px;
    height: 45px;
    border: 4px solid #0a72c6;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Fade out */
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility .6s;
}

/* PAGE TITLE */
.page-title-box {
    width: 95%;
    margin: 30px auto 20px;
}
.page-title-box h1 {
    font-size: 34px;
    font-weight: 700;
}

/* FILTER BOX */
.filter-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 120px;
}

/* PROPERTY CARD */
.property-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: .25s ease;
    cursor: pointer;
}
.property-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}
.p-body { padding: 18px; }

.p-tag {
    background: #ffecc7;
    color: #8a6400;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
}

/* MOBILE FILTER */
.mobile-filter-btn {
    display: none;
    width: 100%;
    background: #0a72c6;
    color: #fff;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: none;
}
@media(max-width: 767px) {
    .mobile-filter-btn { display: block; }
    .filter-box { display: none !important; }
}

/* FILTER POPUP */
.filter-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9000;
}
.filter-popup.active { display: flex; }

.filter-popup-inner {
    background: #fff;
    width: 90%;
    max-width: 420px;
    padding: 20px;
    border-radius: 14px;
}
.filter-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.close-filter {
    font-size: 22px;
    cursor: pointer;
}



/* ---------------- HERO ---------------- */
.hero-new {
    width: 100%;
    height: 450px;
    background: 
        linear-gradient(rgba(5, 20, 50, 0.85), rgba(5, 20, 50, 0.80)),
        url('https://i.imgur.com/2fKf8iU.png');
    background-size: cover;
    background-position: bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-new-content h1 {
    font-size: 54px;
    font-weight: 700;
}

.hero-new-content p {
    font-size: 18px;
    margin-top: 6px;
    opacity: .9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* GLASS CARD */
.glass-info-card {
    width: 90%;
    max-width: 1000px;
    margin: -60px auto 40px;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 18px;
    padding: 28px 35px;
    color: white;
    text-align: center;
}

/* ---------------- ABOUT BLOCK ---------------- */
.about-flex {
    width: 90%;
    max-width: 1300px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.about-flex img {
   width: 100%;
    height: 380px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.about-text {
    max-width: 550px;
}
.about-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text p {
   font-size: 16px;
    line-height: 1.8;
    color: #555;
}
/* ABOUT SECTION RESPONSIVE FIX */
@media (max-width: 992px) {
    .about-flex {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-flex img {
        height: 260px;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .about-flex img {
        height: 220px;
    }
}

/* ---------------- SPECIALIZATION ---------------- */
.new-section {
    width: 95%;
    margin: 40px auto;
}

.section-head {
    text-align: center;
    margin-bottom: 30px;
}

.section-head h2 {
    font-size: 32px;
    font-weight: 700;
}

.section-head p {
    color: #666;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.spec-item {
    background: white;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    transition: .3s;
}

.spec-item:hover {
    transform: translateY(-6px);
}

.spec-item i {
    font-size: 34px;
    color: #0a72c6;
    margin-bottom: 10px;
}

/* ---------------- TESTIMONIALS ---------------- */
.testimonial-row {
    width: 95%;
    margin: 40px auto;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    scroll-behavior: smooth;
     justify-content: center;
}

.testimonial-slider::-webkit-scrollbar { display: none; }

.t-box {
    min-width: 330px;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

.t-client {
    font-weight: 600;
    margin-top: 8px;
}
@media (min-width: 992px) {
    .testimonial-slider {
        justify-content: center;
    }
    .team-slider {
        justify-content: center;
    }
}

/* MOBILE & TABLET: left align for proper scrolling */
@media (max-width: 991px) {
    .testimonial-slider,
    .team-slider {
        justify-content: flex-start !important;
    }
}
/* ---------------- TEAM ---------------- */
.team-slider {
    width: 95%;
    margin: 40px auto;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
     justify-content: center;
}

.team-card {
    min-width: 240px;
    background: white;
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.team-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}



/* CONTACT SECTION */
.contact-section {
    width: 95%;
    margin: 40px auto;
    background: #fff;
    padding: 40px 50px;
    border-radius: 22px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.contact-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-desc {
    color: #666;
    font-size: 14px;
    max-width: 550px;
    margin-bottom: 20px;
}

.info-box p {
    color: #555;
    margin-bottom: 5px;
}

/* RIGHT FORM */
.contact-form-box {
    background: #8ac7f921;
    padding: 28px;
    border-radius: 18px;
}

.contact-form-box h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.form-control {
    border-radius: 12px;
    padding: 12px;
    font-size: 14px;
}

.send-btn {
    width: 100%;
    background: #0a72c6;
    border: none;
    padding: 12px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    margin-top: 10px;
    transition: 0.3s;
}
.send-btn:hover {
    background: #005fcc;
}
.disabled-card {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    position: relative;
}

.sold-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 5;
}




  /* simple top bar */
        .top-nav {
           display: none;
            width: 100%;
            background: #ffffff;
            border-bottom: 1px solid #e5e7f0;
            padding: 8px 0;
            position: sticky;
            top: 0;
            z-index: 999;
        }
        .top-nav-inner {
            max-width: 1180px;
            margin: 0 auto;
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .breadcrumb-line {
            font-size: 11px;
            color: #777;
        }
        .btn-brochure {
            background: #0a72c6;
            color: #fff;
            border-radius: 30px;
            padding: 8px 22px;
            font-size: 14px;
            border: none;
        }
        .btn-brochure:hover {
            background: #134ad0;
        }

        /* main container */
        .page-wrap {
            max-width: 1180px;
            margin: 24px auto 60px;
            padding: 0 30px;
        }

        /* =============== FULL WIDTH TABS =============== */
        .fullwidth-tabs {
            width: 100%;
            background: #ffffff;
            border-bottom: 1px solid #e5e7f0;
            padding: 12px 0;
            margin-bottom: 22px;
            position: sticky;
            top: 0px; /* sits just under the top nav */
            z-index: 998;
        }
        .tabs-inner {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tab-btn {
            padding: 7px 18px;
            border-radius: 999px;
            border: 1px solid #e2e2e2;
            background: white;
            font-size: 13px;
            cursor: pointer;
        }
        .tab-btn.active {
            background: #0a72c6;
            color: #fff;
            border-color: #0a72c6;
        }

        /* hero section */
        .hero-head {
            display: grid;
            grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
            gap: 24px;
            align-items: flex-start;
            margin-bottom: 24px;
        }
        .hero-title {
            font-size: 26px;
            font-weight: 700;
            color: #276da7;
            margin-top: 10px;
        }
        .hero-sub {
            font-size: 14px;
            margin: 6px 0 12px;
            color: #555;
        }
        .hero-badges span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 10px;
            border-radius: 999px;
            background: #eef4ff;
            font-size: 11px;
            margin-right: 6px;
            color: #0a72c6;
        }
        .hero-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 6px;
            font-size: 13px;
        }
        .hero-rating i {
            color: #fbbf24;
        }
        .hero-price-box {
            background: #8ac7f921;
            color: #276da7;
            padding: 18px 18px 16px;
            border-radius: 16px;
            text-align: left;
        }
        .hero-price-main {
            font-size: 20px;
            font-weight: 700;
        }
        .hero-price-sub {
            font-size: 11px;
            opacity: 0.8;
        }
        .hero-download {
            margin-top: 14px;
        }
        .hero-download button {
            width: 100%;
            border-radius: 999px;
            border: none;
            padding: 10px;
            background: #0a72c6;
            color: #fff;
            font-size: 14px;
        }
        .hero-download button:hover {
            background: #134ad0;
        }
        .hero-download small {
            display: block;
            margin-top: 6px;
            font-size: 11px;
            opacity: .85;
        }

     /* LIGHTBOX ANIMATION */
.lightbox {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 99999;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    border-radius: 10px;
    transform: scale(0.9);
    transition: transform 0.35s ease;
}

.lightbox.show .lightbox-content {
    transform: scale(1);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.25s ease;
}

.close-lightbox:hover {
    opacity: 1;
}


        .gallery-wrap {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 12px;
            margin-bottom: 22px;
        }
        .gallery-main {
            border-radius: 12px;
            overflow: hidden;
            background: #000;
        }
        .gallery-main img {
            width: 100%;
    height: 260px;          /* auto height */
    object-fit: cover;
    border-radius: 12px;
        }
        .gallery-small {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .gallery-small img {
            width: 100%;
    height: 260px;          /* auto height */
    object-fit: cover;
    border-radius: 12px;
        }
@media (max-width: 600px) {
    .gallery-main img {
        height: 180px !important;
    }
    .gallery-small img {
        height: 100px !important;
    }
}

.dev-logo {
    width: 40px;
    height: 40px;
    background: #0a72c6;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

        /* quick facts */
        .facts-row {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin-bottom: 22px;
        }
        .fact-card {
            background: #ffffff;
            border-radius: 14px;
            padding: 12px 14px;
            border: 1px solid #ebedf4;
            font-size: 13px;
        }
        .fact-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .06em;
            color: #888;
            margin-bottom: 3px;
        }
        .fact-value {
            font-weight: 600;
        }

        /* layout: left content + right enquiry card */
        .content-grid {
            display: grid;
            grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
            gap: 24px;
        }

        .section-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 18px 18px 16px;
            border: 1px solid #e5e7f0;
            margin-bottom: 18px;
        }
        .section-card h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        .section-card p {
            font-size: 13px;
            margin-bottom: 6px;
            color: #444;
        }

        .highlight-strip {
            margin-top: 10px;
            font-size: 12px;
            padding: 10px 12px;
            border-radius: 10px;
            background: #fff7e6;
            color: #92400e;
        }

        .overview-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 10px;
            margin-top: 14px;
            font-size: 12px;
        }
        .overview-item span {
            display: block;
        }
        .overview-item .label {
            color: #777;
            font-size: 11px;
        }
        .overview-item .value {
            font-weight: 600;
            margin-top: 2px;
        }
        /* TABLETS (768px) – 2 columns */
@media (max-width: 900px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 18px;
    }
}

/* MOBILE (500px) – 1 column */
@media (max-width: 520px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .overview-item {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .overview-item:last-child {
        border-bottom: none;
    }
}

 /* RIGHT ENQUIRY – COMPACT & PERFECTLY STICKY */
.enquiry-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    border: 1px solid #e5e7f0;
    position: sticky;
    top: 110px;          /* form top distance */
    max-height: 370px;   /* FIXED compact height */
    overflow-y: auto;    /* scroll inside, not whole page */
}

/* Smooth scroll inside form */
.enquiry-card::-webkit-scrollbar {
    width: 6px;
}
.enquiry-card::-webkit-scrollbar-thumb {
    background: #d1d1d1;
    border-radius: 10px;
}

/* Developer top section */
.enquiry-devtop {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.dev-icon {
    width: 45px;
    height: auto;
    border-radius: 10px;
}

.small-text {
    font-size: 11px;
    color: #999;
}

.dev-name {
    font-size: 14px;
    font-weight: 600;
}
#mapEmbed iframe {
    width: 100% !important;
    height: 350px;
    border: 0;
    border-radius: 12px;
    display: block;
}
/* FAQ Accordion */
.faq-accordion {
    margin-top: 10px;
}

.faq-item {
    border-bottom: 1px solid #e6e6e6;
    padding: 10px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    transition: transform .25s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding-right: 10px;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* enough for 2–3 lines */
    margin-top: 6px;
}

/* Wrapper styling */
#mapEmbed {
    margin-top: 15px;
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
/* Title */
.enquiry-title {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

/* Inputs */
.custom-input {
    height: 42px;
    border-radius: 8px;
    border: 1px solid #d5dae5;
    font-size: 13px;
    margin-bottom: 10px;
}

/* Checkbox text */
.checkbox-label {
    font-size: 12px;
}

/* CTA Button */
.enquiry-btn {
    width: 100%;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    background: #0a72c6;
    color: #fff;
    border: none;
    margin-top: 5px;
}
.enquiry-btn:hover {
    background: #134ad0;
}

/* Small note */
.small-note {
    font-size: 11px;
    margin-top: 10px;
    color: #666;
}

/* QR compact */
.qr-block {
    text-align: center;
    margin: 14px 0 10px;
}
.qr-img {
    width: 120px;
    height: 120px;
}

/* RERA */
.rera-id {
    text-align: center;
    font-weight: 700;
    margin-top: 4px;
}
.rera-link {
    text-align: center;
    font-size: 11px;
}

        /* AMENITIES – RESPONSIVE GRID */
.amenities-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 20px;
    margin-top: 10px;
    padding-left: 5px;
    font-size: 14px;
}

.amenities-cols li {
    list-style: none;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
}

.amenities-cols li i {
    color: #0a72c6;
    margin-right: 6px;
    margin-top: 2px;
}

/* TABLET VIEW */
@media (max-width: 768px) {
    .amenities-cols {
        grid-template-columns: 1fr 1fr;   /* two columns */
        gap: 10px 15px;
    }
}

/* MOBILE – single column */
@media (max-width: 520px) {
    .amenities-cols {
        grid-template-columns: 1fr;      /* single column */
        gap: 10px 0;
        font-size: 11px;
    }
}
        /* FAQ style – very light */
        .faq-item {
            border-top: 1px solid #edf0fa;
            padding: 10px 0;
        }
        .faq-q {
            font-weight: 600;
            font-size: 13px;
        }
        .faq-a {
            font-size: 12px;
            margin-top: 4px;
            color: #555;
        }

        /* simple table style for offers / area price */
        .simple-table {
            width: 100%;
            font-size: 13px;
        }
        .simple-table th,
        .simple-table td {
            padding: 6px 8px;
            border-bottom: 1px solid #f0f0f0;
        }
        .simple-table th {
            font-weight: 600;
            color: #555;
        }

        @media (max-width: 992px) {
            .hero-head,
            .gallery-wrap,
            .facts-row,
            .content-grid {
                grid-template-columns: 1fr;
            }
            .enquiry-card {
                position: static;
                top: auto;
            }
        }
        
        
/* ---------------- SMALL HERO SECTION ---------------- */
.hero-small {
    width: 100%;
    height: 160px;
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('https://images.pexels.com/photos/439391/pexels-photo-439391.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-small h1 {
    font-size: 34px;
    font-weight: 700;
    margin: 0;
}

.hero-small p {
    font-size: 14px;
    margin-top: 4px;
    opacity: 0.9;
}

/* ---------------- PAGE WRAPPER ---------------- */
.gallery-page {
    width: 95%;
    margin: 40px auto;
}

/* ---------------- TITLES ---------------- */
.gallery-title {
    text-align: center;
    margin-bottom: 10px;
}

.gallery-title h2 {
    font-size: 32px;
    font-weight: 700;
}

.gallery-sub {
    color: #666;
    font-size: 14px;
    text-align: center;
    margin-bottom: 25px;
}

/* ---------------- FILTER BUTTONS ---------------- */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.gallery-filter button {
    border: none;
    padding: 8px 22px;
    border-radius: 50px;
    background: #f1f2f6;
    font-size: 14px;
    cursor: pointer;
    transition: 0.25s ease;
}

.gallery-filter button.active {
    background: #000;
    color: #fff;
}

/* ---------------- MOBILE FILTER SCROLL ---------------- */
@media (max-width: 768px) {
    .gallery-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 5px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .gallery-filter::-webkit-scrollbar {
        display: none;
    }

    .gallery-filter button {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 13px;
    }
}

/* ---------------- GALLERY GRID ---------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------- IMAGE ITEM ---------------- */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: opacity .35s ease, transform .35s ease;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    transition: .3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ---------------- FILTER ANIMATION ---------------- */
.gallery-item.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    visibility: hidden;
    position: absolute;
}

/* ---------------- LIGHTBOX CAPTION ---------------- */
.lb-caption {
    font-size: 14px !important;
}



/* ---------------- SMALL HERO SECTION ---------------- */
.hero-small {
    width: 100%;
    height: 160px;
    background:
        linear-gradient(rgba(5, 20, 50, 0.70), rgba(5, 20, 50, 0.70)),
        url('https://images.pexels.com/photos/439391/pexels-photo-439391.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-small h1 {
    font-size: 34px;
    font-weight: 700;
    margin: 0;
}

.hero-small p {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 6px;
}

/* ---------------- PAGE WRAPPER ---------------- */
.faq-page {
    width: 95%;
    max-width: 1100px;
    margin: 40px auto;
}

/* ---------------- TITLE ---------------- */
.faq-title {
    text-align: center;
    margin-bottom: 20px;
}

.faq-title h2 {
    font-size: 32px;
    font-weight: 700;
}

.faq-sub {
    font-size: 14px;
    color: #666;
}

/* ---------------- SEARCH ---------------- */
.faq-search {
    margin: 25px auto 40px;
    max-width: 450px;
}

.faq-search input {
    width: 100%;
    padding: 12px 18px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-size: 15px;
    outline: none;
}

/* ---------------- ACCORDION WRAPPER ---------------- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ---------------- FAQ ITEM ---------------- */
.faq-item {
    background: #ffffff;
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    cursor: pointer;
    transition: .3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

/* ---------------- QUESTION ---------------- */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: #222;
}

.faq-question i {
    transition: .3s ease;
}

/* ---------------- ANSWER ---------------- */
.faq-answer {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    line-height: 1.6;
    transition: max-height .4s ease;
}

/* ---------------- OPEN STATE ---------------- */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 576px) {
    .faq-title h2 {
        font-size: 26px;
    }
}



/* ================= BLOG LIST PAGE ================= */
/* BLOG SECTION */
.blogs-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.blogs-title {
  margin-bottom: 25px;
}

/* FILTER BUTTONS */
.blog-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.blog-filter button {
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  background: #e6e9ef;
  cursor: pointer;
}

.blog-filter button.active {
  background: #0a72c6;
  color: #fff;
}

/* BLOG GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

/* BLOG CARD */
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card-body {
  padding: 18px;
}

.blog-tag {
  display: inline-block;
  font-size: 12px;
  background: #eaf2ff;
  color: #0a72c6;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 18px;
  margin: 10px 0;
}

.blog-card p {
  font-size: 14px;
  color: #555;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #0a72c6;
  font-weight: 600;
  text-decoration: none;
}
/* BLOG HEADER */
.single-blog-hero {
  background: #0a72c6;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* LAYOUT */
.single-blog-layout {
  max-width: 1200px;
  margin: 30px auto;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
  padding: 0 15px;
}

/* CONTENT */
.blog-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
}

.blog-content h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.blog-meta {
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

.blog-hero {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 25px;
}

.blog-text p {
  line-height: 1.8;
  margin-bottom: 16px;
}

/* AUTHOR BOX (optional future use) */
.author-box {
  margin-top: 40px;
  padding: 20px;
  background: #f1f4fa;
  border-radius: 10px;
}

/* SIDEBAR */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-sidebar h4 {
  margin-bottom: 15px;
}

.blog-sidebar a {
  color: #0a72c6;
  text-decoration: none;
  font-size: 14px;
}

.blog-sidebar a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .single-blog-layout {
    grid-template-columns: 1fr;
  }
}

/*review*/

.review-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

.review-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.review-card {
  min-width: 300px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.review-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.review-card h4 {
  margin: 5px 0;
}

.review-card .contact {
  font-size: 13px;
  color: #777;
}

.review-card .review-text {
  font-size: 14px;
  margin-top: 10px;
  color: #444;
}

/* Review Form */
.review-form-container {
  max-width: 500px;
  margin: 50px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.review-form-container input,
.review-form-container textarea {
  width: 90%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.review-form-container button {
  width: 100%;
  padding: 12px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}
.logo-track img {
  height: 80px;
  object-fit: contain;
}

/* ===============================
   PROPERTY CARD STYLE (LIKE IMAGE)
================================ */

.property-card {
    display: block;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: #111;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.property-image {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* CARD BODY */
.property-body {
    padding: 16px 18px 18px;
}

/* TITLE */
.property-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px;
    text-transform: capitalize;
}

/* LOCATION */
.property-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

/* META (PLOT SIZE etc.) */
.property-meta {
    font-size: 14px;
    color: #222;
    margin-bottom: 10px;
}

/* STATUS TEXT */
.property-status {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

/* OPTIONAL: ICON ALIGN */
.property-location i {
    margin-right: 4px;
    color: #999;
}

/* RESPONSIVE IMAGE HEIGHT */
@media (max-width: 768px) {
    .property-image {
        height: 180px;
    }
}
.map-wrap iframe {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 12px;
}
.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #6b7280;
    margin: 12px 0;
}

.blog-sidebar a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    text-decoration: none;
    color: #111827;
}

.blog-sidebar a small {
    color: #6b7280;
    font-size: 12px;
}
/* ===============================
   SINGLE BLOG LAYOUT
================================ */
.single-blog-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

/* ===============================
   BLOG CONTENT
================================ */
.single-blog-content {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.single-blog-hero {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 20px;
}

.single-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
}

.single-blog-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 22px;
    line-height: 1.3;
}

.single-blog-text {
    font-size: 16px;
    line-height: 1.8;
    color: #1f2937;
}

.single-blog-text h2 {
    margin: 32px 0 16px;
}

.single-blog-text img {
    max-width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

/* ===============================
   SIDEBAR
================================ */
.single-blog-sidebar {
    position: sticky;
    top: 30px;
}

.sidebar-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.sidebar-card h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.recent-post {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    text-decoration: none;
    color: #111827;
}

.recent-post span {
    display: block;
    font-size: 12px;
    color: #6b7280;
}

.blog-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-info li {
    font-size: 14px;
    margin-bottom: 8px;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 900px) {
    .single-blog-wrapper {
        grid-template-columns: 1fr;
    }

    .single-blog-sidebar {
        position: static;
    }

    .single-blog-title {
        font-size: 26px;
    }
}
.enquiry-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.developer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.developer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.developer-name {
    font-size: 13px;
    color: #6b7280;
}

.developer-name strong {
    color: #111827;
    font-size: 14px;
}

.enquiry-title {
    font-size: 16px;
    font-weight: 600;
    margin: 12px 0;
}

.enquiry-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background: #0a72c6;
    color: #fff;
    border: none;
    font-weight: 600;
}

.consent {
    font-size: 12px;
    margin: 10px 0;
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.enquiry-note {
    font-size: 12px;
    text-align: center;
    color: #6b7280;
    margin-top: 10px;
}
/* ===============================
   PROJECT HIGHLIGHT STRIP
================================ */
.project-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff7e6;
    border: 1px solid #fde68a;
    color: #92400e;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    margin: 18px 0 22px;
}

.highlight-icon {
    font-size: 16px;
    line-height: 1;
}

.highlight-text {
    line-height: 1.5;
}

/* Optional: section card polish */
.section-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.faq-item {
    border-top: 1px solid #e5e7eb;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.faq-answer {
    display: none;
    padding-bottom: 14px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    display: block;
}
.arrow {
    transition: transform .2s ease;
}
.faq-item.active .arrow {
    transform: rotate(180deg);
}


/* =====================================================
   MOBILE FRIENDLY OVERRIDES
   Add this at END of main.css
===================================================== */

@media (max-width: 768px) {

  /* ---------- GLOBAL ---------- */
  body {
    font-size: 14px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-sub,
  .area-section-sub,
  .section-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  /* ---------- HEADER ---------- */
  .header-inner {
    width: 92%;
    padding: 10px 16px;
  }

  .header-logo img {
    height: 44px;
  }

  .custom-header {
    padding: 10px 0;
  }

  /* ---------- HERO ---------- */
  .hero-container {
    width: 95%;
    margin-top: 10px;
  }

  .hero-img {
    height: 240px;
    border-radius: 14px;
  }



  .area-section-title {
    font-size: 20px;
  }

  /* Scrollable category buttons */
  .area-menu {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
  }

  .area-menu::-webkit-scrollbar {
    display: none;
  }

  .area-menu button {
    flex: 0 0 auto;
    font-size: 13px;
    padding: 6px 16px;
    white-space: nowrap;
  }



  /* Area cards single column */
  .area-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .area-img-box {
    width: 80px;
    height: 70px;
  }

  /* Hide slider arrows on mobile */
  .slider-btn {
    display: none;
  }

  /* ---------- ABOUT SECTION ---------- */
  .about-container {
    padding: 22px;
    margin: 25px auto;
  }

  .two-image-wrapper .img-main {
    height: 220px;
  }

  .two-image-wrapper .img-small {
    height: 150px;
    bottom: -25px;
  }

  .about-title {
    font-size: 18px;
  }

  .about-desc {
    font-size: 13px;
  }

  .about-stats {
    flex-direction: column;
    gap: 12px;
  }

  /* ---------- PROPERTY SECTION ---------- */
  .property-container {
    margin: 30px auto;
  }

  .property-menu {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .property-menu::-webkit-scrollbar {
    display: none;
  }

  .property-menu button {
    flex: 0 0 auto;
    font-size: 13px;
    padding: 7px 16px;
    white-space: nowrap;
  }

  .property-card {
    margin-bottom: 15px;
  }

  .card-box img {
    height: 150px;
  }

  /* Force 1 card per row */
  #property-list > div {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* ---------- WHY SECTION ---------- */
  .why-container {
    padding: 22px;
    margin: 30px auto;
  }

  .why-list li {
    margin-bottom: 14px;
  }

  .why-list p {
    font-size: 13px;
  }

  /* ---------- REVIEWS ---------- */
  .review-section {
    padding: 40px 15px;
  }

  .review-slider {
    justify-content: flex-start;
  }

  .review-card {
    min-width: 260px;
  }

  /* ---------- LOGO SLIDER ---------- */
  .logo-track img {
    height: 42px;
  }

  /* ---------- FOOTER ---------- */
  .footer-inner {
    flex-direction: column;
    gap: 25px;
  }

  .footer-col h4 {
    font-size: 18px;
  }

  .footer-col p,
  .footer-col ul li {
    font-size: 13px;
  }

  .footer-bottom {
    text-align: center;
    gap: 8px;
  }
}

/* =====================================================
   SMALL MOBILE (VERY SMALL PHONES)
===================================================== */
@media (max-width: 480px) {

  .hero-img {
    height: 200px;
  }

  .section-title {
    font-size: 20px;
  }

  .area-section-title {
    font-size: 18px;
  }

  .card-box img {
    height: 135px;
  }

  .review-card {
    min-width: 230px;
  }

  .about-title {
    font-size: 17px;
  }
}
/* ===============================
   AREA SLIDER – MOBILE FIX
================================ */

@media (max-width: 768px) {

  .area-slider-wrapper {
    overflow: visible; /* IMPORTANT */
    padding: 0;
  }

  .area-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;          /* ENABLE SCROLL */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 10px 15px;
    transform: none !important; /* STOP JS TRANSFORM */
  }

  .area-slider::-webkit-scrollbar {
    display: none;
  }

  .area-card {
    flex: 0 0 92%;              /* 1 card per view */
    max-width: 92%;
    scroll-snap-align: start;
  }
}
/* ===============================
   PRICE BADGE COLORS ONLY
================================ */

/* COMMON BADGE */
.badge-card {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

/* 🔴 SOLD OUT */
.badge-card.sold {
  background: #ffe1e1;
  color: #b30000;
  border: 1px solid #d11a2a;
}

/* 🔵 AVAILABLE (HIGHLIGHT FROM ADMIN) */
.badge-card.available {
  background: rgba(10, 114, 198, 0.12);   /* #0a72c6 */
  color: #0a72c6;
  border: 1px solid #0a72c6;
}
.card-actions {
    margin-top: 12px;
}

.more-info-btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 22px;
    background: #0a72c6;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .property-card:hover .more-info-btn {
        background: #0054a3;
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(10,114,198,0.35);
    }
}

@media (max-width: 576px) {
    .more-info-btn {
        width: 100%;
        padding: 10px 0;
    }
}
.sidebar-cta a {
    background: linear-gradient(135deg,#0a72c6,#0054a3);
    color:#fff!important;
    padding:12px;
    border-radius:14px;
    font-weight:700;
    display:flex;
    justify-content:center;
    gap:8px;
}
/* HERO BADGES ROW */
.hero-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* BREADCRUMB (LEFT SIDE) */
.hero-breadcrumb {
    font-size: 12px;
    color: #777;
    margin-right: 12px;
    white-space: nowrap;
}

/* BADGE STYLE (RIGHT SIDE) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef4ff;
    font-size: 11px;
    color: #0a72c6;
}

.hero-badge.rera {
    background: #e8f5e9;
    color: #2e7d32;
}

/* MOBILE FRIENDLY */
@media (max-width: 576px) {
    .hero-breadcrumb {
        width: 100%;
        margin-bottom: 6px;
        white-space: normal;
    }
}
/* =========================================
   FIX: PROPERTY GRID CARD WIDTH ISSUE
========================================= */

/* Ensure bootstrap grid works properly */
#propertyList {
    display: flex;
    flex-wrap: wrap;
}

/* Column safety */
#propertyList > div {
    display: flex;
}



/* Hover */
.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGE FIX */
.property-image {
    position: relative;
    width: 100%;
    height: 200px; /* IMPORTANT */
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* CARD BODY */
.property-body {
    padding: 14px 16px 18px;
}

.property-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.property-location {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.property-meta {
    font-size: 13px;
    color: #444;
}

/* STATUS TEXT */
.property-status {
    font-size: 12px;
    color: #777;
    margin-top: 6px;
}

/* RESPONSIVE FIXES */
@media (max-width: 992px) {
    .property-image {
        height: 190px;
    }
}

@media (max-width: 576px) {
    .property-image {
        height: 180px;
    }

    .property-card {
        border-radius: 16px;
    }
}
/* =========================================
   HOMEPAGE – TRENDING HOMES CARD FIX
   (ONLY FOR INDEX PAGE SECTION)
========================================= */

/* Container safety */
.property-container .property-card {
    width: 100%;
    max-width: 100%;
    display: block;
    border-radius: 22px;
    overflow: hidden;
}

/* Image area */
.property-container .property-image {
    height: 240px;   /* KEY FIX */
    width: 100%;
    position: relative;
}

.property-container .property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card body spacing */
.property-container .property-body {
    padding: 18px 22px 20px;
}

/* Title */
.property-container .property-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

/* Meta text */
.property-container .property-location,
.property-container .property-meta {
    font-size: 14px;
    color: #666;
}

/* Sold / Highlight badge */
.property-container .property-badge {
    bottom: 14px;
    left: 14px;
}

/* ===============================
   PROPERTY CARD BODY
   (Same style as AREA info)
================================ */

.property-card .card-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* TITLE */
.property-card .card-body h5 {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin: 0 0 2px;
    line-height: 1.25;
}

/* LOCATION & META */
.property-card .card-body .location,
.property-card .card-body .meta {
    font-size: 12px;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.3;
}

/* ICON COLOR (same as area-meta) */
.property-card .card-body .location::before {
    content: "📍";
    font-size: 13px;
}

.property-card .card-body .meta::before {
    content: "📐";
    font-size: 13px;
}

/* VALUE TEXT */
.property-card .card-body span {
    color: #111;
    font-weight: 500;
}
/* Force white text on More Info button */
.property-card .more-info-btn {
    color: #ffffff !important;
}

/* Keep white on hover & focus */
.property-card .more-info-btn:hover,
.property-card .more-info-btn:focus {
    color: #ffffff !important;
}

/* BUTTON – SAME AS AREA BTN */
.property-card .card-actions {
    margin-top: 8px;
}

.property-card .more-info-btn {
    display: inline-block;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 999px;
    background: linear-gradient(135deg, #0a72c6, #084298);
    color: #fff;
    transition: all .25s ease;
}

/* HOVER EFFECT – SAME FEEL */
.property-card:hover .more-info-btn {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(10,114,198,.35);
}

.property-card:hover .card-body h5 {
    color: #0a72c6;
}

/* ===============================
   MOBILE TUNING
================================ */

@media (max-width: 576px) {
    .property-card .card-body h5 {
        font-size: 14px;
    }

    .property-card .card-body .location,
    .property-card .card-body .meta {
        font-size: 11px;
    }

    .property-card .more-info-btn {
        font-size: 11px;
        padding: 5px 14px;
    }
}


/* MOBILE FIX */
@media (max-width: 768px) {
    .property-container .property-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .property-container .property-image {
        height: 180px;
    }

    .property-container .property-body {
        padding: 16px;
    }
}
/* =====================================
   PROPERTY GRID – 3 COLUMN LAYOUT
===================================== */

/* Desktop: 3 columns */
#propertyList > div {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
    #propertyList > div {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile: 1 column */
@media (max-width: 576px) {
    #propertyList > div {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* ==================================================
   INDEX PAGE – TRENDING HOMES (3 COLUMN FIX)
================================================== */

/* Desktop: 3 columns */
#property-list > div {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
    #property-list > div {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile: 1 column */
@media (max-width: 576px) {
    #property-list > div {
        flex: 0 0 100%;
        max-width: 100%;
    }
}






/* =====================================
   PROPERTY BADGE – FINAL (CLEAN VERSION)
   🔴 Sold = Red
   🔵 Other = Blue
===================================== */

.property-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;

    display: inline-flex;
    align-items: center;

    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;

    border-radius: 999px;
    white-space: nowrap;

    background: rgba(255 255 255); /* blue */
    color: #0a72c6;

    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    z-index: 2;
}

/* 🔴 SOLD OUT */
.property-badge.sold {
    background: #ffe1e1;
    color: #b30000;
    border: 1px solid #d11a2a;
}

/* 📱 MOBILE OPTIMIZATION */
@media (max-width: 576px) {
    .property-badge {
        bottom: 10px;
        left: 10px;
        font-size: 11px;
        padding: 5px 12px;
    }
}

/* 📱 EXTRA SMALL DEVICES */
@media (max-width: 400px) {
    .property-badge {
        font-size: 10.5px;
        padding: 4px 10px;
    }
}
/* PROPERTY FILTER FIX */
.property-card.hidden {
    display: none !important;
}
/* =====================================
   PROPERTIES PAGE – GRID LAYOUT (FINAL)
===================================== */

/* Grid wrapper */
#propertyList {
    display: flex;
    flex-wrap: wrap;
}

/* Each bootstrap column */
#propertyList > div {
    display: flex;
}

/* Desktop – 3 columns */
#propertyList > div {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

/* Tablet – 2 columns */
@media (max-width: 992px) {
    #propertyList > div {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile – 1 column */
@media (max-width: 576px) {
    #propertyList > div {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.property-card {
    width: 100%;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.property-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ===============================
   INTRO VIDEO SECTION
================================ */
.intro-video-section {
    padding: 80px 20px;
    background: #f7f9fc;
}

.intro-video-card {
    max-width: 1200px;
    margin: auto;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    padding: 30px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
}

/* VIDEO */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* CONTENT */
.video-content h3 {
    font-size: 26px;
    color: #0a2a66;
    margin-bottom: 12px;
}

.video-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.video-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video-content li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
    .intro-video-card {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .video-content h3 {
        font-size: 22px;
    }
}
