* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700;900&family=Cormorant+Garamond:wght@300;400;500;600;700&family=Philosopher:wght@400;700&display=swap');

:root {
    --primary-color: #1a1a1a;
    --accent-color: #DC2626;
    --accent-secondary: #B91C1C;
    --accent-light: #EF4444;
    --accent-dark: #991B1B;
    --text-color: #1a1a1a;
    --text-light: #6b6b6b;
    --bg-color: #ffffff;
    --bg-dark: #0a0a0a;
    --bg-card: #f8f9fa;
    --light-gray: #f5f5f5;
    --border-color: #e5e7eb;
    --gray-text: #9ca3af;
    --luxury-gradient: linear-gradient(135deg, #DC2626 0%, #B91C1C 50%, #991B1B 100%);
    --luxury-gradient-subtle: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(185, 28, 28, 0.04) 100%);
    --dark-gradient: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.04);
    --card-shadow-hover: 0 4px 16px rgba(220, 38, 38, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
    --luxury-border: 1px solid rgba(220, 38, 38, 0.15);
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    font-weight: 400;
    font-size: 12px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove underlines from all links by default */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--primary-color);
    font-size: 16px;
    text-decoration: none;
}

p {
    text-decoration: none;
}

span {
    text-decoration: none;
}

/* Header */


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.logo i {
    font-size: 16px;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 12px;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--accent-color);
}

.nav a.active {
    color: var(--accent-color);
    font-weight: 600;
    position: relative;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(58, 58, 58, 0.2);
}

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    transform: translateY(-2px);
}

.btn-link {
    background: transparent;
    color: var(--primary-color);
    padding: 0;
    text-decoration: none;
    font-weight: 500;
}

