/* ==========================================================================
   PRIMARY STYLESHEET (css/styles.css)
   Contains styles for:
   1. [ GLOBAL ] Color Palette, Reset, Header & Footer
   2. [ PAGE: index.php ] Home Page Hero, Trends, Sellers & Sliders
   3. [ PAGE: details.php ] Property Details Page, Gallery & Lightbox
   4. [ PAGE: list.php ] Property Listing Grid, Card Sliders & Contact Form
   ========================================================================== */

/* ==========================================================================
   1. [ GLOBAL ] COLOR PALETTE & CSS VARIABLES
   ========================================================================== */
:root {
    --primary-navy: #151247;
    --navy-dark: #151247; /* darker shade of primary */
    --accent-orange: #bd4a3c;
    --orange-light: #fff4e8; /* light version of accent */
    --secondary-blue: #005dba; /* extra brand color – used for subtle accents */
    --bg-color: #f1f5f9;
    --white: #ffffff;
    --text-main: #151247;
    --text-muted: #64748b;
    --border-light: #e2e8f0;
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 40px -12px rgba(32, 53, 110, 0.25);
    --radius-lg: 20px;
    --radius-md: 14px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. [ GLOBAL ] RESET & CONTAINER UTILITIES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", "Segoe UI", Roboto, sans-serif;
}
body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   3. [ GLOBAL / HEADER ] DESKTOP HEADER & NAVIGATION BAR
   ========================================================================== */
header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 25%;
}
.logo > img {
    width: 35%;
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}
.nav-links a {
    transition: var(--transition);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}
.nav-links a:hover {
    color: var(--primary-navy);
    border-bottom-color: var(--accent-orange);
}

/* ==========================================================================
   4. [ GLOBAL / HEADER ] MEGA MENU DROPDOWN
   ========================================================================== */
.has-megamenu {
    position: relative;
}
.megamenu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 660px;
    background: var(--white);
    border-bottom: 3.5px solid var(--accent-orange);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 99;
}
.has-megamenu:hover .megamenu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.megamenu-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 24px 28px;
}
.megamenu-col h4 {
    font-size: 14px;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 16px;
    border-left: 3px solid var(--accent-orange);
    padding-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.megamenu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.megamenu-col ul li a {
    font-size: 13.5px;
    color: var(--text-muted) !important;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: none !important;
    padding: 2px 0 !important;
    display: inline-block;
}
.megamenu-col ul li a:hover {
    color: var(--accent-orange) !important;
    transform: translateX(4px);
}

.auth-buttons {
    display: flex;
    gap: 12px;
}
.btn-outline {
    border: 1.5px solid var(--primary-navy);
    color: var(--primary-navy);
    padding: 10px 22px;
    border-radius: 50px;
    background: transparent;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(32, 53, 110, 0.15);
}
.btn-primary {
    background: var(--accent-orange);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary:hover {
    background: #e6731f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 131, 40, 0.35);
}

/* Mobile Hamburger Toggle Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 6px;
    z-index: 110;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-navy);
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: center;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   5. [ GLOBAL / HEADER ] MOBILE SLIDE-IN TOGGLE DRAWER
   ========================================================================== */
.mobile-toggle {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 340px;
    height: 100vh;
    background: white;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
    padding: 80px 28px 40px;
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 105;
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow-y: auto;
}
.mobile-toggle.open {
    right: 0;
}
.mobile-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 8px;
}
.mobile-logo {
    width: 120px;
}
.mobile-logo img {
    width: 100%;
    height: auto;
    display: block;
}
.mobile-close {
    background: transparent;
    border: none;
    font-size: 22px;
    color: var(--primary-navy);
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
    width: 36px;
    height: 36px;
}
.mobile-close:hover {
    background: var(--orange-light);
    color: var(--accent-orange);
}

.mobile-toggle .nav-links {
    flex-direction: column;
    gap: 18px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
}
.mobile-toggle .nav-links a {
    border-bottom: none;
    padding: 8px 0;
    display: block;
}
.mobile-toggle .nav-links a:hover {
    border-bottom: 2px solid var(--accent-orange);
    color: var(--primary-navy);
}
.mobile-dropdown {
    width: 100%;
}
.mobile-megamenu a {
    border-bottom: none !important;
    padding: 4px 0 !important;
    font-size: 14.5px !important;
    font-weight: 500 !important;
    color: var(--text-muted) !important;
    display: inline-block !important;
}
.mobile-megamenu a:hover {
    color: var(--accent-orange) !important;
    border-bottom-color: transparent !important;
}

.mobile-toggle .auth-buttons {
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}
.mobile-toggle .auth-buttons .btn-outline,
.mobile-toggle .auth-buttons .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 15px;
}

