/* ============================================
   BOMBAY SITES — Premium Design System 2026
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #0a0f1a;
    --primary-light: #141c2e;
    --accent: #c9a84c;
    --accent-hover: #b8952f;
    --accent-glow: rgba(201, 168, 76, 0.3);
    --surface: #ffffff;
    --bg: #f5f6fa;
    --bg-alt: #eef0f5;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', 'Lato', sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.14);
    --shadow-glow: 0 0 40px var(--accent-glow);

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--accent);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #e0c068 100%);
    color: var(--primary);
    font-weight: 800;
    border: none;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.25);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--accent);
    color: var(--primary);
    font-weight: 800;
}

.btn-secondary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.6rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-dark {
    display: none;
}

.logo-light {
    display: block;
}

.navbar.scrolled .logo-light {
    display: none;
}

.navbar.scrolled .logo-dark {
    display: block;
}

.navbar.scrolled .logo img {
    height: 42px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--accent);
}

.nav-links .btn-primary {
    color: #fff !important;
    padding: 0.6rem 1.4rem;
}

.nav-links .btn-primary::after {
    display: none;
}

.nav-phone {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.navbar.scrolled .nav-phone {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle {
    color: var(--primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(8, 12, 22, 0.72) 0%, rgba(8, 12, 22, 0.55) 60%, rgba(8, 12, 22, 0.75) 100%), url('../img/hero-main.jpg') center/cover no-repeat;
    overflow: hidden;
    padding: 120px 1.5rem 80px;
}

/* Animated background shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(100, 130, 200, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(1deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-1deg);
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particle 6s ease-in-out infinite;
}

.hero-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.hero-particles span:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 1s;
}

.hero-particles span:nth-child(3) {
    left: 50%;
    top: 30%;
    animation-delay: 2s;
}

.hero-particles span:nth-child(4) {
    left: 70%;
    top: 70%;
    animation-delay: 3s;
}

.hero-particles span:nth-child(5) {
    left: 85%;
    top: 40%;
    animation-delay: 4s;
}

.hero-particles span:nth-child(6) {
    left: 15%;
    top: 80%;
    animation-delay: 5s;
}

@keyframes particle {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translateY(-40px) scale(1.5);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--accent);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #fff;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Bar */
.search-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-xl);
    display: flex;
    gap: 1rem;
    box-shadow: var(--shadow-xl), 0 0 60px rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    align-items: flex-end;
    flex-wrap: wrap;
}

.input-group {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    border-right: 1px solid var(--border);
}

.input-group:last-of-type {
    border-right: none;
}

.input-group label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1.2px;
    margin-bottom: 0.2rem;
}

.input-group input,
.input-group select {
    border: none;
    outline: none;
    width: 100%;
    padding: 0.4rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    background: transparent;
}

.search-bar .btn {
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    white-space: nowrap;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--primary);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.05), transparent);
}

.stats-grid-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
}

.stat-item {
    color: #fff;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 3.8rem 0;
}

.section-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-header .section-tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.1);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 0.8rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
}

.bg-alt {
    background: var(--bg-alt);
}

/* ============================================
   PROPERTIES PAGE LAYOUT
   ============================================ */
.property-page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.sidebar {
    position: sticky;
    top: 7rem;
}

.filter-card {
    background: var(--surface);
    padding: 1.8rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.filter-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border);
}

.filter-group {
    margin-bottom: 1.4rem;
}

.filter-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.filter-group input[type="text"],
.filter-group select {
    width: 100%;
    padding: 0.65rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
}

.filter-group input[type="text"]:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.filter-group input[type="range"] {
    width: 100%;
    accent-color: var(--accent);
    cursor: pointer;
    margin-bottom: 0.4rem;
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    accent-color: var(--accent);
    width: 15px;
    height: 15px;
}

.property-list {
    min-width: 0;
    /* Prevent overflow in grid */
}

@media (max-width: 1024px) {
    .property-page-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
        margin-bottom: 2rem;
        animation: slideDown 0.4s ease forwards;
    }

    .sidebar.active {
        display: block;
    }

    .filter-toggle-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        width: 100%;
        padding: 1rem;
        background: var(--primary);
        color: #fff;
        border: none;
        border-radius: var(--radius-md);
        font-weight: 700;
        margin-bottom: 1.5rem;
        cursor: pointer;
        box-shadow: var(--shadow-md);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (min-width: 1025px) {
    .filter-toggle-btn {
        display: none;
    }
}