/* Hero Section */
/* Focus Banner Section */
.focus-banner {
    position: relative;
    padding: 0;
    margin: 0;
    background: var(--bg-color);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.focus-banner-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.focus-banner-image {
    position: relative;
    height: 400px;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
    padding: 0;
}

/* Responsive banner height for all devices */
@media (max-width: 480px) {
    .focus-banner-image {
        height: 250px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .focus-banner-image {
        height: 300px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .focus-banner-image {
        height: 350px;
    }
}

@media (min-width: 1025px) {
    .focus-banner-image {
        height: 400px;
    }
}

@media (min-width: 1441px) {
    .focus-banner-image {
        height: 500px;
    }
}

.focus-video-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.focus-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    border: none;
    pointer-events: none;
    object-fit: cover;
    object-position: center center;
    margin: 0;
    padding: 0;
    display: block;
    transform: translate(-50%, -50%);
}

/* Responsive video sizing - Full screen cover for all devices */
/* Mobile devices (up to 480px) */
@media (max-width: 480px) {
    .focus-video {
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        transform: translate(-50%, -50%);
    }
}

/* Small tablets (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .focus-video {
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        transform: translate(-50%, -50%);
    }
}

/* Tablets and small desktops (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .focus-video {
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        transform: translate(-50%, -50%);
    }
}

/* Large desktops (1025px to 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .focus-video {
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        transform: translate(-50%, -50%);
    }
}

/* Extra large desktops (1441px and above) */
@media (min-width: 1441px) {
    .focus-video {
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        transform: translate(-50%, -50%);
    }
}

/* Landscape orientation - ensure full coverage */
@media (orientation: landscape) {
    .focus-video {
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        transform: translate(-50%, -50%);
    }
}

/* Portrait orientation - ensure full coverage */
@media (orientation: portrait) {
    .focus-video {
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        transform: translate(-50%, -50%);
    }
}

/* Aspect ratio based adjustments - ensure video covers entire screen */
@media (min-aspect-ratio: 16/9) {
    .focus-video {
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@media (max-aspect-ratio: 16/9) {
    .focus-video {
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.focus-banner-image:hover {
    transform: scale(1.005);
}

.focus-banner-image:hover .focus-image-overlay {
    background: linear-gradient(180deg, rgba(220, 38, 38, 0.15) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.focus-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(262deg, rgba(0, 0, 0, 0) 0%, rgb(77 68 30 / 67%) 100%);
    transition: all 0.2s ease;
    z-index: 2;
}

.focus-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(220, 38, 38, 0.1);
    border: var(--luxury-border);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.focus-badge i {
    font-size: 12px;
}

.focus-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 var(--spacing-lg);
    box-sizing: border-box;
    z-index: 3;
    transition: all 0.2s ease;
    text-align: center;
}

.focus-content-inner {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.focus-brand {
    margin-bottom: 16px;
    text-align: center;
}

.focus-content h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--bg-color);
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    font-family: 'Philosopher', serif;
    letter-spacing: 0.05em;
    line-height: 1.1;
    text-transform: uppercase;
}

.focus-brand-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
    font-family: 'Philosopher', serif;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.focus-rera-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    align-items: center;
    text-align: center;
}

.rera-number,
.rera-website {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Philosopher', serif;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.rera-website {
    color: rgba(255, 255, 255, 0.7);
}

.focus-details {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.focus-details span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Philosopher', serif;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.focus-details i {
    font-size: 13px;
    color: var(--bg-color);
}

.focus-cta-group {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.focus-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Philosopher', serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: auto;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.focus-cta-primary {
    background: var(--bg-color);
    color: var(--primary-color);
    font-size: 15px;
    text-transform: uppercase;
}

.focus-cta-primary span {
    display: none;
}

.focus-cta-primary small {
    display: none;
}

.focus-cta-secondary {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    color: var(--bg-color);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    font-size: 14px;
    text-transform: uppercase;
    gap: 10px;
}

.focus-cta-secondary span {
    /* Color removed - inherits from parent */
}

.focus-cta-secondary i {
    font-size: 14px;
    color: var(--bg-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.focus-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.focus-cta-primary:hover {
    background: var(--bg-card);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.focus-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.focus-cta-secondary:hover i {
    transform: translateX(5px);
}

/* Focus Banner Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-container {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: var(--bg-color);
    z-index: 10;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-header-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
}

.modal-subtitle {
    font-size: 13px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-color);
    flex-shrink: 0;
}

.modal-close:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
    transform: rotate(90deg);
}

.modal-close i {
    font-size: 14px;
}

.modal-body {
    padding: var(--spacing-lg);
}

.modal-lead-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.modal-lead-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.modal-lead-form .form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.modal-lead-form .form-group label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.modal-lead-form .required {
    color: var(--accent-color);
}

.modal-lead-form .form-group input,
.modal-lead-form .form-group select,
.modal-lead-form .form-group textarea {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    width: 100%;
}

.modal-lead-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-lead-form .form-group input:focus,
.modal-lead-form .form-group select:focus,
.modal-lead-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.modal-lead-form .checkbox-group {
    margin-top: var(--spacing-xs);
}

.modal-lead-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
    color: var(--text-color);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.5;
}

.modal-lead-form .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--accent-color);
    flex-shrink: 0;
}

.modal-lead-form .btn-full {
    width: 100%;
    margin-top: var(--spacing-sm);
}

@media (max-width: 768px) {
    .modal-container {
        max-width: 100%;
        margin: var(--spacing-md);
    }

    .modal-header {
        padding: var(--spacing-md);
    }

    .modal-body {
        padding: var(--spacing-md);
    }

    .modal-lead-form .form-row {
        grid-template-columns: 1fr;
    }
}

.hero {
    position: relative;
    padding: var(--spacing-xl) 0 calc(var(--spacing-xl) + 40px);
    background: var(--dark-gradient);
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(220, 38, 38, 0.15) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(220, 38, 38, 0.1);
    border: var(--luxury-border);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 13px;
}

.hero-text h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--bg-color);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-stats-mini {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-mini .stat-number {
    font-size: 24px;
    font-weight: 600;
    color: var(--bg-color);
    font-family: 'Playfair Display', serif;
}

.stat-mini .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Lead Form Card */
.hero-lead-form-card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.hero-lead-form-card::before {
    display: none;
}

.lead-form-header {
    text-align: center;
    margin-bottom: 20px;
}

.lead-form-header h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.lead-form-header p {
    color: var(--text-light);
    font-size: 12px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
    background: var(--bg-color);
}

.btn-luxury {
    background: var(--luxury-gradient);
    color: var(--bg-color);
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: var(--spacing-xs);
    box-shadow: var(--card-shadow);
}

.btn-luxury:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: var(--card-shadow-hover);
}

.btn-luxury i {
    transition: transform 0.3s;
}

.btn-luxury:hover i {
    transform: translateX(4px);
}

.form-privacy {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-privacy i {
    color: var(--text-color);
    font-size: 12px;
}

.trust-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.trust-badge i {
    color: var(--text-color);
    font-size: 12px;
}

/* Stats & Search Merged Section - 99acres Style */
.stats-search {
    padding: 0 0 var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.02) 0%, rgba(185, 28, 28, 0.01) 100%);
    position: relative;
    overflow: visible;
}

.stats-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(185, 28, 28, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Property Search Overlay - 99acres Style */
.property-search-overlay {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    margin-bottom: var(--spacing-lg);
    overflow: visible;
}

.search-bar-wrapper {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow-hover);
    border: 1px solid var(--border-color);
    padding: var(--spacing-lg);
    position: relative;
    overflow: visible;
}

.search-bar-wrapper::before {
    display: none;
}

.search-bar-main {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.search-location {
    flex: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 7px 14px;
    transition: all 0.2s ease;
    position: relative;
    overflow: visible;
}

.search-location:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
    background: var(--bg-color);
}

.location-icon {
    width: auto;
    height: auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.location-icon i {
    font-size: 14px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-location:focus-within .location-icon {
    background: transparent;
    transform: scale(1.05);
}

.location-input-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.location-input-wrapper label {
    font-size: 8px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-input {
    border: none;
    background: transparent;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    outline: none;
    padding: 0;
    font-weight: 500;
    width: 100%;
    line-height: 1.5;
}

.location-input::placeholder {
    color: var(--gray-text);
    font-weight: 400;
}

.search-filters-inline {
    flex: 1;
    display: flex;
    gap: 8px;
}

.filter-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--bg-color);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: var(--radius-lg);
    padding: 8px 12px;
    transition: all 0.2s ease;
    position: relative;
    min-width: 0;
    overflow: visible;
    z-index: 1;
}

.filter-item:hover {
    border-color: rgba(220, 38, 38, 0.5);
    background: var(--bg-color);
}

.filter-item:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.filter-item label {
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.filter-item::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 14px;
    bottom: 10px;
    color: #6b7280;
    font-size: 11px;
    pointer-events: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

.filter-item:has(.filter-dropdown[style*="display"])::after,
.filter-item:has(.filter-dropdown:not([style*="display: none"]))::after {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.filter-select-display {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    font-weight: 500;
    line-height: 1.4;
    user-select: none;
    min-height: 20px;
}

.filter-select-inline {
    border: none;
    background: transparent;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-weight: 500;
    padding: 0;
    padding-right: 20px;
    width: 100%;
    line-height: 1.5;
}

.location-dropdown,
.filter-dropdown {
    scrollbar-width: thin;
    scrollbar-color: #e5e7eb #ffffff;
    min-width: 100%;
    z-index: 9999;
}

.location-dropdown::-webkit-scrollbar,
.filter-dropdown::-webkit-scrollbar {
    width: 6px;
}

.location-dropdown::-webkit-scrollbar-track,
.filter-dropdown::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 8px;
}

.location-dropdown::-webkit-scrollbar-thumb,
.filter-dropdown::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 8px;
}

.location-dropdown::-webkit-scrollbar-thumb:hover,
.filter-dropdown::-webkit-scrollbar-thumb:hover {
    background: #d1d5db;
}

.filter-select-inline option {
    background: #ffffff;
    color: #1f2937;
    padding: 12px 16px;
    font-size: 14px;
}

.filter-select-inline option:hover {
    background: #f9fafb;
}

.filter-select-inline option:checked {
    background: #dc2626;
    color: #ffffff;
}

.search-btn-primary {
    padding: 10px 28px;
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: var(--card-shadow);
    white-space: nowrap;
    min-width: 120px;
    height: auto;
}

.search-btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: var(--card-shadow-hover);
}

.search-btn-primary:active {
    transform: translateY(0);
}

.search-btn-primary i {
    font-size: 12px;
}

.quick-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.quick-filter-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 4px;
}

.quick-filter-btn {
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.quick-filter-btn:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

/* Stats Section (Inside Search Card) */
.search-bar-wrapper .stats-modern-overlap {
    background: transparent;
    border-radius: 0;
    padding: var(--spacing-lg) 0 0;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-md);
}

.search-bar-wrapper .stats-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.search-bar-wrapper .stats-header h2 {
    font-size: 16px;
    margin-bottom: 4px;
}

.search-bar-wrapper .stats-header p {
    font-size: 12px;
}

.search-bar-wrapper .stats-grid-modern {
    gap: var(--spacing-md);
}

.search-bar-wrapper .stat-modern {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--bg-card);
}

.stats-modern-overlap {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg);
    box-shadow: none;
    border: none;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.stats-modern-overlap::before {
    display: none;
}

.stats-header {
    text-align: center;
    margin-bottom: 32px;
}

.stats-header h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stats-header p {
    font-size: 12px;
    color: var(--text-light);
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-modern {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-color);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.stat-modern::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--luxury-gradient);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.stat-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(220, 38, 38, 0.2);
}

.stat-modern:hover::after {
    transform: scaleY(1);
}

.stat-icon {
    width: auto;
    height: auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.stat-icon i {
    font-size: 16px;
    color: var(--accent-color);
}

.stat-modern:hover .stat-icon {
    background: transparent;
    transform: scale(1.1) rotate(5deg);
}

.stat-content {
    flex: 1;
}

.stat-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.stat-content p {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Property Categories Section */
.property-categories {
    padding: var(--spacing-xl) 0;
    background: var(--bg-card);
}

.property-categories .section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--bg-color);
    padding: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Images for Each Category */
.category-residential {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%),
                      url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?w=800&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-commercial {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%),
                      url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=800&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-land {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%),
                      url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=800&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-multifamily {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%),
                      url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=800&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    transition: all 0.2s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(180deg, rgba(220, 38, 38, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.category-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-lg);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(220, 38, 38, 0.3);
}

.category-card:hover::before {
    display: none;
}

.category-icon {
    width: auto;
    height: auto;
    margin: 0 auto var(--spacing-md);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.category-icon i {
    font-size: 24px;
    color: var(--bg-color);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.category-card:hover .category-icon {
    background: transparent;
    transform: translateY(-2px) scale(1.1);
}

.category-card:hover .category-icon i {
    color: var(--accent-color);
    text-shadow: 0 2px 12px rgba(220, 38, 38, 0.5);
}

.category-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--bg-color);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.category-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.category-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--bg-color);
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-color);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Popular Locations Section */
.popular-locations {
    padding: var(--spacing-xl) 0;
    background: var(--bg-color);
}

.popular-locations .section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 24px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.location-card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    position: relative;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--luxury-gradient);
    transform: scaleX(0);
    transition: transform 0.3s;
    z-index: 1;
}