/* Mobile Toggle Background Overlay */
.toggle-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 104;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.toggle-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Responsive Header Rules */
@media (max-width: 900px) {
    .logo {
        width: 40%;
    }
    .logo > img {
        width: 35%;
    }
    .nav-links {
        gap: 20px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header-inner .nav-links,
    .header-inner .auth-buttons {
        display: none !important;
    }
    .hamburger {
        display: flex;
    }
    .logo {
        width: 50%;
    }
    .logo > img {
        width: 35%;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 60%;
    }
    .mobile-toggle {
        width: 85%;
        padding: 70px 20px 30px;
    }
}

/* ==========================================================================
   6. [ PAGE: Home Page (index.php) ] HERO SEARCH BANNER SECTION
   ========================================================================== */
.hero {
    position: relative;
    height: 520px;
    background: url("https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?q=80&w=1920&auto=format&fit=crop")
        no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(32, 53, 110, 0.92) 0%,
        rgba(0, 93, 186, 0.75) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 820px;
    padding: 20px;
}
.hero h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
    background: linear-gradient(to right, #ffffff, #fcd34d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 28px;
    font-weight: 400;
}

.search-box {
    background: var(--white);
    padding: 8px;
    border-radius: var(--radius-md);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.search-input {
    flex: 1;
    border: none;
    padding: 14px 20px;
    font-size: 14px;
    outline: none;
    border-radius: 10px;
    background: #f1f5f9;
    min-width: 200px;
    font-weight: 500;
}
.search-input:focus {
    background: #e9edf3;
}
.search-btn {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.search-btn:hover {
    background: #e6731f;
    transform: scale(1.02);
}
.hero-tags {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-tags span {
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

/* ==========================================================================
   7. [ PAGE: Home Page (index.php) ] STATISTICS BAR SECTION
   ========================================================================== */
.stats-bar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    padding: 32px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 16px;
    text-align: center;
}
.stat-item {
    padding: 10px;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--border-light);
}
.stat-number {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}
.stat-number span {
    color: var(--accent-orange);
}
.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   8. [ GLOBAL ] SECTION HEADERS / TITLES STYLES
   ========================================================================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 56px 0 24px;
}
.section-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-header h2 i {
    color: var(--accent-orange);
    font-size: 22px;
}
.section-header span {
    font-size: 13px;
    color: var(--accent-orange);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.section-header span:hover {
    color: var(--primary-navy);
    gap: 12px;
}

/* ==========================================================================
   9. [ GLOBAL ] UNIVERSAL CARD STYLES
   ========================================================================== */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 232, 240, 0.4);
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-orange);
}
.card-img-top {
    width: 100%;
    height: 210px;
    object-fit: cover;
}
.card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 4px;
}
.card-location {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.card-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-orange);
    margin-top: auto;
}
.card-btn {
    margin-top: 14px;
    display: block;
    width: 100%;
    background: var(--white);
    border: 2px solid var(--accent-orange);
    padding: 12px;
    border-radius: 10px;
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}
.card-btn:hover {
    background: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
}

/* ==========================================================================
   10. [ GLOBAL ] SWIPER SLIDER CUSTOM OVERRIDES
   ========================================================================== */
.swiper {
    padding-bottom: 35px !important;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: var(--accent-orange);
    width: 28px;
    border-radius: 10px;
}

/* ==========================================================================
   11. [ GLOBAL ] GRID LAYOUT UTILITIES
   ========================================================================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

/* ==========================================================================
   12. [ PAGE: Home Page (index.php) ] PROPERTY TYPE CATEGORIES GRID
   ========================================================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 24px;
    margin: 30px 0;
}
.category-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.3);
    box-shadow: var(--shadow-card);
}
.category-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--orange-light);
}
.category-icon {
    width: 76px;
    height: 76px;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
    border: 1px solid rgba(255, 131, 40, 0.1);
}
.category-card:hover .category-icon {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: scale(1.05);
}
.category-icon i {
    font-size: 30px;
    color: var(--accent-orange);
    transition: var(--transition);
}
.category-card:hover .category-icon i {
    color: white;
}
.category-card h4 {
    font-size: 16px;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 4px;
}
.category-card p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section {
    margin: 50px 0;
}
.testimonialsSwiper .swiper-slide {
    height: auto;
    display: flex;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-card);
    border-left: 5px solid var(--accent-orange);
    height: 100%;
    width: 100%;
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.3);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}
.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 14px;
    font-size: 15px;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--accent-orange);
}
.author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-navy);
}
.author-role {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-choose-section {
    background: var(--white);
    padding: 56px 44px;
    border-radius: var(--radius-lg);
    margin: 50px 0;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(226, 232, 240, 0.3);
}
.why-choose-section h2 {
    color: var(--primary-navy);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}
.why-choose-section p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 15px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.feature-item {
    padding: 28px 20px;
    border-radius: var(--radius-md);
    background: var(--bg-color);
    transition: var(--transition);
    border: 1px solid transparent;
}
.feature-item:hover {
    background: var(--orange-light);
    border-color: var(--accent-orange);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.feature-item i {
    font-size: 36px;
    color: var(--accent-orange);
    margin-bottom: 14px;
}
.feature-item h4 {
    font-size: 17px;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 4px;
}
.feature-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* =========================================
   HIGHLIGHTED PROJECT
   ========================================= */
.highlight-card {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    flex-wrap: wrap;
    border: 1px solid rgba(226, 232, 240, 0.3);
    height: 380px;
}
.highlight-left {
    flex: 1;
    padding: 40px;
    min-width: 280px;
    background: var(--orange-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.highlight-left h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 6px;
}
.highlight-left p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.highlight-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 20px;
}
.highlight-btn {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    width: fit-content;
    transition: var(--transition);
}
.highlight-btn:hover {
    background: #e6731f;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 131, 40, 0.35);
}
.highlight-right {
    flex: 2;
    min-width: 300px;
    position: relative;
    height: 100%;
    overflow: hidden;
}
.highlight-right img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .highlight-card {
        height: auto !important;
    }
    .highlight-left {
        padding: 24px;
    }
    .highlight-right {
        height: 240px !important;
    }
    .highlight-right img {
        height: 240px !important;
        object-fit: cover !important;
    }
}

.highlight-nav {
    display: flex;
    gap: 10px;
    align-items: center;
}
.highlight-btn-prev,
.highlight-btn-next {
    background: var(--white);
    color: var(--primary-navy);
    border: 1.5px solid rgba(15, 23, 42, 0.15);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}
.highlight-btn-prev:hover,
.highlight-btn-next:hover {
    background: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 131, 40, 0.25);
}
.highlight-btn-prev:active,
.highlight-btn-next:active {
    transform: translateY(0);
}

/* =========================================
   HIGHLIGHTED PROJECT  section end
   ========================================= */

/* =========================================
   LIVE MARKET TRENDS
   ========================================= */
