@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

/* ==========================================================================
   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
   ========================================================================== */
html, body {
    overflow-x: clip;
    max-width: 100%;
    position: relative;
}
* {
    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;
    padding-top: 0 !important;
    margin: 0 !important;
}
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.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    width: 100% !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
}
.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);
    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);
}

/* Services Megamenu Custom Dynamic Auto-Width & Auto-Height Styling */
.services-megamenu-dropdown {
    width: max-content !important;
    min-width: 180px !important;
    height: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(15px) !important;
    padding: 16px 20px !important;
    border-radius: 16px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12) !important;
}
.has-megamenu:hover .services-megamenu-dropdown {
    transform: translateX(-50%) translateY(0) !important;
}

/* Property Megamenu Custom Dynamic Auto-Width & Auto-Height Styling */
.property-megamenu-dropdown {
    width: max-content !important;
    min-width: 220px !important;
    height: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(15px) !important;
    padding: 18px 22px !important;
    border-radius: 16px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12) !important;
}
.has-megamenu:hover .property-megamenu-dropdown {
    transform: translateX(-50%) translateY(0) !important;
}

.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: 0;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -8px 0 30px rgba(15, 23, 42, 0.15);
    padding: 20px 20px 30px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s ease;
    visibility: hidden;
    z-index: 1005;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-toggle.open {
    transform: translateX(0);
    visibility: visible;
}
.mobile-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}
.mobile-logo {
    max-width: 130px;
}
.mobile-logo img {
    max-height: 40px;
    width: auto;
    display: block;
}
.mobile-close {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 16px;
    color: var(--primary-navy, #151247);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
    width: 34px;
    height: 34px;
}
.mobile-close:hover {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fca5a5;
}

/* Mobile Accordion Navigation Drawer */
.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    font-size: 15px;
    font-weight: 700;
    color: #151247;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
    flex-grow: 1;
}

.mobile-nav-item:hover {
    background: #f1f5f9;
    color: #bd4a3c;
}

.mobile-nav-item .nav-icon {
    font-size: 16px;
    width: 22px;
    text-align: center;
    color: #bd4a3c;
}

.mobile-accordion-item {
    border-radius: 10px;
    overflow: hidden;
}

.mobile-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-accordion-arrow {
    background: transparent;
    border: none;
    padding: 12px 14px;
    font-size: 13px;
    color: #64748b;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.2s ease;
}

.mobile-accordion-arrow.active {
    transform: rotate(180deg);
    color: #bd4a3c;
}

.mobile-submenu {
    display: none;
    padding: 8px 12px 14px 20px;
    background: #f8fafc;
    border-radius: 0 0 10px 10px;
    border-left: 3px solid #bd4a3c;
    margin-bottom: 6px;
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu-group {
    margin-bottom: 12px;
}

.mobile-submenu-group:last-child {
    margin-bottom: 0;
}

.mobile-submenu-title {
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    margin-top: 6px;
}

.mobile-submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-submenu ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-submenu ul li a:hover {
    background: #ffffff;
    color: #bd4a3c;
}

.mobile-drawer-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.mobile-post-btn {
    text-decoration: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-align: center;
    border-radius: 50px;
    background: #bd4a3c;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(189, 74, 60, 0.3);
    transition: all 0.2s ease;
}

.mobile-post-btn:hover {
    background: #a63c30;
}
.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: 991px) {
    .header-inner .nav-links,
    .header-inner .auth-buttons {
        display: none !important;
    }
    .hamburger {
        display: flex !important;
    }
    .logo {
        max-width: 160px;
        width: auto;
    }
    .logo > img {
        max-height: 42px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 60%;
    }
    .mobile-toggle {
        width: 85%;
        padding: 20px 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: 20;
    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);
    position: relative;
    z-index: 20;
}
.search-suggestions-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    z-index: 99999;
    max-height: 380px;
    overflow-y: auto;
    border: 1px solid rgba(226, 232, 240, 0.9);
    text-align: left;
    color: #1e293b;
}
.suggestion-item {
    display: flex;
    align-items: center;
    padding: 5px 18px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
}
.suggestion-item:last-child {
    border-bottom: none;
}
.suggestion-item:hover,
.suggestion-item.active {
    background: #fff7ed;
}
.suggestion-thumb {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 14px;
    flex-shrink: 0;
    border: 1px solid #e2e8f0;
}
.suggestion-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fff3eb;
    color: var(--accent-orange, #ff8328);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 14px;
    flex-shrink: 0;
}
.suggestion-info {
    flex: 1;
    min-width: 0;
}
.suggestion-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.suggestion-subtitle {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}
.suggestion-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    background: #f1f5f9;
    color: #475569;
    margin-left: 10px;
    flex-shrink: 0;
}
.suggestion-badge.city-badge {
    background: #e0f2fe;
    color: #0369a1;
}
.suggestion-loading,
.suggestion-empty {
    padding: 16px;
    text-align: center;
    color: #64748b;
    font-size: 13px;
}
.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: #ffffff;
    padding: 32px 0;
    margin-top: -75px;
    position: relative;
    z-index: 5;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}