.location-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(220, 38, 38, 0.2);
}

.location-card:hover::before {
    transform: scaleX(1);
}

.location-image {
    height: 140px;
    position: relative;
}

.location-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-color);
    color: var(--bg-color);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.location-content {
    padding: var(--spacing-md);
}

.location-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.location-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.location-stats span {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.location-stats i {
    color: var(--accent-color);
    font-size: 12px;
}

.location-desc {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

/* Market Trends Section */
.market-trends {
    padding: var(--spacing-xl) 0;
    background: var(--bg-card);
}

.market-trends .section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.trends-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.trends-card {
    background: var(--bg-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.trends-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(220, 38, 38, 0.2);
}

.trend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.trend-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.trend-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.trend-badge.positive {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.trend-desc {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.trend-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
    margin-bottom: 12px;
}

.chart-bar {
    flex: 1;
    background: var(--luxury-gradient);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    transition: all 0.3s;
}

.trends-card:hover .chart-bar {
    opacity: 0.8;
}

.trend-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-light);
}

.trend-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trend-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
}

.activity-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.activity-item i {
    width: auto;
    height: auto;
    background: transparent;
    color: var(--accent-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.activity-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    font-family: 'Playfair Display', serif;
}

.activity-label {
    font-size: 12px;
    color: var(--text-light);
    display: block;
}

/* Investment Calculator Section */
.investment-calculator {
    padding: var(--spacing-xl) 0;
    background: var(--bg-color);
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.calculator-text h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.calculator-text p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.calculator-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-color);
}

.calc-feature i {
    color: var(--accent-color);
    font-size: 16px;
}

.calculator-card {
    background: var(--bg-color);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.calculator-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
}

.calc-group input[type="number"] {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    transition: all 0.2s ease;
}

.calc-group input[type="number"]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.calc-slider {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calc-slider input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.calc-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
}

.calc-slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    border: none;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-light);
}