.market-trends {
    background: linear-gradient(
        145deg,
        var(--primary-navy) 0%,
        var(--secondary-blue) 100%
    );
    border-radius: var(--radius-lg);
    padding: 52px 44px;
    margin: 50px 0;
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.market-trends::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border: 25px solid rgba(255, 131, 40, 0.06);
    border-radius: 50%;
}
.market-trends::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border: 20px solid rgba(255, 131, 40, 0.06);
    border-radius: 50%;
}
.market-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}
.market-header h2 {
    font-size: 28px;
    color: white;
    font-weight: 800;
    margin-bottom: 6px;
}
.market-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}
.market-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}
.market-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
}
.market-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
    border-color: rgba(255, 131, 40, 0.3);
}
.market-icon {
    font-size: 32px;
    color: var(--accent-orange);
    margin-bottom: 12px;
}
.market-value {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}
.market-trend {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}
.trend-up {
    color: #4ade80;
}
.trend-down {
    color: #f87171;
}
.market-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* =========================================
   PARTNER BUILDERS
   ========================================= */
.partners-section {
    margin: 50px 0;
    text-align: center;
}
.partner-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid transparent;
    height: 100%;
}
.partner-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.partner-logo {
    width: 80px;
    height: 80px;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 34px;
    color: var(--primary-navy);
    transition: var(--transition);
    border: 1px solid rgba(255, 131, 40, 0.1);
}
.partner-card:hover .partner-logo {
    background: var(--accent-orange);
    color: white;
    transform: scale(1.05);
}
.partner-card h4 {
    font-size: 16px;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 2px;
}
.partner-card p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* =========================================
   BLOG SECTION
   ========================================= */
.blog-section {
    margin: 50px 0;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 232, 240, 0.3);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-orange);
}
.blog-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .blog-img img {
    transform: scale(1.08);
}
.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent-orange);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-body {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.blog-date i {
    color: var(--accent-orange);
}
.blog-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
    line-height: 1.4;
}
.blog-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
    line-height: 1.7;
}
.blog-read-more {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.blog-read-more:hover {
    gap: 14px;
}

/* =========================================
   SELL BANNER
   ========================================= */
.sell-banner {
    background: linear-gradient(
        145deg,
        var(--primary-navy) 0%,
        var(--secondary-blue) 100%
    );
    color: white;
    padding: 44px 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px 0;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.sell-banner h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
}
.sell-banner p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    font-size: 15px;
}
.sell-btn {
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 12px 32px;
    border-radius: 50px;
    background: transparent;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}
.sell-btn:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 131, 40, 0.3);
}
.sell-banner img {
    max-width: 200px;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* =========================================
   RECOMMENDED SELLERS CARDS
   ========================================= */
.seller-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    box-shadow: var(--shadow-card);
    border-left: 5px solid var(--accent-orange);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 232, 240, 0.4);
}
.seller-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-orange);
}
.seller-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 10px;
}
.seller-badge {
    background: var(--orange-light);
    color: var(--accent-orange);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 14px;
    border-radius: 30px;
    letter-spacing: 0.3px;
}
.seller-exp {
    font-size: 13px;
    color: var(--text-muted);
    margin: 6px 0 4px;
    font-weight: 500;
}
.seller-exp i {
    color: var(--accent-orange);
    width: 20px;
}
.seller-listings {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 6px;
}
.seller-listings i {
    color: var(--accent-orange);
    margin-right: 6px;
}
.seller-localities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 14px;
}
.locality-tag {
    background: #f1f5f9;
    color: var(--primary-navy);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 30px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.locality-tag:hover {
    background: var(--orange-light);
    border-color: var(--accent-orange);
}
.seller-contact-btn {
    background: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 12px 0;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 4px;
    text-align: center;
}
.seller-contact-btn:hover {
    background: var(--accent-orange);
    color: white;
    transform: scale(1.02);
}

/* =========================================
   FOOTER
   ========================================= */
footer.site-footer,
footer {
    /* background: linear-gradient(180deg, #0b1a2e 0%, #06101e 100%) !important; */
    color: #94a3b8;
    padding: 60px 0 24px;
    margin-top: 60px;
    border-top: 3px solid var(--accent-orange, #ff8328);
    font-family: "Inter", sans-serif;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    box-sizing: border-box;
    clear: both;
}
.footer-top-grid,
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 36px;
    margin-bottom: 44px;
}
@media (max-width: 992px) {
    .footer-top-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}
@media (max-width: 576px) {
    .footer-top-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.footer-brand-col .footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}
.footer-about-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 20px;
}
.footer-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon-btn:hover {
    background: var(--accent-orange, #ff8328);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 131, 40, 0.35);
}
.social-icon-btn.whatsapp-btn:hover {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}
.footer-col-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    letter-spacing: 0.3px;
}
.footer-col-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: var(--accent-orange, #ff8328);
    border-radius: 2px;
}
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-list li {
    margin-bottom: 11px;
}
.footer-links-list li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13.5px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links-list li a i {
    font-size: 11px;
    color: var(--accent-orange, #ff8328);
    transition: transform 0.25s ease;
}
.footer-links-list li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}
.footer-links-list li a:hover i {
    transform: translateX(2px);
}
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 13.5px;
    color: #94a3b8;
}
.footer-contact-list li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.25s ease;
}
.footer-contact-list li a:hover {
    color: #ffffff;
}
.footer-contact-list .contact-icon {
    color: var(--accent-orange, #ff8328);
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-bottom-bar,
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}
@media (max-width: 576px) {
    .footer-bottom-bar,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
.footer-copyright-text,
.copyright {
    font-size: 13px;
    color: #64748b;
}
.footer-copyright-text .brand-name,
.copyright span {
    color: var(--accent-orange, #ff8328);
    font-weight: 700;
}
.footer-policy-links {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 12.5px;
}
.footer-policy-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.25s ease;
}
.footer-policy-links a:hover {
    color: #ffffff;
}
.footer-policy-links .divider {
    color: rgba(255, 255, 255, 0.15);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-toggle .nav-links {
        display: flex;
    }
    .hero h1 {
        font-size: 30px;
    }
    .search-box {
        flex-direction: column;
        padding: 16px;
        background: transparent;
        box-shadow: none;
    }
    .search-input {
        width: 100%;
        background: white;
    }
    .search-btn {
        width: 100%;
    }
    .highlight-card {
        flex-direction: column;
    }
    .highlight-left {
        order: 2;
        padding: 28px;
    }
    .highlight-right {
        order: 1;
        height: 200px;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
    .stats-bar {
        margin-top: -20px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .market-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sell-banner {
        padding: 28px 24px;
    }
    .sell-banner img {
        max-width: 140px;
    }
    .why-choose-section {
        padding: 32px 20px;
    }
    .market-trends {
        padding: 32px 20px;
    }
}
@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    .market-stats-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 20px;
    }
}

/* ==========================================================================
   13. [ PAGE: Property Details Page (details.php) ] ALL DETAILS PAGE STYLES
   ========================================================================== */

/* ==========================================================================
   13.1 [ PAGE: details.php ] BREADCRUMB NAVIGATION
   ========================================================================== */
/* ---- NEW COLOR PALETTE (overrides) ---- */

/* ---- BREADCRUMB ---- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    padding: 20px 0 8px;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--primary-navy);
    font-weight: 600;
    transition: var(--transition);
}
.breadcrumb a:hover {
    color: var(--accent-orange);
}
.breadcrumb i {
    font-size: 12px;
    color: var(--text-muted);
}
.breadcrumb .last {
    color: var(--accent-orange);
    font-weight: 600;
}
.breadcrumb .update-time {
    margin-left: auto;
    font-size: 12px;
    color: var(--text-muted);
}

/* ---- MAIN LAYOUT ---- */
.property-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    margin: 16px 0 40px;
}

@media (max-width: 768px) {
    .property-detail-grid {
        display: block;
        margin: 16px 0 30px;
    }
}

@media (max-width: 1024px) {
    .property-detail-grid {
        grid-template-columns: 1fr;
    }
}
.detail-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ---- GALLERY ---- */
.gallery-wrapper {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(226, 232, 240, 0.3);
}
.gallery-main {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: #0b1a2e;
}
.gallery-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}
.gallery-main:hover img {
    transform: scale(1.02);
}
.gallery-overlay-badges {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    z-index: 2;
}
.gallery-badge {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.gallery-badge i {
    font-size: 13px;
}
.gallery-badge.orange {
    background: var(--accent-orange);
}
.gallery-title-overlay {
    position: absolute;
    top: 20px;
padding-right: 25%;
    left: 24px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    z-index: 2;
}
.gallery-title-overlay h1 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.8px;
}
.gallery-title-overlay .rera-badge {
    font-size: 12px;
    font-weight: 600;
    background: rgba(249, 115, 22, 0.9);
    padding: 4px 14px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 4px;
}
.gallery-title-overlay .rera-badge i {
    margin-right: 4px;
}
.gallery-actions-top {
    position: absolute;
    top: 20px;
    right: 24px;
    display: flex;
    gap: 10px;
    z-index: 2;
}
.gallery-actions-top button {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: none;
    color: white;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.gallery-actions-top button:hover {
    background: var(--accent-orange);
    transform: scale(1.05);
}
.gallery-click-hint {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: var(--transition);
}
.gallery-click-hint:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 131, 40, 0.4);
}
.gallery-click-hint i {
    font-size: 14px;
}