.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(6, 1fr);
    gap: 16px;
    margin: 30px 0;
}
@media (max-width: 1100px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 640px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
.category-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 10px;
    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-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-orange);
    color: var(--accent-orange);
    transition: var(--transition);
}
.category-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    transition: var(--transition);
}
.category-icon-mask {
    width: 36px;
    height: 36px;
    display: inline-block;
    background-color: var(--accent-orange);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    transition: var(--transition);
}
.category-card:hover .category-icon i {
    color: white;
}
.category-card:hover .category-icon svg {
    stroke: white;
    color: white;
}
.category-card:hover .category-icon img {
    transform: scale(1.1);
}
.category-card:hover .category-icon-mask {
    background-color: #ffffff;
    transform: scale(1.08);
}
.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);
}

/* =========================================
   REDESIGNED HIGHLIGHTED PROJECT SECTION
   ========================================= */
.highlighted-section-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 56px 0 24px;
}
.title-accent-bar {
    display: none;
}
.highlighted-section-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.3px;
}

.highlighted-card-redesigned {
    display: flex;
    /* background: #ffffff; */
    background: linear-gradient(110deg, #ffffff 72%, #fff4ed 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
    min-height: 480px;
    position: relative;
}

/* Left side takes 45% width */
.highlighted-card-left {
    width: 40%;
    flex-shrink: 0;
    padding: 36px 36px 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* background: linear-gradient(110deg, #ffffff 72%, #fff4ed 100%); */
    position: relative;
    z-index: 2;
}

/* Right Cover Image - Fills right side completely with slanted left edge starting at 45% bottom / 52% top! */
.highlighted-card-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(13% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 36px;
}

.featured-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #fff0ea;
    color: #e54322;
    border: 1px solid rgba(229, 67, 34, 0.22);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 14px;
}

.highlighted-card-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
    letter-spacing: -0.6px;
    line-height: 1.15;
}

.highlighted-card-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #718096;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 22px;
}

.highlighted-price-bhk-row {
    display: flex;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 26px;
}

.price-box .price-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.price-box .price-val {
    font-size: 30px;
    font-weight: 800;
    color: #e84a27;
    line-height: 1;
}

.bhk-pill-tag {
    background-color: #edf2f7;
    color: #4a5568;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.btn-highlighted-view {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #e84a27;
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    box-shadow: 0 8px 22px rgba(232, 74, 39, 0.3);
    transition: all 0.25s ease-in-out;
    width: fit-content;
}

.btn-highlighted-view:hover {
    background-color: #d13a18;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(232, 74, 39, 0.4);
}

.highlighted-features-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid #f1f5f9;
}

.highlighted-features-bar .feature-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.highlighted-features-bar .feature-col svg {
    stroke: #334155;
}

.highlighted-features-bar .feature-col span {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.25;
}

.highlighted-features-bar .feature-divider {
    width: 1px;
    height: 32px;
    background-color: #e2e8f0;
    margin: 0 8px;
}

