/* Ultra-Modern Real Estate Website - Premium Design */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a0a0a;
    --accent-color: #0066ff;
    --text-primary: #0a0a0a;
    --text-secondary: #525252;
    --text-light: #737373;
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --bg-lighter: #f5f5f5;
    --border-color: #e5e5e5;
    --border-light: #f0f0f0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.1);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-image:not([src]),
.logo-image[src=""] {
    display: none;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Logo hover effect */
.logo:hover .logo-image {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

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

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    padding: 12px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--bg-lighter);
    color: var(--primary-color);
    padding-left: 24px;
}

.dropdown-menu a::before {
    display: none;
}

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

.nav-buttons {
    display: flex;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Buttons - More Rounded */
.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border-color);
    color: var(--text-primary);
    box-shadow: none;
}

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

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    margin-top: 85px;
    padding: 140px 0 120px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 960px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 82px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -2.5px;
    color: var(--primary-color);
}

.hero-description {
    font-size: 21px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.65;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 19px;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
}

/* Featured Properties - Ultra Modern Cards */
.featured-properties {
    background: var(--bg-white);
}

.latest-properties {
    background: var(--bg-light);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
}

.property-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.property-image {
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.property-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}

.property-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
}

.property-type {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
}

.property-content {
    padding: 32px;
}

.property-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.6px;
    color: var(--primary-color);
}

.property-location {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-location::before {
    content: '📍';
    font-size: 14px;
}

.property-details {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.property-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.property-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.price-period {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Property Filters */
.property-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--bg-white);
    border: 1.5px solid var(--border-color);
    border-radius: 100px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Property Agent */
.property-agent {
    display: flex;
    align-items: center;
    gap: 10px;
}

.agent-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.agent-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 56px;
}

/* Benefits Section - Card Style */
.benefits {
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.benefit-card {
    text-align: left;
    padding: 56px 48px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.benefit-number {
    font-size: 72px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    opacity: 0.08;
    line-height: 1;
}

.benefit-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.7px;
}

.benefit-description {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 16px;
}

/* Cities Section - Larger Rounded Cards */
.cities {
    background: var(--bg-white);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
}

.city-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: var(--bg-white);
}

.city-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.city-image {
    height: 220px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
}

.city-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.2) 100%);
}

.city-content {
    padding: 28px;
    background: var(--bg-white);
}

.city-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.4px;
}

.city-count {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
}

/* Agents Section */
.agents {
    background: var(--bg-white);
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.agent-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.agent-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.agent-image {
    height: 280px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.agent-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%);
}

.agent-initials {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 800;
    color: white;
    z-index: 2;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.agent-content {
    padding: 36px;
}

.agent-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.6px;
    color: var(--primary-color);
}

.agent-title {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.agent-bio {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
    font-size: 15px;
}

.agent-stats {
    display: flex;
    justify-content: space-around;
    padding: 24px 0;
    margin-bottom: 24px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.agent-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

.agent-specialization {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.spec-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-light);
    color: var(--text-primary);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-full {
    width: 100%;
}

/* Land Development Section */
.land-development {
    background: var(--bg-white);
    padding: 120px 0;
}

.land-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    padding: 48px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
}

.land-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.land-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.8px;
    color: var(--primary-color);
}

.land-location {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 600;
}

.land-description {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 32px;
    font-size: 16px;
}

.land-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border-light);
}

.feature-icon {
    font-size: 18px;
}

.land-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-xl);
    min-height: 400px;
}

.land-placeholder {
    text-align: center;
    color: white;
}

.land-placeholder-text {
    font-size: 24px;
    font-weight: 600;
    opacity: 0.9;
}

.subsection-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.6px;
    color: var(--primary-color);
}

/* Plot Sizes */
.plot-sizes {
    margin-bottom: 80px;
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.size-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--border-light);
    transition: all 0.4s ease;
}

.size-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.size-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
    color: white;
}

.size-card.featured .size-type {
    color: rgba(255, 255, 255, 0.8);
}