/* Thumbnails */
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    padding: 4px;
    background: var(--white);
}
.gallery-thumbs .thumb-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: var(--transition);
    aspect-ratio: 16/10;
}
.gallery-thumbs .thumb-item:hover {
    border-color: var(--accent-orange);
    transform: scale(1.03);
    z-index: 1;
}
.gallery-thumbs .thumb-item.active {
    border-color: var(--accent-orange);
}
.gallery-thumbs .thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-thumbs .thumb-item .more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(32, 53, 110, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    backdrop-filter: blur(4px);
}
.gallery-thumbs .thumb-item .more-overlay span {
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 16px;
    border-radius: 30px;
}

/* ---- LIGHTBOX ---- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(16px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.lightbox-overlay.open {
    display: flex;
    opacity: 1;
}
.lightbox-overlay .close-btn {
    position: absolute;
    top: 24px;
    right: 32px;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.lightbox-overlay .close-btn:hover {
    background: var(--accent-orange);
    transform: rotate(90deg);
}
.lightbox-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lightbox-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #0b1a2e;
}
.lightbox-slider .slide-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox-slider .slide {
    min-width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 70vh;
    user-select: none;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.lightbox-nav:hover {
    background: var(--accent-orange);
    transform: translateY(-50%) scale(1.08);
}
.lightbox-nav.prev {
    left: 16px;
}
.lightbox-nav.next {
    right: 16px;
}
.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 20px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
}
.lightbox-dots {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
}
.lightbox-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition);
}
.lightbox-dots .dot.active {
    background: var(--accent-orange);
    width: 28px;
    border-radius: 10px;
}
.lightbox-dots .dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ---- PRICE BLOCK ---- */
.price-block {
    background: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(226, 232, 240, 0.3);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.price-main .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: -0.5px;
}
.price-main .price span {
    color: var(--accent-orange);
}
.price-main .sub {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}
.price-main .sub i {
    color: var(--accent-orange);
    margin-right: 4px;
}
.price-emi .emi {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
}
.price-emi .emi span {
    color: var(--accent-orange);
}
.price-emi .label {
    font-size: 13px;
    color: var(--text-muted);
}

/* ---- QUICK SPECS ---- */
.quick-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(226, 232, 240, 0.3);
}
.spec-item {
    text-align: center;
    padding: 8px 4px;
    border-right: 1px solid var(--border-light);
}
.spec-item:last-child {
    border-right: none;
}
.spec-item .value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
}
.spec-item .value small {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}
.spec-item .label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* ---- DETAIL SECTIONS ---- */
.detail-section {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(226, 232, 240, 0.3);
}
.detail-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.detail-section h3 i {
    color: var(--accent-orange);
}
.detail-section p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 12px;
}



.highlights-grid1 {
    display: grid;
    
    gap: 12px;
    margin-top: 12px;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-color);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}