.calc-results {
    background: var(--bg-color);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.result-item:last-child {
    border-bottom: none;
}

.result-item.highlight {
    background: rgba(220, 38, 38, 0.05);
    margin: 0 -20px -20px;
    padding: 16px 20px;
    border-radius: 0 0 12px 12px;
    border-bottom: none;
    border-top: 2px solid var(--accent-color);
}

.result-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.result-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.result-item.highlight .result-value {
    font-size: 16px;
}

/* Recent Searches Section */
.recent-searches {
    padding: var(--spacing-xl) 0;
    background: var(--bg-card);
}

.recent-searches .section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.searches-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.search-tag {
    padding: 10px 20px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.search-tag:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

/* Area Guides Section */
.area-guides {
    padding: var(--spacing-xl) 0;
    background: var(--bg-color);
}

.area-guides .section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.guide-card {
    background: var(--bg-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    display: none;
}

.guide-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(220, 38, 38, 0.2);
}

.guide-card:hover::before {
    display: none;
}

.guide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.guide-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.guide-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.guide-rating i {
    color: #fbbf24;
    font-size: 12px;
}

.guide-rating span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
    margin-left: 4px;
}

.guide-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.guide-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
}

.guide-stat i {
    color: var(--accent-color);
    font-size: 12px;
}

.guide-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.guide-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s;
}

.guide-link:hover {
    gap: 10px;
    color: var(--accent-secondary);
}

.guide-link i {
    font-size: 12px;
}

/* Discover Value Section */
.discover-value {
    padding: var(--spacing-xl) 0;
    background: var(--bg-color);
    position: relative;
}

.discover-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.discover-text h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
    line-height: 1.3;
}

.discover-text p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.discover-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.discover-card {
    background: transparent;
    padding: 20px 16px;
    border-radius: 0;
    box-shadow: none;
    border: none;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.discover-card::before {
    display: none;
}

.discover-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(220, 38, 38, 0.2);
}

.discover-card:hover::before {
    display: none;
}

.card-icon {
    width: auto;
    height: auto;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: all 0.3s;
}

.discover-card:hover .card-icon {
    background: transparent;
    transform: scale(1.05);
}

.card-icon i {
    font-size: 16px;
    color: var(--accent-color);
    transition: color 0.3s;
}

.discover-card:hover .card-icon i {
    color: var(--accent-color);
}

.discover-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

/* Invest Smarter Section */
.invest-smarter {
    padding: var(--spacing-xl) 0;
    background: var(--bg-card);
    position: relative;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 28px;
    color: var(--primary-color);
    line-height: 1.3;
}

/* Invest Smarter Section - Modern Redesign */
.invest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.invest-card {
    background: var(--bg-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.invest-card::before {
    display: none;
}

.invest-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(220, 38, 38, 0.2);
}

.invest-card:hover::before {
    display: none;
}

.invest-icon {
    width: auto;
    height: auto;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
}

.invest-card:hover .invest-icon {
    background: transparent;
    transform: translateY(-2px);
}

.invest-icon i {
    font-size: 16px;
    color: var(--accent-color);
    transition: color 0.3s;
}

.invest-card:hover .invest-icon i {
    color: var(--accent-color);
}

.invest-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

/* Connect Section */
.connect {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: var(--bg-color);
    overflow: hidden;
}

.connect-lead-card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.connect-lead-card::before {
    display: none;
}

.connect-text {
    text-align: center;
    margin-bottom: 20px;
}

.connect-text h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
    line-height: 1.2;
}

.connect-text p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

.connect-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-full {
    width: 100%;
}

.connect-form .form-group input,
.connect-form .form-group select {
    width: 100%;
    padding: 8px 12px;
}

.connect-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    opacity: 0.3;
    z-index: 0;
    overflow: hidden;
}