/* Right Side Elements */
.cursive-watermark {
    align-self: flex-end;
    color: #ffffff;
    position: relative;
    padding-bottom: 8px;
    text-align: right;
}
.cursive-watermark .cursive-text {
    font-family: 'Dancing Script', 'Caveat', cursive, sans-serif;
    font-size: 34px;
    font-weight: 700;
    text-shadow: 0 3px 12px rgba(0,0,0,0.55);
    display: block;
    line-height: 1;
}

.watermark-underline {
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 130px;
    height: 10px;
}

.glass-overlay-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 12px 20px;
    border-radius: 14px;
    color: #ffffff;
    max-width: 320px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.glass-leaf-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-overlay-text {
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.35;
    color: #f8fafc;
}

.highlighted-swiper-controls {
    position: absolute;
    bottom: 24px;
    right: 28px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.highlighted-prev-btn, .highlighted-next-btn {
    width: 42px;
    height: 42px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    color: #1a202c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    transition: all 0.2s ease;
}

.highlighted-prev-btn:hover, .highlighted-next-btn:hover {
    background: #e84a27;
    color: #ffffff;
    transform: scale(1.06);
}

@media (max-width: 991px) {
    .highlighted-card-redesigned {
        flex-direction: column;
        min-height: auto;
    }
    .highlighted-card-left, .highlighted-card-right {
        width: 100%;
        position: relative;
    }
    .highlighted-card-left {
        padding: 24px;
    }
    .highlighted-card-right {
        height: 320px;
        clip-path: none;
    }
    .highlighted-card-title {
        font-size: 26px;
    }
    .price-box .price-val {
        font-size: 24px;
    }
}
@media (max-width: 576px) {
    .highlighted-features-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .highlighted-features-bar .feature-divider {
        display: none;
    }
}

.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: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}
.partner-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.partner-logo {
    width: 100%;
    height: 100%;
    background: transparent !important;
    border-radius: 0 !important;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.builder-logo-img {
    max-width: 150px;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.partner-card:hover .partner-logo {
    background: transparent !important;
    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(
        135deg,
        #0b092a 0%,
        #151247 65%,
        #1e195e 100%
    );
    color: white;
    padding: 40px 44px;
    border-radius: var(--radius-lg, 20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 45px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(21, 18, 71, 0.12);
}
.sell-banner h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.25;
    color: #ffffff;
}
.sell-banner p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.5;
}
.sell-btn {
    border: 2px solid #bd4a3c;
    color: #ffffff;
    background: #bd4a3c;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(189, 74, 60, 0.3);
}
.sell-btn:hover {
    background: #a63c30;
    border-color: #a63c30;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(189, 74, 60, 0.4);
}
.sell-banner img {
    width: 260px;
    height: 170px;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* =========================================
   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-full-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 50px !important;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .footer-full-container {
        padding: 0 16px !important;
    }
}

.footer-top-grid,
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    margin-bottom: 44px;
    width: 100%;
}
@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 {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        padding: 24px 20px;
        margin: 30px 0;
        gap: 16px;
    }
    .sell-banner h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    .sell-banner p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    .sell-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        margin-bottom: 14px;
    }
    .sell-banner img {
        width: 100% !important;
        max-width: 100% !important;
        height: 180px !important;
        object-fit: cover !important;
        border-radius: 14px !important;
        margin-top: 4px;
    }
    .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;
    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;
}

/* Overview & Highlights (Single Line List) */
.highlights-grid,
.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
    width: 100%;
}

/* Top Amenities (3 Items Per Line Grid) */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.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);
    border: 1px solid #e2e8f0;
}

.highlights-list .highlight-item:hover,
.highlights-grid .highlight-item:hover {
    background: var(--orange-light);
    transform: translateX(4px);
    border-color: var(--accent-orange);
}

.amenities-grid .highlight-item:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    border-color: var(--accent-orange);
}

.highlight-item i {
    color: var(--accent-orange);
    font-size: 18px;
    width: 24px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}
.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;
}