.highlight-item:hover {
    background: var(--orange-light);
    transform: translateX(4px);
}
.highlight-item i {
    color: var(--accent-orange);
    font-size: 18px;
    width: 24px;
}

/* Location advantages are intentionally shown one per row, separate from the
   multi-column highlights and amenities grids. */
.location-advantages-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
}

.location-advantage-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-color);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}

.location-advantage-item:hover {
    background: var(--orange-light);
    transform: translateX(4px);
}

.location-advantage-item i {
    color: var(--accent-orange);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.floor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 12px;
}
.floor-card {
    background: var(--bg-color);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
}
.floor-card:hover {
    border-color: var(--accent-orange);
    background: var(--orange-light);
    transform: translateY(-4px);
}
.floor-card .title {
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 15px;
}
.floor-card .price {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 16px;
    margin-top: 4px;
}
.floor-card .size {
    font-size: 12px;
    color: var(--text-muted);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 12px;
}
.amenity-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-color);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}
.amenity-tag:hover {
    background: var(--orange-light);
    transform: scale(1.02);
}
.amenity-tag i {
    color: var(--accent-orange);
    font-size: 16px;
}

/* ---- SIDEBAR ---- */
.detail-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(226, 232, 240, 0.3);
    top: 100px;
}
.contact-card .builder {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.contact-card .builder-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 16px;
}
.contact-card .builder-name i {
    color: var(--accent-orange);
    margin-right: 8px;
}
.contact-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 12px;
}
.contact-btn:hover {
    background: #e6731f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 131, 40, 0.3);
}
.contact-card .location {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.contact-card .location i {
    color: var(--accent-orange);
}
.contact-card .checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 12px 0;
    font-size: 12px;
    color: var(--text-muted);
}
.contact-card .checkbox-row input {
    margin-top: 3px;
    accent-color: var(--accent-orange);
}
.loan-interest {
    display: inline-block;
    background: var(--orange-light);
    color: var(--accent-orange);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}
.loan-interest:hover {
    background: var(--accent-orange);
    color: white;
}
.download-brochure {
    width: 100%;
    padding: 12px;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.download-brochure i {
    color: var(--accent-orange);
}
.download-brochure:hover {
    border-color: var(--accent-orange);
    background: var(--orange-light);
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sidebar-actions .btn-outline-side {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    background: var(--white);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.sidebar-actions .btn-outline-side:hover {
    border-color: var(--accent-orange);
    background: var(--orange-light);
}
.sidebar-actions .btn-outline-side i {
    color: var(--accent-orange);
}

/* ---- RATINGS & REVIEWS ---- */
.rating-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 16px 0;
}
.rating-big {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-navy);
}
.rating-big span {
    color: var(--accent-orange);
}
.rating-stars {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
}
.rating-count {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}
.review-card {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}
.review-card:last-child {
    border-bottom: none;
}
.review-card .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.review-card .review-name {
    font-weight: 700;
    color: var(--primary-navy);
}
.review-card .review-stars {
    color: #fbbf24;
    font-size: 13px;
}
.review-card .review-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 12px;
}
.review-card .review-tags {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    margin-bottom: 12px;
}
.review-card .review-tags span {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-navy);
    background: var(--orange-light);
    padding: 2px 14px;
    border-radius: 20px;
}

.trend-chart-placeholder {
    background: var(--bg-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    margin-top: 8px;
    border: 1px dashed var(--border-light);
}
.trend-chart-placeholder .trend-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-orange);
}
.trend-chart-placeholder .trend-sub {
    font-size: 14px;
    color: var(--text-muted);
}
.trend-badge {
    display: inline-block;
    background: #dcfce7;
    color: #16a34a;
    padding: 4px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 12px;
}
.compare-card {
    background: var(--bg-color);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.compare-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
}
.compare-card .name {
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 14px;
}
.compare-card .loc {
    font-size: 12px;
    color: var(--text-muted);
}
.compare-card .price {
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 15px;
}
.compare-card .btn-compare {
    margin-top: 8px;
    padding: 6px 16px;
    border: 1.5px solid var(--accent-orange);
    border-radius: 30px;
    background: transparent;
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}
.compare-card .btn-compare:hover {
    background: var(--accent-orange);
    color: white;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .breadcrumb {
        flex-wrap: wrap;
        gap: 6px;
    }
    .breadcrumb .update-time {
        margin-left: 0;
        width: 100%;
        margin-top: 4px;
    }
    .price-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .price-emi {
        text-align: left;
        width: 100%;
    }
    .gallery-main img {
        height: 240px;
    }
    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }
    .gallery-title-overlay h1 {
        font-size: 20px;
padding-right: 20%;
    }
    .gallery-actions-top {
        top: 12px;
        right: 12px;
    }
    .gallery-actions-top button {
        padding: 6px 12px;
        font-size: 11px;
    }
    .gallery-overlay-badges {
        bottom: 12px;
        left: 12px;
    }
    .gallery-click-hint {
        display: none;
    }
    .detail-section {
        padding: 18px 16px;
    }
    .quick-specs {
        grid-template-columns: repeat(2, 1fr);
    }
    .spec-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding: 8px 0;
    }
    .spec-item:last-child {
        border-bottom: none;
    }
    .contact-card {
        position: static;
    }
    .property-detail-grid {
        gap: 20px;
    }
    .compare-grid {
        grid-template-columns: 1fr 1fr;
    }
    .lightbox-slider .slide {
        height: 50vh;
    }
    .lightbox-slider .slide img {
        max-height: 50vh;
    }
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .lightbox-nav.prev {
        left: 8px;
    }
    .lightbox-nav.next {
        right: 8px;
    }
    .lightbox-overlay .close-btn {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}