.size-dimensions {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.size-card.featured .size-dimensions {
    color: white;
}

.size-area {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 600;
}

.size-card.featured .size-area {
    color: rgba(255, 255, 255, 0.8);
}

.size-type {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

/* Payment Plans */
.payment-plans {
    margin-bottom: 80px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.plan-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 2px solid var(--border-light);
    transition: all 0.4s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

.plan-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

.plan-details p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.plan-details ul {
    list-style: none;
    padding: 0;
}

.plan-details li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Land Pricing */
.land-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
}

.pricing-info h3,
.contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.pricing-info p,
.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.pricing-info ul,
.contact-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.pricing-info li,
.contact-info li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 15px;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.currency {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

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

.price-note {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Process Section */
.process {
    background: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 56px;
    margin-bottom: 56px;
}

.process-step {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.7px;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 17px;
    max-width: 440px;
    margin: 0 auto;
}

.process-cta {
    text-align: center;
}

/* Testimonials - Premium Cards */
.testimonials {
    background: var(--bg-white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 36px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 48px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    background: var(--bg-white);
    border-color: transparent;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 22px;
    margin-bottom: 24px;
    letter-spacing: 3px;
}

.testimonial-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.4px;
}

.testimonial-text {
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.75;
    font-size: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

/* Stats Section */
.stats {
    background: var(--primary-color);
    color: white;
    padding: 100px 0;
}

.stat-description {
    font-size: 15px;
    opacity: 0.8;
    margin-top: 12px;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 64px;
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.stat-label {
    font-size: 17px;
    opacity: 0.85;
    font-weight: 500;
}

/* Blog Section - Modern Cards */
.blog {
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.blog-image {
    height: 260px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    position: relative;
}

.blog-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.1) 100%);
}

.blog-content {
    padding: 36px;
}

.blog-category {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.blog-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.6px;
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.75;
    font-size: 16px;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 12px;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--bg-light);
    padding: 120px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.contact-description {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.contact-form-container {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    letter-spacing: 0.2px;
}

.form-group input,
.form-group textarea {
    padding: 14px 20px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    color: var(--text-primary);
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #dc2626;
    font-size: 14px;
    padding: 12px 16px;
    background: #fee2e2;
    border-radius: var(--radius-sm);
    display: none;
}

.form-error.show {
    display: block;
}

.form-success {
    color: #16a34a;
    font-size: 14px;
    padding: 12px 16px;
    background: #dcfce7;
    border-radius: var(--radius-sm);
    display: none;
}

.form-success.show {
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 0;
    background: var(--bg-white);
}

.cta {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 120px 48px;
    border-radius: var(--radius-xl);
    margin: 0 32px 120px;
}

.cta-content {
    max-width: 860px;
    margin: 0 auto;
}

.cta-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.cta-description {
    font-size: 19px;
    margin-bottom: 48px;
    opacity: 0.9;
    line-height: 1.65;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
    background: var(--bg-lighter);
    padding: 100px 0 48px;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 56px;
    margin-bottom: 56px;
}

.footer-column-main {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.newsletter-terms {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 12px;
    line-height: 1.6;
}

.newsletter-terms a {
    color: var(--text-secondary);
    text-decoration: underline;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.75;
    font-size: 15px;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 14px;
    font-size: 15px;
}

.footer-heading {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 15px;
}

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

.footer-newsletter-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.65;
    font-size: 15px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    padding: 14px 20px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.newsletter-input::placeholder {
    color: var(--text-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 24px;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 28px;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
    font-weight: 600;
}

.social-link:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 68px;
    }
    
    .section-title {
        font-size: 48px;
    }
}

@media (max-width: 1024px) {
    .footer-column-main {
        grid-column: span 2;
    }
}

/* Property Submission Section */
.property-submission-section {
    padding: 80px 0;
    background: white;
}

.submission-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.submission-info {
    position: sticky;
    top: 100px;
}

.submission-info h3 {
    margin-bottom: 30px;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

.submission-form-container {
    background: var(--light-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.property-submission-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.property-submission-form .form-row:has(.form-group:nth-child(3)) {
    grid-template-columns: 1fr 1fr 1fr;
}

.property-submission-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.property-submission-form .form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.property-submission-form .form-group input,
.property-submission-form .form-group textarea,
.property-submission-form .form-group select {
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.property-submission-form .form-group input:focus,
.property-submission-form .form-group textarea:focus,
.property-submission-form .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.property-submission-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .nav-buttons.active {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--border-light);
    }
    
    .nav-buttons.active .btn {
        width: 100%;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .footer-logo-image {
        height: 40px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 80px 24px 24px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0 0 24px 0;
        opacity: 0;
        transform: translateX(20px);
        animation: slideInRight 0.3s ease forwards;
    }
    
    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.6s; }
    .nav-menu li:nth-child(7) { animation-delay: 0.7s; }
    
    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-menu a {
        font-size: 18px;
        font-weight: 600;
        padding: 12px 0;
        color: var(--text-primary);
        border-bottom: 1px solid var(--border-light);
        width: 100%;
        text-align: left;
    }
    
    .nav-menu a:hover {
        color: var(--primary-color);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile menu overlay */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    /* Mobile Dropdown */
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin-left: 20px;
        margin-top: 12px;
    }
    
    .nav-dropdown .dropdown-menu a {
        padding: 8px 0;
        font-size: 14px;
        color: var(--text-secondary);
    }
    
    .nav-dropdown .dropdown-menu a:hover {
        background: none;
        color: var(--primary-color);
        padding-left: 0;
    }
    
    .property-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 48px;
        letter-spacing: -1.5px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 56px;
    }
    
    .properties-grid,
    .benefits-grid,
    .cities-grid,
    .agents-grid,
    .process-grid,
    .testimonials-slider,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .benefit-card,
    .testimonial-card {
        padding: 40px 32px;
    }
    
    .land-featured {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 32px;
    }
    
    .sizes-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .land-pricing {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form-container {
        padding: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta {
        margin: 0 24px;
        padding: 80px 32px;
    }
    
    .cta-title {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 40px;
        letter-spacing: -1px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .property-content,
    .blog-content {
        padding: 28px;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations handled by JS */
.property-card,
.benefit-card,
.city-card,
.agent-card,
.process-step,
.testimonial-card,
.blog-card {
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.property-card:nth-child(1) { animation-delay: 0.05s; }
.property-card:nth-child(2) { animation-delay: 0.1s; }
.property-card:nth-child(3) { animation-delay: 0.15s; }
.property-card:nth-child(4) { animation-delay: 0.2s; }

/* Property Submission Section Mobile */
@media (max-width: 768px) {
    .submission-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .submission-info {
        position: static;
    }
    
    .property-submission-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .property-submission-form .form-row:has(.form-group:nth-child(3)) {
        grid-template-columns: 1fr;
    }
}

/* Become an Agent Section */
.become-agent-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.agent-hero {
    text-align: center;
    margin-bottom: 60px;
}

.agent-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

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

.agent-benefits h3 {
    margin-bottom: 30px;
    color: var(--text-dark);
    font-size: 1.8rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.benefit-card h4 {
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

.coming-soon-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.coming-soon-header {
    text-align: center;
    margin-bottom: 40px;
}

.coming-soon-header h3 {
    margin-bottom: 16px;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.coming-soon-header p {
    color: var(--text-light);
    line-height: 1.6;
}

.subscription-form-container {
    margin-bottom: 40px;
}

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

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

.form-header h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.agent-notification-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.agent-notification-form .form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.agent-notification-form .form-group input,
.agent-notification-form .form-group select {
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.agent-notification-form .form-group input:focus,
.agent-notification-form .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.btn-loading {
    display: none;
}

.btn[disabled] .btn-text {
    display: none;
}

.btn[disabled] .btn-loading {
    display: inline;
}

.launch-timeline {
    border-top: 1px solid var(--border-light);
    padding-top: 30px;
}

.launch-timeline h4 {
    margin-bottom: 24px;
    color: var(--text-dark);
    text-align: center;
}

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

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.timeline-marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-marker.completed {
    background: var(--primary);
    color: white;
}

.timeline-marker.current {
    background: #f59e0b;
    color: white;
    animation: pulse 2s infinite;
}

.timeline-marker.upcoming {
    background: var(--border);
    color: var(--text-light);
}

.timeline-content h5 {
    margin-bottom: 4px;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Become an Agent Section Mobile */
@media (max-width: 768px) {
    .agent-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        gap: 16px;
    }
    
    .timeline-item {
        gap: 12px;
    }
    
    .timeline-marker {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}


/* Property Modal */
.property-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.property-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.property-modal.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: white;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.2s ease;
}

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

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.modal-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    background: white;
    color: var(--text-primary);
}

.badge-status {
    background: var(--accent-color);
    color: white;
}

.modal-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.modal-location {
    font-size: 16px;
    color: var(--text-secondary);
}

.modal-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.modal-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.feature-item .icon {
    font-size: 24px;
}

.feature-item strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.feature-item span {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
}

.modal-description h3,
.modal-agent h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.modal-description p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.agent-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 24px;
}

.agent-info strong {
    display: block;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.agent-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.modal-actions {
    display: flex;
    gap: 12px;
}

.modal-actions .btn {
    flex: 1;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

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

.no-results p {
    color: var(--text-secondary);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-image {
        min-height: 300px;
    }
    
    .modal-image img {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    
    .modal-details {
        padding: 24px;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .modal-price {
        font-size: 28px;
    }
    
    .modal-features {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