.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;
    }
    .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: linear-gradient(135deg, #fff7f4 0%, #ffefe8 100%);
    border: 1px solid rgba(224, 74, 43, 0.18);
    border-left: 5px solid var(--accent-orange, #e04a2b);
    border-radius: 16px;
    padding: 22px 28px;
    margin: 28px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(224, 74, 43, 0.06);
    position: relative;
    overflow: hidden;
}

.zero-brokerage-banner .zb-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.zero-brokerage-banner .zb-icon-wrapper {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: rgba(224, 74, 43, 0.12);
    color: var(--accent-orange, #e04a2b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: inset 0 0 0 1px rgba(224, 74, 43, 0.15);
    transition: transform 0.3s ease;
}

.zero-brokerage-banner:hover .zb-icon-wrapper {
    transform: scale(1.06) rotate(-5deg);
}

.zero-brokerage-banner .zb-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.zero-brokerage-banner .zb-text p {
    color: #475569;
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.45;
}

.zero-brokerage-banner .zb-badge {
    font-weight: 700;
    color: var(--accent-orange, #e04a2b);
    background: rgba(224, 74, 43, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.88rem;
    display: inline-block;
}

.zero-brokerage-banner .zb-action {
    display: flex;
    align-items: center;
}

.zero-brokerage-banner .zb-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-navy, #19194d);
    color: #ffffff !important;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(25, 25, 77, 0.18);
}

.zero-brokerage-banner .zb-btn:hover {
    background: var(--accent-orange, #e04a2b);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(224, 74, 43, 0.35);
}

.zero-brokerage-banner .zb-btn i {
    transition: transform 0.25s ease;
}

.zero-brokerage-banner .zb-btn:hover i {
    transform: translateX(4px);
}

/* Legacy class fallbacks */
.zero-brokerage-banner .left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.zero-brokerage-banner .left i {
    font-size: 1.8rem;
    color: var(--accent-orange, #e04a2b);
}
.zero-brokerage-banner .left h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy, #19194d);
}
.zero-brokerage-banner .left p {
    color: var(--text-muted, #64748b);
    font-size: 14px;
}
.zero-brokerage-banner .btn-primary {
    background: var(--primary-navy, #19194d);
    padding: 12px 28px;
    border-radius: 50px;
    color: #fff !important;
}

/* ================================================================
            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: 22px 18px;
        margin: 20px 0 20px;
        border-left: 1px solid rgba(224, 74, 43, 0.18);
        border-top: 4px solid var(--accent-orange, #e04a2b);
        border-radius: 16px;
        background: linear-gradient(180deg, #fff7f4 0%, #ffefe8 100%);
        gap: 16px;
        box-shadow: 0 4px 16px rgba(224, 74, 43, 0.08);
    }
    .zero-brokerage-banner .zb-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    .zero-brokerage-banner .zb-icon-wrapper {
        width: 56px;
        height: 56px;
        min-width: 56px;
        border-radius: 50%;
        font-size: 1.4rem;
        box-shadow: 0 4px 12px rgba(224, 74, 43, 0.15);
    }
    .zero-brokerage-banner .zb-text h3 {
        font-size: 1.15rem;
        line-height: 1.35;
        margin-bottom: 6px;
    }
    .zero-brokerage-banner .zb-text p {
        font-size: 0.88rem;
        line-height: 1.5;
        max-width: 320px;
        margin: 0 auto;
    }
    .zero-brokerage-banner .zb-badge {
        margin-top: 4px;
    }
    .zero-brokerage-banner .zb-action {
        width: 100%;
        margin-top: 4px;
    }
    .zero-brokerage-banner .zb-btn {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    .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;
    }
}

/* ==========================================
   CUSTOM MODERN PAGINATION STYLING
   ========================================== */
.custom-pagination-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding: 16px 22px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.pagination-info {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted, #64748b);
}

.pagination-info span {
    font-weight: 700;
    color: var(--primary-navy, #0b1a2e);
}

.custom-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-pagination .page-item {
    margin: 0;
}

.custom-pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: var(--primary-navy, #0b1a2e);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    }
    .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;
    }
}

/* ==========================================
   CUSTOM MODERN PAGINATION STYLING
   ========================================== */
.custom-pagination-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding: 16px 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.pagination-info {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted, #64748b);
}

.pagination-info span {
    font-weight: 700;
    color: var(--primary-navy, #151247);
}

.custom-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-pagination .page-item {
    margin: 0;
}

.custom-pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: var(--primary-navy, #151247);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.custom-pagination .page-link:hover {
    border-color: var(--accent-orange, #bd4a3c);
    color: var(--accent-orange, #bd4a3c);
    background: var(--orange-light, #fff4e8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(189, 74, 60, 0.15);
}

.custom-pagination .page-item.active .page-link {
    background: var(--accent-orange, #bd4a3c);
    border-color: var(--accent-orange, #bd4a3c);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(189, 74, 60, 0.35);
    font-weight: 700;
}

.custom-pagination .page-item.disabled .page-link {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #94a3b8;
    pointer-events: none;
    box-shadow: none;
    transform: none;
}

.custom-pagination .page-link svg {
    transition: transform 0.2s ease;
}

.custom-pagination .page-link:hover svg {
    transform: scale(1.15);
}

/* Global SVG safeguard for default pagination templates */
.pagination svg,
nav[role="navigation"] svg,
.w-5.h-5 {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    display: inline-block !important;
    vertical-align: middle;
}

@media (max-width: 576px) {
    .custom-pagination-wrap {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding: 14px;
    }
    .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;
    }
}

/* ==========================================
   CUSTOM MODERN PAGINATION STYLING
   ========================================== */
.custom-pagination-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding: 16px 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.pagination-info {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted, #64748b);
}

.pagination-info span {
    font-weight: 700;
    color: var(--primary-navy, #151247);
}

.custom-pagination {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-pagination .page-item {
    margin: 0;
}

.custom-pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: var(--primary-navy, #151247);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.custom-pagination .page-link:hover {
    border-color: var(--accent-orange, #bd4a3c);
    color: var(--accent-orange, #bd4a3c);
    background: var(--orange-light, #fff4e8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(189, 74, 60, 0.15);
}

.custom-pagination .page-item.active .page-link {
    background: var(--accent-orange, #bd4a3c);
    border-color: var(--accent-orange, #bd4a3c);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(189, 74, 60, 0.35);
    font-weight: 700;
}

.custom-pagination .page-item.disabled .page-link {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #94a3b8;
    pointer-events: none;
    box-shadow: none;
    transform: none;
}

.custom-pagination .page-link svg {
    transition: transform 0.2s ease;
}

.custom-pagination .page-link:hover svg {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .custom-pagination-wrap {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 12px;
        padding: 14px;
    }
    .custom-pagination {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }
    .custom-pagination .page-link {
        min-width: 32px;
        height: 32px;
        padding: 0 6px;
        font-size: 12px;
    }
}

/* Global SVG safeguard for default pagination templates */
.pagination svg,
nav[role="navigation"] svg,
.w-5.h-5 {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    display: inline-block !important;
    vertical-align: middle;
}

@media (max-width: 576px) {
    .custom-pagination-wrap {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding: 14px;
    }
    
    .custom-pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    }
    .prime-cities-section,
    .testimonials-section,
    .partners-section,
    .blog-section,
    .sellers-section {
        margin: 48px 0 !important;
    }
}

@media (max-width: 576px) {
    .section-header {
        margin: 36px 0 18px !important;
    }
    .section-header h2 {
        font-size: 20px !important;
    }
    .category-grid {
        margin-top: 14px !important;
        margin-bottom: 36px !important;
    }
    .prime-cities-section,
    .testimonials-section,
    .partners-section,
    .blog-section,
    .sellers-section {
        margin: 36px 0 !important;
    }
    .swiper {
        padding-bottom: 36px !important;
    }
}

/* ==========================================
   PRIME CITIES FOR REAL ESTATE INVESTMENT
   ========================================== */
.prime-cities-section {
    margin: 64px 0 !important;
}

.prime-cities-header {
    text-align: center;
    margin-bottom: 28px !important;
}

.prime-cities-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-navy, #151247);
    letter-spacing: -0.5px;
}

.prime-cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    width: 100%;
}

.prime-city-card {
    position: relative;
    height: 325px;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
    background: #0f0c2d;
    min-width: 0;
}

.prime-city-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.prime-city-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.prime-city-card:hover .prime-city-img {
    transform: scale(1.08);
}

.prime-city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 30%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 14px;
    transition: background 0.3s ease;
}

.prime-city-card:hover .prime-city-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 35%, transparent 60%);
}

.prime-city-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 2px 0;
    line-height: 1.15;
    letter-spacing: -0.3px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.prime-city-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.prime-city-card:hover .prime-city-sub {
    color: #ffffff;
}

@media (max-width: 1199px) {
    .prime-cities-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }
    .prime-city-card {
        height: 285px;
        border-radius: 14px;
    }
    .prime-city-title {
        font-size: 18px;
    }
    .prime-city-overlay {
        padding: 14px 10px;
    }
}

@media (max-width: 991px) {
    .prime-cities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    .prime-city-card {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .prime-cities-header h2 {
        font-size: 22px;
    }
    .prime-city-card {
        height: 430px !important;
        border-radius: 18px;
    }
    .prime-city-overlay {
        padding: 20px 18px;
    }
    .prime-city-title {
        font-size: 24px;
    }
    .prime-city-sub {
        font-size: 13.5px;
    }
}

/* ==========================================================================
   HEADER CITY TRIGGER BUTTON & MODAL (IMAGE 2) & MEGAMENU (IMAGE 1)
   ========================================================================== */

/* City Trigger Button in Header */
.header-city-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 15px;
}
.header-city-trigger:hover {
    border-color: #bd4a3c;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}
.header-city-trigger .city-pin-icon {
    color: #bd4a3c;
    font-size: 14px;
}
.header-city-trigger .current-city-name {
    font-weight: 700;
    color: #0f172a;
    max-width: 110px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
}
.header-city-trigger .city-arrow-icon {
    font-size: 10px;
    color: #64748b;
    transition: transform 0.2s ease;
}

/* ==========================================================================
   MEGAMENU REDESIGNED (MATCHING IMAGE 1)
   ========================================================================== */
.megamenu-redesigned {
    width: 760px !important;
    max-width: 90vw !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(15px) !important;
    padding: 24px 28px !important;
    border-radius: 16px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12) !important;
}
.has-megamenu:hover .megamenu-redesigned {
    transform: translateX(-50%) translateY(0) !important;
}
.megamenu-inner-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
}

/* Left side: Property type */
.megamenu-property-types {
    width: 200px;
    flex-shrink: 0;
}
.megamenu-head-title {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 16px;
    text-transform: none;
    letter-spacing: normal;
    border: none !important;
    padding: 0 !important;
    white-space: nowrap;
}
.property-type-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.property-type-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #1e293b !important;
    text-decoration: none !important;
    padding: 6px 10px;
    border-radius: 8px;
    border-bottom: none !important;
    white-space: nowrap !important;
    transition: background 0.2s ease;
}
.property-type-nav li a i {
    font-size: 15px;
    color: #475569;
    width: 20px;
    text-align: center;
}
.property-type-nav li a .megamenu-type-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}
.property-type-nav li a .megamenu-type-mask {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: #475569;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}
.property-type-nav li a:hover .megamenu-type-mask {
    background-color: #ff8328;
}
.property-type-nav li a:hover {
    color: #1e293b !important; /* Text color stays unchanged */
    background-color: #f1f5f9; /* Subtle box background color change on hover */
    border-bottom: none !important;
    border-bottom-color: transparent !important;
}
.property-type-nav li a:hover i {
    color: #475569;
}

/* Vertical Line Divider */
.megamenu-v-divider {
    width: 1px;
    background-color: #e2e8f0;
    margin: 0 24px;
}

/* Right Side: 2 Columns Grid (Popular Areas & Popular Searches) */
.megamenu-right-sections {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.megamenu-subcol ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.megamenu-subcol ul li a {
    font-size: 13.5px;
    font-weight: 500;
    color: #334155 !important;
    text-decoration: none !important;
    padding: 6px 10px;
    border-radius: 6px;
    border-bottom: none !important;
    display: block;
    white-space: nowrap !important; /* Force SINGLE LINE for all text items */
    transition: background 0.2s ease;
    line-height: 1.4;
}
.megamenu-subcol ul li a:hover {
    color: #334155 !important; /* Text color stays unchanged */
    background-color: #f1f5f9 !important; /* Subtle box background color change on hover */
    border-bottom: none !important;
    border-bottom-color: transparent !important;
}

/* ==========================================================================
   HEADER CITY HOVER DROPDOWN MENU
   ========================================================================== */
.header-city-hover-wrapper {
    position: relative;
    display: inline-block;
}
.header-city-hover-wrapper:hover .header-city-dropdown-menu:not(.force-close),
.header-city-hover-wrapper.active .header-city-dropdown-menu:not(.force-close),
.header-city-dropdown-menu.active:not(.force-close) {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.header-city-dropdown-menu.force-close,
.megamenu-dropdown.force-close {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(8px) !important;
}

.header-city-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 580px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    overflow: hidden;
}

.header-city-dropdown-menu .city-modal-header-box {
    padding: 14px 18px 8px 18px;
}
.header-city-dropdown-menu .city-search-input-wrap {
    position: relative !important;
    width: 100% !important;
    display: block !important;
}
.header-city-dropdown-menu .city-search-input-wrap input {
    padding: 9px 14px 9px 38px !important;
    font-size: 13px;
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
    outline: none;
    width: 100% !important;
    box-sizing: border-box !important;
    color: #1e293b;
}
.header-city-dropdown-menu .city-search-input-wrap input:focus {
    border-color: var(--primary-orange, #ff8328);
    box-shadow: 0 0 0 3px rgba(255, 131, 40, 0.15);
}
.header-city-dropdown-menu .city-search-input-wrap .search-icon {
    position: absolute !important;
    left: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #94a3b8;
    font-size: 13px;
    pointer-events: none;
    z-index: 2;
}

.header-city-dropdown-menu .city-modal-body-content {
    padding: 6px 18px 12px 18px;
    max-height: none;
    overflow: hidden;
}
.header-city-dropdown-menu .city-grid-heading {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.header-city-dropdown-menu .popular-cities-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.header-city-dropdown-menu .city-modal-body-content.expanded-scrollable {
    max-height: 240px;
    overflow-y: auto;
    padding-right: 10px;
}

.header-city-dropdown-menu .city-modal-body-content.expanded-scrollable::-webkit-scrollbar {
    width: 5px;
}
.header-city-dropdown-menu .city-modal-body-content.expanded-scrollable::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}
.header-city-dropdown-menu .city-modal-body-content.expanded-scrollable::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.header-city-dropdown-menu .city-modal-body-content.expanded-scrollable::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange, #ff8328);
}

.header-city-dropdown-menu .city-card-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 9px 12px;
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}
.header-city-dropdown-menu .city-card-item:hover {
    border-color: #e2e8f0;
    background: #f1f5f9;
    box-shadow: none;
}
.header-city-dropdown-menu .city-card-item.active {
    border-color: var(--primary-orange, #ff8328);
    background: rgba(255, 131, 40, 0.05);
}
.header-city-dropdown-menu .city-card-item .city-card-name {
    font-size: 12.5px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.header-city-dropdown-menu .city-modal-footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
.header-city-dropdown-menu .city-modal-footer-bar .footer-left-links {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}
.header-city-dropdown-menu .city-modal-footer-bar .footer-left-links .link-item.active {
    color: var(--primary-orange, #ff8328);
}
.header-city-dropdown-menu .city-modal-footer-bar .footer-right-link a {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary-orange, #ff8328);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.header-city-dropdown-menu .city-modal-footer-bar .footer-right-link a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .header-city-dropdown-menu {
        position: absolute !important;
        top: calc(100% + 10px) !important;
        right: -10px !important;
        left: auto !important;
        width: 320px !important;
        max-width: calc(100vw - 24px) !important;
        box-shadow: 0 15px 35px rgba(15, 23, 42, 0.22) !important;
        z-index: 2000 !important;
    }
    .header-city-dropdown-menu .popular-cities-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .header-city-dropdown-menu {
        right: -25px !important;
        width: 300px !important;
        max-width: calc(100vw - 16px) !important;
    }
}