@media (max-width: 480px) {
    .compare-grid {
        grid-template-columns: 1fr;
    }
    .floor-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   SIDEBAR – DETAIL RIGHT
   ========================================= */

/* Explore Neighbourhood */
.explore-neighbourhood {
    position: sticky;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(226, 232, 240, 0.3);
}
.explore-neighbourhood h4 {
    font-size: 16px;
    color: var(--primary-navy);
    margin-bottom: 12px;
}
.explore-neighbourhood h4 i {
    color: var(--accent-orange);
}
.explore-neighbourhood .neighbourhood-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.explore-neighbourhood .neighbourhood-tags span {
    padding: 6px 16px;
    background: var(--bg-color);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
}
.explore-neighbourhood p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 8px 0;
}
.explore-neighbourhood .feedback-links {
    display: flex;
    gap: 16px;
    font-size: 13px;
}
.explore-neighbourhood .feedback-links .good {
    font-weight: 600;
    color: var(--primary-navy);
}
.explore-neighbourhood .feedback-links .better {
    font-weight: 600;
    color: var(--text-muted);
}

/* Quick Links */
.quick-links {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(226, 232, 240, 0.3);
}
.quick-links h4 {
    font-size: 14px;
    color: var(--primary-navy);
    margin-bottom: 10px;
}
.quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.quick-links ul li {
    margin-bottom: 6px;
}
.quick-links ul li a {
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition);
    display: inline-block;
}
.quick-links ul li a:hover {
    color: var(--accent-orange);
}
.quick-links ul li a {
    color: var(--accent-orange);
    font-weight: 600;
}

/* ==========================================================================
   14. [ PAGE: Property Listing Page (list.php) ] ALL LISTING PAGE STYLES
   ========================================================================== */

/* ==========================================================================
   14.1 [ PAGE: list.php ] STATS ROW & ZERO BROKERAGE BANNER
   ========================================================================== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin: 24px 0 32px;
}
.stat-card {
    background: var(--white);
    padding: 20px 18px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}
.stat-card .num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-navy);
}
.stat-card .num .orange {
    color: var(--accent-orange);
}
.stat-card .label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ===== ZERO BROKERAGE BANNER ===== */
.zero-brokerage-banner {
    background: var(--orange-light);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    margin: 32px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border-left: 6px solid var(--accent-orange);
    box-shadow: var(--shadow-card);
}
.zero-brokerage-banner .left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.zero-brokerage-banner .left i {
    font-size: 2rem;
    color: var(--accent-orange);
}
.zero-brokerage-banner .left h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
}
.zero-brokerage-banner .left p {
    color: var(--text-muted);
    font-size: 14px;
}
.zero-brokerage-banner .btn-primary {
    background: var(--primary-navy);
    padding: 12px 28px;
}
.zero-brokerage-banner .btn-primary:hover {
    background: var(--accent-orange);
}

/* ================================================================
            PROPERTY GRID & LIST VIEW WITH IMAGE SLIDER
            ================================================================ */
.listings-section {
    padding: 16px 0 48px;
}
.listings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    gap: 12px;
    flex-wrap: wrap;
}
.listings-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 0;
}
.listings-header h2 i {
    color: var(--accent-orange);
    margin-right: 8px;
}
.listings-header a {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}
.listings-header a:hover {
    color: var(--primary-navy);
}
.listings-header a i {
    margin-left: 4px;
}

/* --- Split Layout (Grid Left, Form Right) --- */
.listings-split {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.listings-left {
    flex: 2;
    min-width: 0;
}
.listings-right {
    flex: 1;
    min-width: 320px;
    position: sticky;
    top: 100px;
}

.ctc-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}
.ctc-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 131, 40, 0.4);
}
.ctc-button:hover:before {
    left: 100%;
}
.ctc-button i {
    font-size: 16px;
}

/* --- Grid (default) --- */
.property-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}
.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-orange);
}

/* ---- IMAGE SLIDER ---- */
.slider-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #d9e2ef 0%, #e2e8f0 100%);
}
.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}
.slider-track .slide-img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* slider arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 5;
    opacity: 0;
    pointer-events: none;
}
.property-card:hover .slider-btn {
    opacity: 1;
    pointer-events: auto;
}
.slider-btn:hover {
    background: var(--accent-orange);
}
.slider-btn.prev {
    left: 8px;
}
.slider-btn.next {
    right: 8px;
}

/* slider dots */
.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}
.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}
.slider-dots .dot.active {
    background: var(--accent-orange);
    transform: scale(1.2);
}
.slider-dots .dot:hover {
    background: var(--white);
}

/* card action buttons */
.card-actions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    z-index: 6;
}
.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: var(--text-muted);
}
.action-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.heart-btn:hover {
    color: #e53e3e;
}
.share-btn:hover {
    color: var(--accent-orange);
}
.action-btn.liked {
    color: #e53e3e;
}

/* badge stays on top of slider */
.property-card .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 6;
}
.badge-zero {
    background: var(--accent-orange);
    color: var(--white);
}
.badge-new {
    background: var(--primary-navy);
    color: var(--white);
}
.badge-rera {
    background: var(--secondary-blue);
    color: var(--white);
}

.property-card .card-body {
    padding: 18px 20px 20px;
}
.property-card .card-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 2px;
}
.property-card .card-location {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.property-card .card-location i {
    color: var(--accent-orange);
    margin-right: 4px;
}
.property-card .card-details {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-main);
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.property-card .card-details span i {
    color: var(--accent-orange);
    margin-right: 4px;
    width: 16px;
}
.property-card .card-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-navy);
}
.property-card .card-price small {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 4px;
}
.property-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
    gap: 8px;
}
.property-card .card-footer .status {
    font-size: 13px;
    color: var(--text-muted);
}
.property-card .card-footer .status i {
    color: #22c55e;
    margin-right: 4px;
}
.property-card .card-footer .status.soon i {
    color: var(--accent-orange);
}
.property-card .contact-btn {
    background: var(--primary-navy);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}
.property-card .contact-btn:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 131, 40, 0.25);
}