/* ============================================
   PROPERTY CARDS & GRID
   ============================================ */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
    width: 100%;
}

.property-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 76, 0.3);
}

.card-image-wrap {
    height: 220px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.card-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover .card-img-main {
    transform: scale(1.1);
}

.card-image-wrap .badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.card-image-wrap .price {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.card-fav {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.card-fav:hover {
    background: var(--danger);
    border-color: var(--danger);
}

.card-content {
    padding: 1.2rem 1.4rem 1.4rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.card-content .location {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.card-content .location i {
    color: var(--accent);
    font-size: 0.8rem;
}

.features-list {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text);
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.features-list li i {
    color: var(--accent);
    font-size: 0.8rem;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 0.8rem;
}

.card-actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
}

.btn-pdf {
    background: rgba(239, 68, 68, 0.07);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
    font-size: 0.83rem;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-pdf:hover {
    background: var(--danger);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--surface);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #e0c068);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    color: var(--accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: linear-gradient(135deg, var(--accent), #e0c068);
    color: var(--primary);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   NEIGHBORHOODS
   ============================================ */
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.neighborhood-card {
    position: relative;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.neighborhood-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 26, 0.85) 0%, rgba(10, 15, 26, 0.2) 60%);
    z-index: 1;
    transition: var(--transition);
}

.neighborhood-card:hover::before {
    background: linear-gradient(to top, rgba(10, 15, 26, 0.9) 0%, rgba(10, 15, 26, 0.3) 60%);
}

.neighborhood-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.neighborhood-info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    color: #fff;
}

.neighborhood-info h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.neighborhood-info span {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial-card {
    min-width: 100%;
    background: var(--surface);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    border: 1px solid var(--border);
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.client-info h4 {
    margin-bottom: 0.1rem;
    font-size: 1rem;
}

.client-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}

/* --- Features Row (Why Choose Us) --- */
.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-glow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-glow);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-text h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Partners Grid --- */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    align-items: center;
}

.partner-logo {
    height: 75px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 0 1rem;
    cursor: default;
}

.partner-logo:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.partner-logo span {
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
}

/* Individual bank brand colors */
.partner-logo:nth-child(1) span {
    color: #004C8F;
}

/* HDFC navy */
.partner-logo:nth-child(2) span {
    color: #F58220;
}

/* ICICI orange */
.partner-logo:nth-child(3) span {
    color: #22509D;
}

/* SBI blue */
.partner-logo:nth-child(4) span {
    color: #97144d;
}

/* Axis maroon */
.partner-logo:nth-child(5) span {
    color: #EE3A41;
}

/* Kotak red */
.partner-logo:nth-child(6) span {
    color: #005236;
}

/* LIC green */

.border-top {
    border-top: 1px solid var(--border);
}

.mb-4 {
    margin-bottom: 2rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #1a2540 50%, #2a1f3a 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 168, 76, 0.1), transparent 60%);
}

.cta-banner h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    position: relative;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 0.3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.rera-info {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: waPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* ============================================
   PROPERTY PAGE
   ============================================ */
.property-page-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.filter-card h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border);
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.filter-group input[type="text"],
.filter-group select {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-group input:focus,
.filter-group select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.filter-group input[type="range"] {
    width: 100%;
    accent-color: var(--accent);
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.list-header h2 {
    font-size: 1.6rem;
    margin-bottom: 0;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.sort-options select {
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    font-weight: 600;
    transition: var(--transition);
}

.pagination a.active,
.pagination a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ============================================
   PROPERTY DETAIL PAGE
   ============================================ */
.breadcrumb {
    margin: 1.5rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--accent);
    font-weight: 600;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.property-header h1 {
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.gallery-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.6rem;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
}

.main-image {
    height: 100%;
    border-radius: var(--radius-md);
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.6rem;
}

.thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.thumbnail:hover {
    opacity: 0.85;
}

.more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.property-details-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
}

@media (max-width: 992px) {
    .property-details-layout {
        grid-template-columns: 1fr;
    }
}

.detail-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.detail-card h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.overview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem;
    background: var(--bg);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.overview-item:hover {
    background: rgba(201, 168, 76, 0.08);
}

.overview-item i {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.overview-item span {
    font-size: 0.9rem;
    font-weight: 600;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.amenities-list li:hover {
    background: var(--bg);
}

.amenities-list li i {
    color: var(--success);
}

/* Sidebar cards */
.sidebar-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.contact-card {
    background: linear-gradient(135deg, var(--primary), #1a2540);
    color: #fff;
    border: none;
}

.contact-card h3 {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
}

.agent-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.agent-avatar {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.agent-info h4 {
    color: #fff;
    margin-bottom: 0;
    font-size: 1rem;
}

.agent-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    margin-bottom: 0.8rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.emi-calc .calc-row {
    margin-bottom: 1rem;
}

.emi-calc label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.emi-calc input {
    width: 100%;
    padding: 0.5rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
}

.emi-calc input:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.calc-result {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg);
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-result strong {
    font-size: 1.2rem;
    color: var(--accent);
}

/* ============================================
   ADMIN DASHBOARD
   ============================================ */
.admin-body {
    background-color: #f4f7f6;
}

.admin-container {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: linear-gradient(180deg, var(--primary), #141c2e);
    color: #fff;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.admin-logo {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.15);
    text-align: center;
}

.admin-logo h3 {
    margin-bottom: 0;
    color: #fff;
}

.admin-logo p {
    font-size: 0.8rem;
    opacity: 0.6;
}

.admin-nav {
    flex: 1;
    padding: 1.5rem 0;
}

.admin-nav li a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    border-left: 3px solid transparent;
    font-size: 0.9rem;
}

.admin-nav li a:hover,
.admin-nav li a.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-left-color: var(--accent);
}

.admin-nav li a i {
    width: 25px;
    margin-right: 10px;
}

.logout {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-main {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: var(--surface);
    padding: 1.2rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.admin-header h2 {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.user-profile img {
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stat-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    line-height: 1;
}

.stat-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.admin-section {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table tr:hover {
    background: var(--bg);
}

.prop-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prop-cell img {
    border-radius: var(--radius-sm);
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.status-badge.available {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.status-badge.sold {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.action-btn {
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1rem;
    margin-right: 5px;
    transition: var(--transition);
}

.action-btn:hover {
    color: var(--primary);
}

.action-btn.delete:hover {
    color: var(--danger);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .neighborhoods-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .property-page-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .property-details-layout {
        grid-template-columns: 1fr;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        height: auto;
        aspect-ratio: 16/10;
    }

    .thumbnail-grid {
        display: none;
        /* Hide thumbnails on small mobile to save space */
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--surface);
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--text) !important;
    }

    .nav-toggle {
        display: block;
    }

    .nav-phone {
        display: none;
    }

    .hero {
        min-height: 80vh;
        padding: 8rem 1rem 4rem;
        display: flex;
        align-items: center;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .search-bar {
        flex-direction: column;
        padding: 1.5rem;
        border-radius: var(--radius-lg);
        gap: 0;
        width: 100%;
    }

    .input-group {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 1rem 0;
        text-align: left;
    }

    .input-group:last-of-type {
        border-bottom: none;
    }

    .search-bar .btn {
        width: 100%;
        margin-top: 1rem;
        padding: 1.2rem;
    }

    .stats-grid-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .neighborhoods-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .property-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Bottom CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 0.8rem 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 998;
    justify-content: space-around;
    gap: 0.5rem;
}

.mobile-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.8rem;
}

.mobile-cta .cta-call {
    background: var(--primary);
    color: #fff;
}

.mobile-cta .cta-wa {
    background: #25d366;
    color: #fff;
}

.mobile-cta .cta-search {
    background: var(--bg-alt);
    color: var(--text);
}

/* ============================================
   TIER 1 RESPONSIVE FIXES
   ============================================ */
@media (max-width: 768px) {
    .property-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .price-tag {
        font-size: 1.5rem;
    }

    .project-sub-nav .container {
        justify-content: flex-start;
        overflow-x: auto;
        padding-left: 1rem;
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
    }

    .project-sub-nav-link {
        white-space: nowrap;
        font-size: 0.75rem;
    }

    .pricing-header,
    .pricing-row {
        grid-template-columns: 1fr 1fr;
        /* Stack pricing or hide area on mobile */
    }

    .pricing-header div:nth-child(2),
    .pricing-row div:nth-child(2) {
        display: none;
        /* Hide 'Usable Area' on mobile to prevent squishing */
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .rera-verified-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Performance Optimization */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease;
    will-change: transform, opacity;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .mobile-cta {
        display: flex;
    }

    .whatsapp-float {
        bottom: 5rem;
    }

    body {
        padding-bottom: 60px;
    }
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg) 0%, #111827 50%, var(--bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent 70%);
    top: -200px;
    right: -100px;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin: 1rem 0;
    color: #fff;
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 0.5rem 0 1.5rem;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
}

.about-highlight-item i {
    font-size: 1.5rem;
    color: var(--accent);
    width: 40px;
    text-align: center;
}

.about-highlight-item strong {
    display: block;
    font-size: 0.95rem;
}

.about-highlight-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.6rem;
    color: var(--accent);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #a88d3a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2rem;
    color: #fff;
}

.team-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.team-role {
    display: block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 0.9rem;
}

.team-social a:hover {
    background: var(--accent);
    color: #fff;
}

/* ============================================
   SERVICES DETAIL PAGE
   ============================================ */
.service-detail {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2.5rem;
    align-items: start;
    padding: 3rem 0;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse>* {
    direction: ltr;
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.service-detail-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.service-features li i {
    color: var(--accent);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.service-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.4;
    margin-bottom: 0.8rem;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-form label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    color: var(--text);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-info-card {
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--accent);
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.contact-info-card a {
    color: var(--accent);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 0.8rem;
    overflow: hidden;
    background: var(--surface);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent);
    font-size: 0.8rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.2rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.blog-grid {
    display: grid;
    gap: 2rem;
}

.blog-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.blog-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.blog-card.featured .blog-image {
    height: 100%;
    min-height: 300px;
}

.blog-category {
    background: var(--accent);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1.2rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.blog-meta i {
    margin-right: 0.3rem;
}

.blog-content h2,
.blog-content h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.blog-content h2 {
    font-size: 1.5rem;
}

.blog-content h3 {
    font-size: 1.15rem;
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-read-more {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-read-more:hover {
    gap: 0.7rem;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-widget input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-alt);
    color: var(--text);
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.sidebar-widget input:focus {
    outline: none;
    border-color: var(--accent);
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--accent);
}

.category-list span {
    background: var(--bg-alt);
    padding: 0.2rem 0.7rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.popular-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}

.popular-post:last-child {
    border-bottom: none;
}

.popular-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.4;
    line-height: 1;
}

.popular-post a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    display: block;
    margin-bottom: 0.3rem;
}

.popular-post a:hover {
    color: var(--accent);
}

.popular-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE — NEW PAGES
   ============================================ */
@media (max-width: 1024px) {

    .values-grid,
    .team-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card.featured {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 7rem 0 3rem;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid,
    .team-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .service-detail-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* ============================================
   LEAD POPUP
   ============================================ */
.lead-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 26, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lead-popup-overlay.show {
    opacity: 1;
}

.lead-popup-content {
    background: var(--surface);
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-xl);
}

.lead-popup-overlay.show .lead-popup-content {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
    z-index: 10;
}

.popup-close:hover {
    background: var(--danger);
    color: #fff;
    transform: rotate(90deg);
}

.popup-header {
    background: linear-gradient(to bottom, rgba(10, 15, 26, 0.7), rgba(10, 15, 26, 0.95)), url('../img/hero-main.jpg') center/cover no-repeat;
    padding: 4rem 2rem 3rem;
    color: #fff;
    text-align: center;
}

.popup-header h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.popup-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.popup-body {
    padding: 2.5rem 2rem;
}

.lead-form .form-group {
    margin-bottom: 1.5rem;
}

.lead-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--bg);
    transition: var(--transition);
}

.lead-form input:focus,
.lead-form select:focus {
    border-color: var(--accent);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.popup-footer {
    padding-top: 1rem;
}

.popup-footer .btn-block {
    padding: 1rem;
    font-size: 1.05rem;
    width: 100%;
}

.wa-hint {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Property Video Container */
.video-container {
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ============================================
   TIER 1 PREMIUM IMPROVEMENTS (Lodha/Godrej Style)
   ============================================ */

/* 1. Sticky Secondary Nav */
.project-sub-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 70px;
    z-index: 100;
    display: none;
    /* Shown on property detail pages */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.project-sub-nav .container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0.8rem 0;
}

.project-sub-nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.project-sub-nav-link:hover,
.project-sub-nav-link.active {
    color: var(--primary);
}

/* 2. MahaRERA Badge Section */
.rera-verified-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
}

.rera-logo-mini {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.rera-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rera-text strong {
    color: var(--primary);
    display: block;
}

/* 3. Connectivity Table */
.connectivity-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.connectivity-table tr {
    border-bottom: 1px solid var(--border);
}

.connectivity-table tr:last-child {
    border-bottom: none;
}

.connectivity-table td {
    padding: 1rem 0.5rem;
    font-size: 0.95rem;
}

.connectivity-table td i {
    color: var(--accent);
    width: 25px;
}

.connectivity-table .distance {
    text-align: right;
    font-weight: 700;
    color: var(--primary);
}

/* 4. Pros & Highlights Section */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.highlight-box {
    padding: 1.2rem;
    background: #fff;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.highlight-box:hover {
    transform: translateY(-5px);
}

.highlight-box h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.highlight-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* 5. Sticky Action Bar (Mobile Only) */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.8rem;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .mobile-action-bar {
        display: grid;
    }
}

.mobile-action-bar .btn {
    padding: 0.8rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* 6. Improved Pricing Table */
.pricing-grid {
    width: 100%;
    margin-top: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

.pricing-header,
.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

@media (max-width: 600px) {

    .pricing-header,
    .pricing-row {
        grid-template-columns: 1fr 1.2fr;
        /* Hide middle column to save space */
    }

    .pricing-header div:nth-child(2),
    .pricing-row div:nth-child(2) {
        display: none;
    }
}

.pricing-row {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
    transition: var(--transition);
}

.pricing-row:hover {
    background: rgba(184, 153, 93, 0.05);
}

.pricing-row:last-child {
    border-bottom: none;
}

/* ============================================
   MOBILE GALLERY FIX
   ============================================ */
@media (max-width: 992px) {
    .gallery-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .main-image {
        height: 250px;
    }

    .thumbnail-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        height: 80px;
        margin-top: 10px;
    }

    .thumbnail {
        height: 100%;
    }
}

/* ============================================
   PAGE HEROES — Real Background Images
   ============================================ */
.page-hero {
    position: relative;
    padding: 9rem 0 5rem;
    background: linear-gradient(to right, rgba(8, 12, 22, 0.82) 0%, rgba(8, 12, 22, 0.55) 100%), url('../img/properties-hero.jpg') center/cover no-repeat;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero.about-hero {
    background: linear-gradient(to right, rgba(8, 12, 22, 0.82) 0%, rgba(8, 12, 22, 0.50) 100%), url('../img/about-hero.jpg') center/cover no-repeat;
}

.page-hero.properties-hero {
    background: linear-gradient(to right, rgba(8, 12, 22, 0.80) 0%, rgba(8, 12, 22, 0.50) 100%), url('../img/properties-hero.jpg') center/cover no-repeat;
}

.page-hero.contact-hero {
    background: linear-gradient(to right, rgba(8, 12, 22, 0.78) 0%, rgba(8, 12, 22, 0.45) 100%), url('../img/contact-hero.jpg') center/cover no-repeat;
}

.page-hero.blog-hero {
    background: linear-gradient(to right, rgba(8, 12, 22, 0.80) 0%, rgba(8, 12, 22, 0.55) 100%), url('../img/properties-hero.jpg') center/cover no-repeat;
}

.page-hero.services-hero {
    background: linear-gradient(to right, rgba(8, 12, 22, 0.82) 0%, rgba(8, 12, 22, 0.50) 100%), url('../img/about-hero.jpg') center/cover no-repeat;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.page-hero-content .section-tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--accent);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
}

.page-hero-content h1 {
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 520px;
    line-height: 1.75;
}

/* Breadcrumb */
.breadcrumb-hero {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.83rem;
    margin-bottom: 1.5rem;
}

.breadcrumb-hero a {
    color: rgba(255, 255, 255, 0.65);
}

.breadcrumb-hero i {
    font-size: 0.65rem;
}

.breadcrumb-hero span {
    color: var(--accent);
}

/* ============================================
   FREE RIDE POPUP (Bombay Sites Signature)
   ============================================ */
.free-ride-banner {
    background: linear-gradient(135deg, #0a0f1a 0%, #1a2b49 100%);
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
    border: 1px solid rgba(201, 168, 76, 0.25);
    position: relative;
    overflow: hidden;
}

.free-ride-banner::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.06);
}

.free-ride-banner .badge-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.free-ride-banner h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.free-ride-banner p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.free-ride-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-width: 180px;
}

.btn-ride {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 1.2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-body);
    text-decoration: none;
}

.btn-ola {
    background: #1F9B53;
    color: #fff;
}

.btn-ola:hover {
    background: #18823f;
    transform: translateY(-2px);
}

.btn-uber {
    background: #000;
    color: #fff;
}

.btn-uber:hover {
    background: #222;
    transform: translateY(-2px);
}

.btn-ride i {
    font-size: 1.1rem;
}

/* Free Ride Popup */
.free-ride-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 22, 0.88);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.free-ride-overlay.show {
    opacity: 1;
}

.free-ride-card {
    background: var(--surface);
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-xl) var(--radius-xl) var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    transform: translateY(100px);
    transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
    box-shadow: var(--shadow-xl);
}

.free-ride-overlay.show .free-ride-card {
    transform: translateY(0);
}

.free-ride-card-header {
    background: linear-gradient(135deg, #0a0f1a, #1a2b49);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.free-ride-card-header h2 {
    color: #fff;
    font-size: 1.6rem;
}

.free-ride-card-header p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin-top: 0.4rem;
}

.free-ride-card-header .ride-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.free-ride-card-body {
    padding: 1.5rem 2rem 2rem;
}

.ride-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 1.2rem 0;
}

.ride-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-body);
    text-decoration: none;
}

.ride-option.ola {
    background: #1F9B53;
    color: #fff;
}

.ride-option.ola:hover {
    background: #18823f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(31, 155, 83, 0.4);
}

.ride-option.uber {
    background: #000;
    color: #fff;
}

.ride-option.uber:hover {
    background: #222;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.ride-skip {
    width: 100%;
    padding: 0.7rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    font-family: var(--font-body);
    text-decoration: underline;
    margin-top: 0.5rem;
}

/* ============================================
   NEIGHBORHOOD CARDS — Real Images
   ============================================ */
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.neighborhood-card {
    height: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.neighborhood-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.neighborhood-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 12, 22, 0.85) 0%, rgba(8, 12, 22, 0.1) 60%);
    transition: var(--transition);
}

.neighborhood-card:hover::after {
    background: linear-gradient(to top, rgba(8, 12, 22, 0.9) 0%, rgba(8, 12, 22, 0.2) 70%);
}

.neighborhood-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    transform: translateY(5px);
    transition: var(--transition);
}

.neighborhood-card:hover .neighborhood-info {
    transform: translateY(0);
}

.neighborhood-info h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

.neighborhood-info span {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ============================================
   HUMANIZED TEAM SECTION — Real Avatar Style
   ============================================ */
.agent-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.team-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-glow);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #1a3a6a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.8rem;
    margin: 0 auto 1.2rem;
    border: 3px solid var(--accent);
}

/* ============================================
   HERO SEARCH — TABS (Industry Standard)
   ============================================ */
.search-tabs {
    display: flex;
    gap: 0;
    margin-bottom: -1px;
}

.search-tab {
    padding: 0.7rem 1.6rem;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.search-tab.active {
    background: rgba(255, 255, 255, 0.97);
    color: var(--primary);
}

/* ============================================
   MOBILE — Comprehensive Fix
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 100px 1rem 60px;
        min-height: 100svh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .search-bar {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        border-radius: var(--radius-lg);
    }

    .input-group {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 0.8rem 0.5rem;
        min-width: auto;
    }

    .input-group:last-of-type {
        border-bottom: none;
    }

    .search-bar .btn {
        width: 100%;
        margin-top: 0.8rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .stats-grid-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stats-bar {
        padding: 2.5rem 0;
    }

    .features-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .partner-logo {
        height: 60px;
        padding: 0 0.5rem;
    }

    .partner-logo {
        height: 65px;
        padding: 0.8rem;
    }

    .partner-logo span {
        font-size: 0.68rem;
    }

    .property-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .neighborhoods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .neighborhood-card {
        height: 180px;
    }

    .page-hero {
        padding: 7rem 0 3.5rem;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .page-hero-content p {
        font-size: 1rem;
    }

    .free-ride-banner {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .free-ride-actions {
        flex-direction: row;
    }

    .property-details-layout {
        grid-template-columns: 1fr;
    }

    .details-sidebar {
        order: -1;
    }

    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    /* About image */
    .about-img-placeholder {
        height: 260px !important;
    }

    /* Nav fix */
    .nav-phone {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--surface);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.4s ease;
        display: flex;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }

    .nav-links.active {
        right: 0;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }

    .nav-links li a {
        display: block;
        padding: 0.8rem 1rem;
        border-radius: var(--radius-sm);
        color: var(--text);
        font-weight: 600;
    }

    .nav-toggle {
        display: flex;
    }

    /* Property detail mobile */
    .gallery-container {
        grid-template-columns: 1fr;
    }

    .main-image {
        height: 240px;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(4, 1fr);
        height: 70px;
        margin-top: 8px;
    }

    .project-sub-nav .container {
        gap: 1rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0.8rem 1rem;
    }

    .project-sub-nav-link {
        white-space: nowrap;
        font-size: 0.78rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        font-size: 0.88rem;
    }

    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Popup mobile */
    .lead-popup-content {
        max-width: 100%;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .lead-popup-overlay {
        align-items: flex-end;
        padding: 0;
    }

    /* Free ride */
    .ride-options {
        grid-template-columns: 1fr 1fr;
    }

    /* Landscape Hero Fix */
    @media (orientation: landscape) and (max-height: 500px) {
        .hero {
            padding: 80px 1.5rem 40px;
            min-height: auto;
        }

        .hero-search-wrap {
            transform: scale(0.85);
            margin-top: 1rem;
        }

        .hero h1 {
            font-size: 1.5rem;
        }

        .hero-content p {
            display: none;
        }
    }
}

/* Small phones */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .neighborhoods-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .neighborhood-card {
        height: 150px;
    }

    .stats-grid-bar {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   HUMANIZE — Animated Section Transitions
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
    filter: blur(4px);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Stagger children */
.features-row .feature-item:nth-child(1) {
    transition-delay: 0s;
}

.features-row .feature-item:nth-child(2) {
    transition-delay: 0.1s;
}

.features-row .feature-item:nth-child(3) {
    transition-delay: 0.2s;
}

.property-grid .property-card:nth-child(1) {
    transition-delay: 0s;
}

.property-grid .property-card:nth-child(2) {
    transition-delay: 0.08s;
}

.property-grid .property-card:nth-child(3) {
    transition-delay: 0.16s;
}

/* Hover microinteraction on CTA buttons */
.logo-hdfc span {
    color: #1c3d91;
    font-weight: 900;
}

.logo-icici span {
    color: #f37021;
    font-weight: 900;
}

.logo-sbi span {
    color: #2872bc;
    font-weight: 900;
}

.logo-axis span {
    color: #971243;
    font-weight: 900;
}

.logo-kotak span {
    color: #ed1c24;
    font-weight: 900;
}

.logo-lic span {
    color: #005aab;
    font-weight: 900;
}

.btn-accent,
.btn-primary,
.btn-whatsapp {
    position: relative;
    overflow: hidden;
}

.btn-accent::after,
.btn-primary::after,
.btn-whatsapp::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-accent:hover::after,
.btn-primary:hover::after,
.btn-whatsapp:hover::after {
    transform: translateX(0);
}

/* About section image real look */
.about-real-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    display: block;
}

/* Trust badges */
.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.trust-badge i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* Stat card (homepage contact) */
.stat-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--accent-glow);
    box-shadow: var(--shadow-sm);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.stat-info h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-family: var(--font-body);
}

.stat-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    z-index: 400;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    animation: pulse-green 2.5s infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.12);
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

/* bg-light alias */
.bg-light {
    background: #f8f9fc;
}

/* ============================================
   CONTACT LAYOUT FIX
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

/* Developer Credit Styling */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0 3rem;
    }
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: left;
}

@media (max-width: 768px) {
    .footer-copyright {
        text-align: center;
    }
}

.footer-bottom span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.5;
}

.developer-credit {
    display: flex;
    align-items: center;
}

.dev-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dev-link span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.dev-logo {
    height: 32px;
    width: auto;
    border-radius: 4px;
    transition: var(--transition);
}

.dev-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 168, 76, 0.3);
}

.dev-link:hover .dev-logo {
    transform: scale(1.08);
}

.dev-link:hover span {
    color: var(--accent);
}