/* Base reset – design-system.css provides variables and base when loaded first */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: var(--font-sans, system-ui, 'Segoe UI', Arial, sans-serif);
    line-height: 1.6;
    color: var(--color-text, #333);
    overflow-x: hidden;
}

/* Site header & nav – base only; premium.css overrides for look and compact mobile */
.site-header a {
    text-decoration: none;
    border-radius: 6px;
}
.site-nav {
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    max-width: 1200px;
    margin: 0 auto;
}
.site-nav .nav-auth { margin-left: auto; }
.site-nav .nav-auth a { margin-left: 4px; }
@media (max-width: 768px) {
    .site-nav { gap: 8px; }
    .site-nav .nav-auth { margin-left: 0; width: 100%; }
    .listings-page { padding: var(--space-4) 12px var(--space-6); }
    .listings-page .container { padding-left: 12px; padding-right: 12px; }
    .listings-head { margin-bottom: var(--space-3); }
    .filter-bar { padding: 12px; margin-bottom: 12px; }
}

/* Page layout */
.page-main { min-height: 50vh; }
@media (max-width: 768px) {
  .page-main.container.g-section { padding: var(--space-6) 12px var(--space-10) !important; }
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-size: 1rem;
}
.btn { display: inline-block; padding: 12px 24px; border-radius: 8px; font-weight: 600; cursor: pointer; border: none; font-size: 1rem; text-decoration: none; }
.btn-primary { background: #0d9488; color: #fff; }
.btn-primary:hover { background: #0f766e; }
.btn-secondary { background: #e2e8f0; color: #334155; }
.btn-sm { padding: 8px 16px; font-size: 0.9rem; }
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.card { background: #fff; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); padding: 20px; }
.admin-bar { background: #1a202c; color: #fff; padding: 12px 20px; margin-bottom: 20px; }
.admin-bar a { color: #90cdf4; text-decoration: none; margin-right: 16px; }
.admin-bar a:hover { text-decoration: underline; }

/* Hero */
.hero {
    min-height: clamp(380px, 55vh, 520px);
    background: linear-gradient(115deg, #5a6b47 0%, #4a5a38 35%, #6b7c52 60%, #7d8f5e 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    position: relative;
    overflow: hidden;
    padding: clamp(16px, 4vw, 32px) 0;
    contain: layout style;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.6;
    pointer-events: none;
}
.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 0 clamp(16px, 4vw, 24px);
    width: 100%;
}
.hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: clamp(12px, 2vw, 20px);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    letter-spacing: -0.02em;
}

/* Search box - touch-friendly */
.search-box {
    background: rgba(55, 58, 62, 0.95);
    border-radius: clamp(12px, 2vw, 16px);
    padding: clamp(12px, 2vw, 16px) clamp(14px, 3vw, 20px) clamp(14px, 2vw, 20px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    max-width: 720px;
}
.search-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.search-tabs .tab {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.75);
    padding: 10px 14px;
    min-height: 44px;
    font-size: clamp(0.75rem, 2vw, 0.85em);
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.search-tabs .tab:hover { color: white; }
.search-tabs .tab.active { background: rgba(255,255,255,0.2); color: white; }

.search-bar {
    background: #fff;
    border-radius: clamp(10px, 2vw, 12px);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 48px;
}
.location-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px 10px 8px;
    border-right: 1px solid #e0e0e0;
    cursor: pointer;
    color: #333;
    font-size: clamp(0.9rem, 2vw, 0.95em);
    font-weight: 500;
    min-width: 90px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}
.location-dropdown .chevron { font-size: 0.7em; color: #666; }
.search-bar input {
    border: none;
    outline: none;
    font-size: 1rem;
    flex: 1;
    min-width: 120px;
    padding: 10px 12px;
    background: transparent;
}
.search-bar input::placeholder { color: #999; }
.search-btn {
    background: #0d9488;
    color: white;
    border: none;
    padding: 12px 20px;
    min-height: 44px;
    border-radius: 10px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.search-btn:hover { background: #0f766e; }
@media (hover: none) { .search-btn:active { background: #0f766e; } }

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: clamp(12px, 2vw, 18px);
    padding: 8px 0;
    color: white;
    font-size: clamp(0.85rem, 2vw, 0.95em);
    text-decoration: none;
    opacity: 0.95;
    transition: opacity 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.hero-cta:hover { opacity: 1; }
.hero-cta .cta-icon { font-size: 1.1em; }

.features {
    padding: clamp(40px, 6vw, 56px) clamp(16px, 4vw, 20px);
    max-width: 1200px;
    margin: 0 auto;
    contain: layout style;
}
.features h2 {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: clamp(24px, 4vw, 40px);
    color: #2e7d32;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: clamp(16px, 3vw, 24px);
}
.feature-card {
    text-align: center;
    padding: clamp(20px, 3vw, 28px) clamp(16px, 2vw, 20px);
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}
@media (hover: hover) { .feature-card:hover { transform: translateY(-6px); } }
.feature-icon { font-size: clamp(2.2em, 5vw, 2.8em); margin-bottom: 12px; }

.listings,
.listings-page {
    padding: 12px 12px 32px;
    width: 100%;
    max-width: none;
    margin: 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 50%, #f5f6f8 100%);
    content-visibility: auto;
}
.listings-grid-wrap {
  border-radius: 16px;
  padding: 4px 0;
}
.listings-page .container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 640px) {
  .listings-page { padding: 16px 20px 40px; }
  .listings-page .container { padding-left: 20px; padding-right: 20px; }
}
@media (min-width: 1024px) {
  .listings-page { padding: 20px 24px 48px; }
  .listings-page .container { padding-left: 24px; padding-right: 24px; }
}
.listings-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}
@media (min-width: 640px) { .listings-head { margin-bottom: 18px; } }
@media (min-width: 1024px) { .listings-head { margin-bottom: 20px; } }
.listings-head h1,
.listings-head h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    color: #1a1a1a;
    margin: 0;
    font-weight: 700;
}
.filter-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    min-height: 44px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0d9488;
    background: #fff;
    border: 2px solid #0d9488;
    border-radius: 10px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s, color 0.2s;
}
.filter-toggle-btn:hover { background: rgba(13, 148, 136, 0.08); }
@media (min-width: 769px) { .filter-toggle-btn { display: none; } }

/* Filter bar – improved for phone + laptop */
.filter-bar {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
}
@media (min-width: 640px) {
    .filter-bar { margin-bottom: 20px; padding: 24px; }
}
@media (min-width: 1024px) {
    .filter-bar { margin-bottom: 24px; padding: 28px 32px; }
}

/* Tags row: vertical on phone, horizontal flow on laptop */
.filter-tags-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}
@media (min-width: 640px) {
    .filter-tags-row {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-end;
        gap: 16px 20px;
    }
}
.filter-tags-row:last-of-type { margin-bottom: 0; }

/* Keyword: full width on phone, label above */
.filter-keyword-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
@media (min-width: 640px) {
    .filter-keyword-row {
        flex-direction: row;
        align-items: center;
        width: auto;
        min-width: 0;
        flex: 1;
        max-width: 280px;
    }
    .filter-keyword-row .filter-price-label { margin-bottom: 0; }
}
.filter-keyword-row .filter-price-label { font-size: 0.875rem; font-weight: 600; color: #334155; margin-bottom: 0; }
.filter-keyword-input {
    flex: 1;
    min-width: 0;
    width: 100%;
    padding: 10px 14px;
    font-size: 0.9375rem;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.2s;
}
.filter-keyword-input:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}
@media (min-width: 640px) {
    .filter-keyword-input { max-width: 280px; }
}

.filter-tag,
.filter-tag-all {
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    background: #fff;
    color: #475569;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.filter-tag:hover,
.filter-tag-all:hover { border-color: #0d9488; color: #0d9488; }
.filter-tag-all.active,
.filter-tag.active { background: #0d9488; border-color: #0d9488; color: #fff; }

/* Type + BHK + Location: grouped, consistent labels */
.filter-type-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.filter-type-row .filter-section-label { width: 100%; margin-bottom: 6px; font-size: 0.875rem; font-weight: 600; color: #334155; }
@media (min-width: 640px) {
    .filter-type-row .filter-section-label { width: auto; margin-bottom: 0; margin-right: 12px; }
}
.filter-type-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.filter-type-chip input { margin: 0 6px 0 0; accent-color: #0d9488; }
.filter-type-chip:has(input:checked) { background: #0d9488; border-color: #0d9488; color: #fff; }

.filter-bhk-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.filter-bhk-row .filter-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin-right: 10px;
    width: 100%;
    margin-bottom: 6px;
}
@media (min-width: 640px) {
    .filter-bhk-row .filter-label { width: auto; margin-bottom: 0; }
}
.filter-location-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
@media (min-width: 640px) {
    .filter-location-row { flex-direction: row; align-items: center; gap: 10px; }
}
.filter-location-row .filter-price-label { font-size: 0.875rem; font-weight: 600; color: #334155; margin-bottom: 0; }
.filter-location-select {
    width: 100%;
    min-width: 0;
    padding: 10px 14px;
    font-size: 0.9375rem;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.2s;
}
.filter-location-select:focus {
    outline: none;
    border-color: #0d9488;
}
@media (min-width: 640px) {
    .filter-location-select { min-width: 160px; max-width: 220px; width: auto; }
}

/* Price row – clear separator */
.filter-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid #e2e8f0;
}
.filter-price-label { font-size: 0.875rem; font-weight: 600; color: #334155; min-width: 70px; }
.filter-price-input {
    width: 100%;
    max-width: 140px;
    padding: 10px 14px;
    font-size: 0.9375rem;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    transition: border-color 0.2s;
}
.filter-price-input:focus {
    outline: none;
    border-color: #0d9488;
}
.filter-price-sep { color: #64748b; font-weight: 600; font-size: 1rem; }
.filter-price-row .btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 10px 20px;
}

/* Phone: filter panel (drawer style) */
@media (max-width: 768px) {
    .filter-bar {
        display: none;
        padding: 20px 16px;
        margin: 0 -12px 16px;
        border-radius: 12px;
        max-height: 85vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: #fff;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .filter-bar.filter-panel-open {
        display: block;
        position: relative;
        z-index: 10;
    }
    .filter-tags-row { gap: 18px; }
    .filter-keyword-row { margin-bottom: 4px; }
    .filter-type-chip,
    .filter-bhk-row .filter-type-chip {
        padding: 12px 16px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    .filter-price-input,
    .filter-location-select {
        min-height: 44px;
        font-size: 16px;
    }
    .filter-price-row .btn {
        min-height: 48px;
        padding: 14px 24px;
        width: 100%;
        max-width: none;
    }
    .filter-price-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .filter-price-row .filter-price-label { width: 100%; }
    .filter-price-row .filter-price-input { max-width: none; }
    .filter-price-row .filter-price-sep { display: none; }
    .filter-price-row .btn { width: 100%; }
}
@media (min-width: 769px) {
    .filter-bar { display: block; }
}
.listings h2 {
    text-align: center;
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: clamp(20px, 3vw, 32px);
    color: #2e7d32;
}
.listings .listings-head h2 { text-align: left; }
.listings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(16px, 3vw, 24px);
}
@media (min-width: 480px) { .listings-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .listings-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .listings-grid { grid-template-columns: repeat(4, 1fr); } }
.listing-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s;
}
@media (hover: hover) { .listing-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12); } }
.listing-card .type { font-size: 0.85em; text-transform: uppercase; color: #2e7d32; font-weight: 600; margin-bottom: 4px; }
.listing-card h3 { font-size: clamp(1rem, 2vw, 1.15em); margin-bottom: 8px; color: #222; }
.listing-card .locality { color: #666; font-size: 0.95em; margin-bottom: 8px; }
.listing-card .price { font-size: clamp(1.1em, 2.5vw, 1.2em); font-weight: 700; color: #1b5e20; }
.listing-card .area { font-size: 0.9em; color: #777; margin-top: 4px; }
.listing-body { padding: clamp(14px, 2vw, 18px); }

/* Enhanced listing card with image */
.listing-card-enhanced .listing-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #e8e8e8;
}
.listing-card-enhanced .listing-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.listing-card-enhanced .listing-body { padding: 16px; }
.listing-category-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #0d9488;
    background: rgba(13, 148, 136, 0.12);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}
.listing-area { font-size: 0.9em; color: #666; margin-bottom: 6px; }

.listings-empty { text-align: center; color: #666; padding: 24px; }

/* Property detail page */
.property-detail-page { padding: 0 0 48px; }
.property-detail-wrap { max-width: 900px; margin: 0 auto; }
.property-detail-hero {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #e8e8e8;
}
.property-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.property-detail-content { padding: 24px clamp(16px, 4vw, 24px) 0; }
@media (max-width: 768px) {
    .property-detail-hero { aspect-ratio: 4/3; }
    .property-detail-stats { flex-direction: column; gap: 16px; }
    .property-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
.property-detail-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.property-category-badge,
.property-type-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
}
.property-category-badge { background: #0d9488; color: #fff; }
.property-type-badge { background: #e2e8f0; color: #334155; }
.property-detail-title { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 8px; color: #1a1a1a; }
.property-detail-locality { color: #666; font-size: 1.05em; margin-bottom: 20px; }
.property-detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 24px;
}
.property-stat { display: flex; flex-direction: column; gap: 4px; }
.property-stat-label { font-size: 0.85em; color: #666; }
.property-stat-value { font-size: 1.2em; font-weight: 700; }
.property-stat-value.price { color: #1b5e20; font-size: 1.4em; }
.property-detail-description { margin-bottom: 32px; }
.property-detail-description h2 { font-size: 1.2rem; margin-bottom: 12px; color: #333; }
.property-detail-description p { color: #555; line-height: 1.7; }
.property-gallery-section { margin-bottom: 32px; }
.property-gallery-section h2 { font-size: 1.2rem; margin-bottom: 16px; color: #333; }
.property-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}
.property-gallery-item {
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 10px;
    background: #eee;
}
.property-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.property-gallery-item:hover { opacity: 0.9; }
.property-video-section { margin-bottom: 24px; }
.property-video-section h2 { font-size: 1.2rem; margin-bottom: 12px; color: #333; }
.property-video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #111;
}
.property-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-note {
    background: #e8e8e8;
    padding: clamp(14px, 2vw, 18px) 16px;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
    text-align: center;
    color: #555;
    font-size: clamp(0.85rem, 2vw, 0.9em);
}

/* Responsive: small phones */
@media (max-width: 480px) {
    .search-tabs .tab { padding: 10px 10px; font-size: 0.72rem; }
    .search-bar { flex-direction: column; align-items: stretch; }
    .location-dropdown {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
        min-width: 0;
        justify-content: space-between;
    }
    .search-bar input { min-width: 0; }
    .search-btn { width: 100%; }
}

/* Tablet and up: keep search bar in one row */
@media (min-width: 481px) and (max-width: 768px) {
    .location-dropdown {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 8px;
        margin-bottom: 4px;
        width: 100%;
        min-width: 0;
    }
    .search-bar input { width: 100%; }
    .search-btn { width: 100%; }
}

@media (min-width: 769px) {
    .search-bar { flex-wrap: nowrap; }
}

/* List property form – full fields, responsive */
.list-property-form { max-width: 640px; }
.list-form-section {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
}
.list-form-section-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}
.list-property-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.list-property-form .form-actions {
    margin-top: 8px;
    margin-bottom: 24px;
}
.list-property-form .form-actions .btn { width: 100%; max-width: 320px; }
.list-property-form .required { color: #dc2626; }
.list-auth-msg, .list-success { padding: 20px; margin: 16px 0; border-radius: 12px; background: #f8fafc; border: 1px solid #e2e8f0; }
.list-success a { color: #0d9488; font-weight: 600; }
.list-property-main { padding: var(--space-8, 2rem) 20px var(--space-16, 4rem); }
@media (max-width: 600px) {
    .list-form-section { padding: 16px; }
    .list-property-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .list-property-form .form-actions .btn { max-width: 100%; }
    .list-property-main { padding: 16px 16px 80px; }
    .list-property-form .form-group input, .list-property-form .form-group select, .list-property-form .form-group textarea { min-height: 44px; font-size: 16px; }
}

/* Lead capture modal – Call/WhatsApp name+phone form */
.lead-capture-overlay { display: flex; align-items: center; justify-content: center; }
.lead-capture-modal .lead-capture-title { font-size: 1.25rem; margin-bottom: 6px; }
.lead-capture-modal .lead-capture-sub { font-size: 0.9375rem; color: #64748b; margin-bottom: 1.25rem; }
.lead-capture-form .form-group { margin-bottom: 1rem; }
.lead-capture-form .form-group label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 4px; }
.lead-capture-form .form-group input { width: 100%; padding: 10px 12px; border: 1px solid #e2e8f0; border-radius: 8px; }
.lead-capture-actions { display: flex; gap: 10px; margin-top: 1.25rem; }
.lead-capture-actions .btn { flex: 1; }