/* --- Contact Form (Right Side) --- */
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 24px 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    position: sticky;
    top: 100px;
}
.contact-form-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 4px;
}
.contact-form-card .sub-head {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.contact-form-card .form-group {
    margin-bottom: 16px;
}
.contact-form-card .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}
.contact-form-card .form-group input,
.contact-form-card .form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-light);
    border-radius: 30px;
    font-size: 14px;
    background: var(--bg-color);
    transition: var(--transition);
    outline: none;
}
.contact-form-card .form-group input:focus,
.contact-form-card .form-group select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 131, 40, 0.1);
}
.contact-form-card .form-group .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}
.contact-form-card .form-group .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-orange);
    flex-shrink: 0;
}
.contact-form-card .captcha-area {
    background: var(--bg-color);
    border-radius: 30px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
}
.contact-form-card .captcha-area .captcha-text {
    font-size: 13px;
    color: var(--text-muted);
}
.contact-form-card .captcha-area .heart-icon {
    font-size: 22px;
    color: #e53e3e;
    cursor: pointer;
    transition: var(--transition);
    padding: 4px 8px;
    border-radius: 30px;
    border: 2px solid transparent;
    background: transparent;
}
.contact-form-card .captcha-area .heart-icon:hover {
    border-color: #e53e3e;
    transform: scale(1.1);
}
.contact-form-card .captcha-area .heart-icon.selected {
    background: #fee2e2;
    border-color: #e53e3e;
}
.contact-form-card .submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}
.contact-form-card .submit-btn:hover {
    background: #e6731f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 131, 40, 0.35);
}

/* --- List View --- */
.property-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.property-grid.list-view .property-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.property-grid.list-view .property-card .slider-container {
    width: 220px;
    min-height: 180px;
    height: auto;
    flex-shrink: 0;
}
.property-grid.list-view
    .property-card
    .slider-container
    .slider-track
    .slide-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.property-grid.list-view .property-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px 20px;
}
.property-grid.list-view .property-card .card-footer {
    margin-top: 0;
    border-top: 0;
    padding-top: 0;
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
    margin-top: 8px;
}
.property-grid.list-view .property-card .badge {
    left: 12px;
    top: 12px;
}

@media (max-width: 640px) {
    .property-grid.list-view .property-card {
        flex-direction: column;
    }
    .property-grid.list-view .property-card .slider-container {
        width: 100%;
        height: 200px;
    }
}

/* ================================================================
            OTHER SECTIONS (Popular Searches, Localities, etc.)
            ================================================================ */
.popular-searches {
    background: var(--white);
    padding: 40px 0 48px;
    margin: 16px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}
.popular-searches .container {
    padding: 0 24px;
}
.popular-searches h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 28px;
}
.popular-searches h2 i {
    color: var(--accent-orange);
    margin-right: 10px;
}
.search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}
.search-col h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
    border-bottom: 2px solid var(--accent-orange);
    padding-bottom: 6px;
    display: inline-block;
}
.search-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.search-col ul li {
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    padding: 4px 0;
    border-bottom: 1px dashed transparent;
}
.search-col ul li:hover {
    color: var(--accent-orange);
    border-bottom-color: var(--accent-orange);
}
.search-col ul li i {
    margin-right: 8px;
    color: var(--accent-orange);
    font-size: 12px;
}
.view-toggle {
    margin-top: 20px;
    text-align: center;
}
.view-toggle button {
    background: transparent;
    border: none;
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}
.view-toggle button:hover {
    color: var(--primary-navy);
}

.popular-localities {
    padding: 40px 0 32px;
}
.locality-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 8px 4px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.locality-scroll::-webkit-scrollbar {
    height: 6px;
}
.locality-scroll::-webkit-scrollbar-track {
    background: var(--bg-color);
    border-radius: 10px;
}
.locality-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 10px;
}
.locality-card {
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    scroll-snap-align: start;
    transition: var(--transition);
    flex-shrink: 0;
}
.locality-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-orange);
}
.locality-card .locality-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-navy);
}
.locality-card .rating {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.locality-card .rating i {
    color: #fbbf24;
}
.locality-card .price {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-main);
}
.locality-card .price small {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}
.locality-card .change {
    font-weight: 600;
    font-size: 0.9rem;
    margin: 4px 0 8px;
}
.locality-card .change.up {
    color: #22c55e;
}
.locality-card .change.down {
    color: #ef4444;
}
.locality-card .flats-link {
    font-size: 13px;
    color: var(--accent-orange);
    font-weight: 600;
}
.locality-card .flats-link i {
    margin-left: 4px;
}

.resale-projects,
.ready-move-projects {
    padding: 24px 0 32px;
}
.project-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 8px 4px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.project-scroll::-webkit-scrollbar {
    height: 6px;
}
.project-scroll::-webkit-scrollbar-track {
    background: var(--bg-color);
    border-radius: 10px;
}
.project-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 10px;
}
.project-card {
    min-width: 260px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    scroll-snap-align: start;
    transition: var(--transition);
    flex-shrink: 0;
}
.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-orange);
}
.project-card .proj-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-navy);
}
.project-card .proj-loc {
    font-size: 13px;
    color: var(--text-muted);
    margin: 2px 0 6px;
}
.project-card .proj-bhk {
    font-size: 13px;
    color: var(--text-main);
}
.project-card .proj-price {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--primary-navy);
    margin-top: 6px;
}
.project-card .proj-price small {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.featured-zero {
    background: linear-gradient(135deg, var(--orange-light) 0%, #fff 100%);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    margin: 32px 0 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
}
.featured-zero .featured-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.featured-zero .featured-header .badge-group {
    display: flex;
    align-items: center;
    gap: 12px;
}
.featured-zero .featured-header .badge-group .main-badge {
    background: var(--accent-orange);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
}
.featured-zero .featured-header .badge-group .sub-badge {
    color: var(--text-muted);
    font-size: 14px;
}
.featured-zero .featured-header .badge-group .sub-badge i {
    color: var(--accent-orange);
    margin-right: 4px;
}
.featured-zero .featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.featured-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.featured-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.featured-item .item-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-navy);
}
.featured-item .item-badge {
    font-size: 12px;
    background: var(--secondary-blue);
    color: var(--white);
    padding: 2px 12px;
    border-radius: 30px;
    display: inline-block;
    margin: 4px 0 8px;
}
.featured-item .item-loc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.featured-item .item-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    margin: 8px 0;
}
.featured-item .item-details .bhk-price {
    background: var(--bg-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--primary-navy);
}
.featured-item .item-details .bhk-price span {
    font-weight: 400;
    color: var(--text-muted);
}
.featured-item .item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}
.featured-item .item-footer .avg-price {
    font-size: 13px;
    color: var(--text-muted);
}
.featured-item .item-footer .avg-price strong {
    color: var(--text-main);
}
.featured-item .item-footer .contact-btn-sm {
    background: var(--primary-navy);
    color: var(--white);
    border: none;
    padding: 4px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}