.connect-bg::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-image: 
        /* Building 1 - Left */
        linear-gradient(to top, rgba(200, 200, 200, 0.15) 0%, rgba(200, 200, 200, 0.15) 35%, transparent 35%),
        linear-gradient(to right, rgba(200, 200, 200, 0.15) 0%, rgba(200, 200, 200, 0.15) 8%, transparent 8%),
        /* Building 2 */
        linear-gradient(to top, rgba(200, 200, 200, 0.12) 0%, rgba(200, 200, 200, 0.12) 50%, transparent 50%),
        linear-gradient(to right, rgba(200, 200, 200, 0.12) 12%, rgba(200, 200, 200, 0.12) 20%, transparent 20%),
        /* Building 3 */
        linear-gradient(to top, rgba(200, 200, 200, 0.18) 0%, rgba(200, 200, 200, 0.18) 45%, transparent 45%),
        linear-gradient(to right, rgba(200, 200, 200, 0.18) 22%, rgba(200, 200, 200, 0.18) 30%, transparent 30%),
        /* Building 4 */
        linear-gradient(to top, rgba(200, 200, 200, 0.14) 0%, rgba(200, 200, 200, 0.14) 55%, transparent 55%),
        linear-gradient(to right, rgba(200, 200, 200, 0.14) 35%, rgba(200, 200, 200, 0.14) 42%, transparent 42%),
        /* Building 5 */
        linear-gradient(to top, rgba(200, 200, 200, 0.16) 0%, rgba(200, 200, 200, 0.16) 40%, transparent 40%),
        linear-gradient(to right, rgba(200, 200, 200, 0.16) 48%, rgba(200, 200, 200, 0.16) 55%, transparent 55%),
        /* Building 6 */
        linear-gradient(to top, rgba(200, 200, 200, 0.13) 0%, rgba(200, 200, 200, 0.13) 48%, transparent 48%),
        linear-gradient(to right, rgba(200, 200, 200, 0.13) 60%, rgba(200, 200, 200, 0.13) 68%, transparent 68%),
        /* Building 7 */
        linear-gradient(to top, rgba(200, 200, 200, 0.17) 0%, rgba(200, 200, 200, 0.17) 52%, transparent 52%),
        linear-gradient(to right, rgba(200, 200, 200, 0.17) 72%, rgba(200, 200, 200, 0.17) 80%, transparent 80%),
        /* Building 8 - Right */
        linear-gradient(to top, rgba(200, 200, 200, 0.15) 0%, rgba(200, 200, 200, 0.15) 38%, transparent 38%),
        linear-gradient(to right, rgba(200, 200, 200, 0.15) 85%, rgba(200, 200, 200, 0.15) 95%, transparent 95%);
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}