.featured-item .item-footer .contact-btn-sm:hover {
    background: var(--accent-orange);
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--white);
    padding: 48px 0 56px;
    margin-top: 16px;
    border-top: 1px solid var(--border-light);
}
.faq-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 28px;
}
.faq-section h2 i {
    color: var(--accent-orange);
    margin-right: 10px;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}
.faq-item {
    background: var(--bg-color);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-orange);
    transition: var(--transition);
}
.faq-item:hover {
    background: var(--orange-light);
}
.faq-item h4 {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--primary-navy);
}
.faq-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   15. [ GLOBAL / FOOTER ] SECONDARY FOOTER & RESPONSIVE MEDIA QUERIES
   ========================================================================== */
footer {
    background: var(--primary-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 48px 0 24px;
}
footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}
footer .footer-grid h5 {
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}
footer .footer-grid ul li {
    margin-bottom: 10px;
    font-size: 14px;
}
footer .footer-grid ul li a {
    transition: var(--transition);
}
footer .footer-grid ul li a:hover {
    color: var(--accent-orange);
}
footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
}
footer .footer-bottom .social a {
    color: rgba(255, 255, 255, 0.5);
    margin-left: 18px;
    font-size: 18px;
    transition: var(--transition);
}
footer .footer-bottom .social a:hover {
    color: var(--accent-orange);
}
footer .footer-bottom .brand {
    font-weight: 700;
    color: var(--white);
}
footer .footer-bottom .brand span {
    color: var(--accent-orange);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .search-grid {
        grid-template-columns: 1fr 1fr;
    }
    .featured-zero .featured-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .listings-split {
        flex-direction: column;
        gap: 20px;
    }
    .listings-left {
        flex: 1;
    }
    .listings-right {
        width: 100%;
        position: static;
        min-width: auto;
    }
    .contact-form-card {
        position: static;
    }
    .property-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .property-card .slider-btn {
        opacity: 1;
        pointer-events: auto;
    }
    .property-grid.list-view .property-card {
        flex-direction: column;
    }
    .property-grid.list-view .property-card .slider-container {
        width: 100%;
        height: 200px;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .search-bar input {
        flex: 1 1 100%;
    }
    .search-bar button {
        width: 100%;
        justify-content: center;
    }
    .zero-brokerage-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .zero-brokerage-banner .left {
        flex-direction: column;
        text-align: center;
    }
    .listings-header h2 {
        font-size: 1.3rem;
    }
    .section-header h2 {
        font-size: 20px;
    }
    .section-header h2 i {
        font-size: 18px;
    }
    .why-choose-section h2 {
        font-size: 22px;
    }
    .market-header h2 {
        font-size: 22px;
    }
    .popular-searches h2 {
        font-size: 20px;
    }
    .faq-section h2 {
        font-size: 20px;
    }
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }
    .popular-searches .search-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .locality-card {
        min-width: 180px;
    }
    .project-card {
        min-width: 220px;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .view-toggle-btn button {
        font-size: 12px;
        padding: 4px 10px;
    }
    .slider-container {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .listings-split {
        flex-direction: column;
        gap: 14px;
    }
    .listings-left {
        flex: 1;
    }
    .listings-right {
        width: 100%;
        position: static;
    }
    .contact-form-card {
        padding: 18px 14px;
        border-radius: var(--radius-md);
        position: static;
    }
    .contact-form-card h3 {
        font-size: 1.1rem;
    }
    .contact-form-card .form-group {
        margin-bottom: 12px;
    }
    .contact-form-card .form-group input,
    .contact-form-card .form-group select {
        padding: 9px 12px;
        font-size: 13px;
    }
    .contact-form-card .submit-btn {
        padding: 12px;
        font-size: 14px;
    }
    .listings-header h2 {
        font-size: 1.1rem;
    }
    .section-header h2 {
        font-size: 18px;
    }
    .section-header h2 i {
        font-size: 16px;
    }
    .why-choose-section h2 {
        font-size: 20px;
    }
    .market-header h2 {
        font-size: 20px;
    }
    .popular-searches h2 {
        font-size: 18px;
    }
    .faq-section h2 {
        font-size: 18px;
    }
    .property-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .property-card .slider-container {
        height: 180px;
    }
    .property-card .card-body {
        padding: 14px 16px;
    }
    .property-card .card-title {
        font-size: 1rem;
    }
    .property-card .card-price {
        font-size: 1.1rem;
    }
    .property-card .contact-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
    .hero-section h1 {
        font-size: 1.6rem;
    }
    .filter-chips {
        gap: 6px;
    }
    .filter-chip {
        font-size: 12px;
        padding: 6px 14px;
    }
    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .stat-card .num {
        font-size: 1.4rem;
    }
    .stat-card {
        padding: 14px 12px;
    }
    .container {
        padding: 0 16px;
    }
    .locality-card {
        min-width: 160px;
        padding: 16px;
    }
    .project-card {
        min-width: 190px;
        padding: 16px;
    }
    .featured-zero {
        padding: 20px 16px;
    }
    .slider-container {
        height: 180px;
    }
    .slider-btn {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    footer .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 20px;
    }
}



.fa-map-marker-alt{
    color: #bd4a3c;
}