.connect-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Window details on buildings */
        radial-gradient(circle at 4% 70%, rgba(180, 180, 180, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 16% 60%, rgba(180, 180, 180, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 26% 65%, rgba(180, 180, 180, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 38% 55%, rgba(180, 180, 180, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 51% 70%, rgba(180, 180, 180, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 64% 60%, rgba(180, 180, 180, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 76% 65%, rgba(180, 180, 180, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 90% 70%, rgba(180, 180, 180, 0.1) 1px, transparent 1px);
    background-size: 100% 100%;
    opacity: 0.3;
}

.connect-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.connect-text h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
    line-height: 1.2;
}

.connect-text p {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Properties Section */
.properties {
    padding: var(--spacing-xl) 0;
    background: var(--bg-color);
}

.property-card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    position: relative;
}

.property-card::before {
    display: none;
}

.property-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(220, 38, 38, 0.2);
}

.property-card:hover::before {
    display: none;
}

/* Property Image Container - Clean Structure */
.property-image {
    height: 180px;
    position: relative !important;
    overflow: hidden !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    display: block !important;
    width: 100% !important;
}

/* Next.js Image wrapper - ensure it doesn't block badge */
.property-image > span {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    line-height: 0 !important;
}

.property-image > span > img {
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.property-image img,
.property-image .property-img {
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* Property Badge - Positioned absolutely on image */
.property-image .property-badge {
    position: absolute !important;
    bottom: 12px !important;
    right: 12px !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    z-index: 9999 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    color: #ffffff !important;
    white-space: nowrap !important;
    pointer-events: none !important;
    display: block !important;
    margin: 0 !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
}

/* New Launch Badge - Red */
.property-badge.badge-new-launch {
    background: #DC2626;
    color: #ffffff;
}

/* Available Badge - Green */
.property-badge.badge-available {
    background: #10b981;
    color: #ffffff;
}

/* Pre Launch Badge - Orange */
.property-badge.badge-pre-launch {
    background: #f59e0b;
    color: #ffffff;
}

/* Ready to Move Badge - Blue */
.property-badge.badge-ready-to-move {
    background: #3b82f6;
    color: #ffffff;
}

/* Hover effect for badges */
.property-card:hover .property-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.property-image::before,
.property-image::after {
    display: none !important;
    background: none !important;
    background-image: none !important;
}

.property-image img,
.property-image .property-img,
.property-img,
.property-image > * {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

.property-card .property-image {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

.property-content {
    padding: 20px;
}

.property-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

/* ============================================
   INLINE STYLES MOVED TO EXTERNAL CSS
   ============================================ */

/* Loading State */
.loading-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-content {
    text-align: center;
}

.loading-text {
    font-size: 18px;
    color: #666;
}

/* Search Bar Styles */
.search-bar-main-row {
    display: flex;
    width: 100%;
    gap: 12px;
    align-items: center;
}

.location-input-wrapper {
    position: relative;
}

.location-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    margin-top: 4px;
    width: 100%;
}

.location-dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s;
    font-size: 14px;
    color: #1f2937;
}

.location-dropdown-item:hover {
    background: #f9fafb;
}

.location-icon-inline {
    margin-right: 8px;
    color: #dc2626;
}

.location-dropdown-empty {
    padding: 12px 16px;
    color: #6b7280;
    font-size: 14px;
}

/* Filter Item Styles */
.filter-item {
    position: relative;
}

.filter-select-display {
    cursor: pointer;
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
    padding: 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    margin-top: 4px;
    min-width: 100%;
    width: 100%;
}

.filter-dropdown-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s;
    font-size: 14px;
    white-space: nowrap;
    overflow: visible;
}

.filter-dropdown-item:hover {
    background: #f9fafb;
}

.filter-dropdown-item.active {
    color: #dc2626;
    font-weight: 600;
    background: #fef2f2;
}

/* Quick Filters */
.quick-filters-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.quick-filter-label {
    flex-shrink: 0;
}

.quick-filter-scroll-btn {
    flex-shrink: 0;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quick-filter-scroll-btn i {
    font-size: 12px;
}

.quick-filters-scroll {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.quick-filters-scroll::-webkit-scrollbar {
    display: none;
}

.quick-filters-container {
    -webkit-overflow-scrolling: touch;
}

.quick-filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    cursor: pointer;
}

/* Property Categories Section */
.property-categories-subtitle {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin-top: 12px;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.property-tabs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0;
}

.property-tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: -2px;
}

.property-tab-btn.active {
    border-bottom-color: #dc2626;
    color: #dc2626;
    font-weight: 600;
}

.property-tab-btn:not(.active) {
    color: #6b7280;
    font-weight: 500;
}

/* Properties Carousel */
.properties-carousel {
    position: relative;
    margin: 0 50px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.carousel-btn.carousel-prev {
    left: -50px;
}

.carousel-btn.carousel-next {
    right: -50px;
}

.properties-grid {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.properties-grid::-webkit-scrollbar {
    display: none;
}

/* Property Card */
.property-card {
    min-width: 300px;
    flex-shrink: 0;
}

.property-card-min-280 {
    min-width: 280px;
    flex-shrink: 0;
}

/* Empty State */
.empty-state {
    min-width: 100%;
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.empty-state-title {
    font-size: 18px;
    font-weight: 500;
}

.empty-state-subtitle {
    font-size: 14px;
    margin-top: 8px;
}

/* RERA Badge */
.rera-approved {
    color: #10b981;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.property-price .price {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.property-price .return {
    font-size: 12px;
    font-weight: 700;
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
}

/* Properties Lead Form Section */
.properties-lead {
    padding: var(--spacing-xl) 0;
    background: var(--bg-card);
}

.properties-lead-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
}

.properties-lead-text h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.properties-lead-text p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.lead-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lead-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-color);
    font-weight: 500;
}

.lead-benefit i {
    color: var(--accent-color);
    font-size: 16px;
}

.properties-lead-form-card {
    background: var(--bg-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--card-shadow-hover);
    border: var(--luxury-border);
    position: relative;
    overflow: hidden;
}

.properties-lead-form-card::before {
    display: none;
}

.properties-lead-form-card h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-align: center;
}

.properties-carousel {
    position: relative;
    margin-bottom: 30px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 6px 0;
}

.property-card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    min-width: 280px;
}

.property-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(220, 38, 38, 0.2);
}


.tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    background: var(--accent-color);
    color: var(--bg-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-new {
    background: var(--accent-color);
}

.tag-sale {
    background: var(--accent-color);
}

.property-content {
    padding: 20px;
}

.property-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.property-location {
    color: var(--gray-text);
    font-size: 12px;
    margin-bottom: 12px;
}

.property-details {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--gray-text);
}

.property-details i {
    font-size: 12px;
}

.property-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.property-price .price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.property-price .return {
    font-size: 12px;
    font-weight: 600;
    color: #28a745;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    border-color: var(--primary-color);
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

.properties-footer {
    text-align: center;
}

.show-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
}

.show-all:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* How It Works Section */
.how-it-works {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.step-card {
    background: var(--bg-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    min-width: 140px;
    transition: all 0.2s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(220, 38, 38, 0.2);
}

.step-icon {
    width: auto;
    height: auto;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: all 0.3s;
}

.step-card:hover .step-icon {
    background: transparent;
}

.step-icon i {
    font-size: 16px;
    color: var(--accent-color);
    transition: color 0.3s;
}

.step-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: var(--border-color);
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--border-color);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--bg-color);
}

.testimonials-carousel {
    position: relative;
}

.testimonials-grid {
    display: flex;
    flex-direction: row;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: var(--bg-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    min-width: 260px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    display: none;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-avatar {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: none;
    box-shadow: none;
    transition: all 0.3s;
}

.testimonial-avatar i {
    font-size: 16px;
    color: var(--accent-color);
}

.testimonial-location {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

.testimonial-text {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
    position: relative;
    padding-left: 18px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -6px;
    font-size: 36px;
    color: var(--text-color);
    font-family: 'Playfair Display', serif;
    opacity: 0.2;
}

.testimonial-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

/* FAQ Section */
.faq {
    padding: var(--spacing-xl) 0;
    background: var(--bg-card);
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.faq-text h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.faq-text p {
    font-size: 12px;
    color: var(--gray-text);
    margin-bottom: 16px;
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: all 0.2s ease;
}

.faq-item:hover {
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(220, 38, 38, 0.2);
}

.faq-question {
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question span {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.faq-question i {
    color: var(--text-color);
    font-size: 16px;
    transition: transform 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out, padding 0.2s ease-out;
    padding: 0 var(--spacing-md);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer p {
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 12px;
}

/* Build Wealth Section */
.build-wealth {
    padding: var(--spacing-xl) 0;
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
}

.build-wealth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.wealth-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.wealth-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--text-color);
    border: var(--luxury-border);
    border-color: rgba(220, 38, 38, 0.3);
    border-radius: 50px;
    color: var(--bg-color);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.wealth-text h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--bg-color);
    line-height: 1.3;
}

.wealth-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    line-height: 1.6;
}

.wealth-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.wealth-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wealth-stat-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--bg-color);
    font-family: 'Playfair Display', serif;
}

.wealth-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wealth-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-large {
    padding: 14px 32px;
    font-size: 12px;
}

.wealth-guarantee {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.wealth-guarantee i {
    color: var(--accent-color);
    font-size: 12px;
}

.wealth-image {
    height: 300px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.wealth-img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    box-shadow: var(--card-shadow-hover);
}

.wealth-overlay-card {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: var(--luxury-border);
}

.overlay-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.overlay-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Playfair Display', serif;
}

.overlay-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Newsletter Section */
.newsletter {
    padding: var(--spacing-xl) 0;
    background: var(--dark-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.newsletter .container {
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--bg-color);
    line-height: 1.3;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 8px;
    border-radius: 16px;
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.newsletter-input {
    flex: 1;
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 12px;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}

.newsletter-input:focus {
    outline: none;
    background: var(--bg-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.newsletter .btn-primary {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 40px 0 16px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 20px;
    margin-bottom: 24px;
    align-items: start;
    grid-auto-flow: row;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 16px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 12px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--bg-color);
    white-space: nowrap;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 12px;
}

.footer-col ul li a:hover {
    color: var(--bg-color);
}

.footer-col ul li i {
    margin-right: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-color);
    text-decoration: none;
    transition: background 0.3s;
    font-size: 16px;
}

.social-icons a:hover {
    background: rgba(255,255,255,0.2);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--bg-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-content,
    .discover-content,
    .wealth-content,
    .faq-content,
    .properties-lead-content,
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .search-bar-main {
        flex-wrap: wrap;
    }

    .search-location {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .search-filters-inline {
        flex: 1 1 100%;
        flex-wrap: wrap;
    }

    .filter-item {
        flex: 1 1 calc(33.333% - 8px);
        min-width: 150px;
    }

    .search-btn-primary {
        flex: 1 1 100%;
        width: 100%;
    }

    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid,
    .locations-grid,
    .trends-content,
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .invest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

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

    .stat-mini .stat-number {
        font-size: 22px;
    }

    .section-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .focus-banner {
        padding: 0;
    }


    .focus-content {
        padding: var(--spacing-lg) 0;
    }

    .focus-content h3 {
        font-size: 32px;
    }

    .focus-brand-subtitle {
        font-size: 13px;
    }

    .focus-cta-group {
        flex-direction: column;
        gap: 10px;
        bottom: var(--spacing-md);
        left: 50%;
        transform: translateX(-50%);
    }

    .focus-cta {
        padding: 12px 22px;
        font-size: 13px;
    }

    .focus-cta-primary {
        font-size: 13px;
    }

    .focus-cta-secondary {
        font-size: 12px;
        padding: 12px 20px;
    }

    .container {
        padding: 0 16px;
    }

    .header {
        padding: 12px 0;
    }

    .logo {
        font-size: 16px;
    }

    .logo i {
        font-size: 16px;
    }

    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--text-color);
        cursor: pointer;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 16px;
        gap: 12px;
        z-index: 999;
        margin-top: 0;
    }

    .mobile-menu.hidden {
        display: none;
    }

    .mobile-menu a {
        padding: 12px;
        border-bottom: 1px solid var(--border-color);
        text-decoration: none;
        color: var(--text-color);
        display: block;
    }

    .mobile-menu a.active {
        color: var(--accent-color);
        font-weight: 600;
    }

    .header-buttons {
        display: none;
    }

    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .stat-mini .stat-number {
        font-size: 20px;
    }

    .stat-mini .stat-label {
        font-size: 12px;
    }

    .hero-stats-mini {
        gap: 20px;
    }

    .stat-mini .stat-number {
        font-size: 16px;
    }

    .section-title {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .stats-search {
        padding: 0 0 60px 0;
    }

    .property-search-overlay {
        margin-top: -60px;
        margin-bottom: 30px;
    }

    .search-bar-wrapper {
        padding: 20px;
    }

    .search-bar-main {
        flex-direction: column;
        gap: 16px;
    }

    .search-location {
        width: 100%;
    }

    .search-filters-inline {
        width: 100%;
        flex-direction: column;
    }

    .filter-item {
        width: 100%;
    }

    .search-btn-primary {
        width: 100%;
        height: 56px;
    }

    .stats-modern-overlap {
        padding: 50px 24px 32px;
    }

    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-modern {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }

    .stat-icon {
        margin-bottom: 12px;
    }

    .stat-content h3 {
        font-size: 16px;
    }

    .discover-value,
    .invest-smarter,
    .properties,
    .properties-lead,
    .connect,
    .build-wealth,
    .testimonials,
    .faq,
    .newsletter,
    .property-categories,
    .popular-locations,
    .market-trends,
    .investment-calculator,
    .recent-searches,
    .area-guides {
        padding: 32px 0;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .category-card {
        min-height: 240px;
    }

    .locations-grid,
    .trends-content,
    .guides-grid {
        grid-template-columns: 1fr;
    }

    .calculator-card {
        padding: 24px 20px;
    }

    .invest-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .discover-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .steps {
        flex-direction: column;
        gap: 12px;
    }

    .step-card {
        min-width: 100%;
    }

    .step-connector {
        width: 2px;
        height: 24px;
    }

    .step-connector::after {
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 6px solid var(--border-color);
        border-bottom: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer {
        padding: 32px 0 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-lead-form-card,
    .properties-lead-form-card,
    .connect-lead-card {
        padding: 24px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .focus-banner-image {
        height: 280px;
    }

    .focus-content {
        padding: 24px 0;
        max-width: 100%;
    }

    .focus-content h3 {
        font-size: 24px;
    }

    .focus-brand-subtitle {
        font-size: 11px;
    }

    .focus-rera-info {
        margin-bottom: 12px;
    }

    .rera-number,
    .rera-website {
        font-size: 10px;
    }

    .focus-details {
        flex-direction: column;
        gap: 10px;
    }

    .focus-details span {
        font-size: 12px;
    }

    .focus-cta-group {
        flex-direction: column;
        gap: 8px;
        bottom: var(--spacing-md);
        left: 50%;
        transform: translateX(-50%);
    }

    .focus-cta {
        min-width: 100px;
        padding: 8px 14px;
    }

    .focus-cta-secondary span {
        font-size: 11px;
    }

    .focus-badge {
        top: 16px;
        left: 50%;
        transform: translateX(-50%);
        padding: 6px 12px;
        font-size: 11px;
    }

    .highlight-badge {
        padding: 8px 16px;
        font-size: 12px;
    }

    .focus-location {
        font-size: 12px;
    }

    .focus-details {
        flex-direction: column;
        gap: 8px;
    }

    .focus-details span {
        font-size: 11px;
    }

    .focus-cta {
        bottom: 16px;
        right: 16px;
        padding: 6px 12px;
        font-size: 11px;
    }

    .focus-badge {
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        padding: 4px 10px;
        font-size: 11px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

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

    .stat-mini .stat-number {
        font-size: 18px;
    }

    .stat-mini .stat-label {
        font-size: 11px;
    }

    .section-title {
        font-size: 16px;
    }

    .category-card {
        min-height: 220px;
    }

    .category-content {
        padding: var(--spacing-md);
    }

    .category-icon i {
        font-size: 20px;
    }

    .properties-grid,
    .testimonials-grid,
    .categories-grid,
    .locations-grid,
    .trends-content,
    .guides-grid {
        grid-template-columns: 1fr;
    }

    .property-search-overlay {
        margin-top: -40px;
    }

    .search-bar-wrapper {
        padding: 16px;
        border-radius: 16px;
    }

    .search-location {
        padding: 12px 16px;
    }

    .location-icon {
        width: 40px;
        height: 40px;
    }

    .location-icon i {
        font-size: 16px;
    }

    .location-input {
        font-size: 12px;
    }

    .filter-item {
        padding: 10px 12px;
    }

    .search-btn-primary {
        height: 52px;
        padding: 14px 28px;
        font-size: 12px;
    }

    .quick-filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .quick-filter-label {
        margin-bottom: 4px;
    }

    .stats-modern-overlap {
        padding: 40px 16px 24px;
    }

    .stats-header h2 {
        font-size: 16px;
    }

    .stats-grid-modern {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-modern {
        padding: 16px;
    }

    .stat-content h3 {
        font-size: 16px;
    }

    .calculator-card {
        padding: 20px 16px;
    }

    .searches-grid {
        justify-content: flex-start;
    }

    .hero-stats-mini {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--bg-color);
    padding: 20px 28px;
    border-radius: 12px;
    box-shadow: var(--card-shadow-hover);
    border: var(--luxury-border);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification i {
    font-size: 16px;
    color: var(--accent-color);
}

.notification-success i {
    color: #28a745;
}

.notification span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}

/* Chart Bar Heights - Dynamic heights for market trends */
.chart-bar-height-60 {
    height: 60%;
}

.chart-bar-height-75 {
    height: 75%;
}

.chart-bar-height-85 {
    height: 85%;
}

.chart-bar-height-100 {
    height: 100%;
}