/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e40af;
    text-decoration: none;
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1e40af;
}

.main-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    z-index: 999;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.main-nav a {
    padding: 0.75rem 0;
    text-decoration: none;
    color: #1e293b;
    border-bottom: 1px solid #e2e8f0;
}

.main-nav a:last-child {
    border-bottom: none;
}

.main-nav.active {
    display: flex;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
    .main-nav {
        display: flex;
        position: static;
        flex-direction: row;
        gap: 1.5rem;
        padding: 0;
        box-shadow: none;
        overflow-y: visible;
    }
    .main-nav a {
        padding: 0;
        border-bottom: none;
    }
    .header-container {
        padding: 1rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 2rem 0 1rem;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    color: #cbd5e1;
    text-decoration: none;
    background: rgba(255,255,255,0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #334155;
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }
    .footer-links li {
        margin-bottom: 0;
    }
    .social-links {
        justify-content: center;
    }
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    position: relative;
    margin: auto;
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.modal-content button {
    width: 100%;
    padding: 0.75rem;
    background: #059669;
    color: white;
    border: none;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* ============================================
   PAGE-SPECIFIC STYLES (Hero, Property Grid, Sectors, Internal Links, FAQ, etc.)
   ============================================ */

/* ---------- HERO SECTION ---------- */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}
.hero-section .breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    opacity: 0.9;
}
.hero-section .breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}
.hero-section .breadcrumb a:hover {
    text-decoration: underline;
    color: white;
}
.hero-section h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.stat-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    padding: 0.8rem;
    border-radius: 12px;
    text-align: center;
}
.stat-card .stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
}
.stat-card .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- SECTORS SECTION ---------- */
.sectors-section {
    padding: 2rem 0;
    background: #f8fafc;
}
.sector-category {
    margin-bottom: 2rem;
}
.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.category-title.developed { color: #059669; }
.category-title.developing { color: #d97706; }
.category-title.emerging { color: #dc2626; }
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}
.sector-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    position: relative;
    border: 1px solid #eef2f6;
}
.sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: #3b82f6;
}
.sector-card.developed { border-left: 4px solid #10b981; }
.sector-card.developing { border-left: 4px solid #f59e0b; }
.sector-card.emerging { border-left: 4px solid #ef4444; }
.sector-card .sector-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}
.sector-card .sector-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}
.sector-card .sector-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e40af;
    white-space: nowrap;
}
.sector-card .sector-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.growth-badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}
.growth-badge.high { background: #fee2e2; color: #dc2626; }
.growth-badge.normal { background: #d1fae5; color: #059669; }
.metro-badge {
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}
.sector-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #64748b;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}
.investment-tag {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 0 10px 0 8px;
    text-transform: uppercase;
}
.sector-card.emerging .investment-tag { background: linear-gradient(135deg, #ef4444, #dc2626); }
.sector-card.developed .investment-tag { background: linear-gradient(135deg, #10b981, #059669); }

/* ---------- PROPERTY GRID ---------- */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.property-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.property-card:hover {
    transform: translateY(-3px);
}
.property-image {
    height: 160px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
}
.property-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.property-image span {
    font-size: 2.5rem;
}
.property-content {
    padding: 1.2rem;
}
.property-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}
.property-title a {
    text-decoration: none;
    color: #1e293b;
}
.property-title a:hover {
    color: #1e40af;
}
.property-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1e40af;
    margin: 0.5rem 0;
}
.status-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}
.status-new {
    background: #dbeafe;
    color: #1e40af;
}
.status-ready {
    background: #d1fae5;
    color: #059669;
}
.status-under {
    background: #fef3c7;
    color: #d97706;
}

/* ---------- BUTTONS ---------- */
.btn-outline {
    display: inline-block;
    background: transparent;
    border: 1px solid #1e40af;
    color: #1e40af;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: 0.2s;
    text-decoration: none;
}
.btn-outline:hover {
    background: #1e40af;
    color: white;
}
.btn-primary {
    background: #ca8a04;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 24px;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: #b45309;
}

/* ---------- INTERNAL LINKS GRID ---------- */
.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}
.internal-links-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
}
.internal-links-card h4, .internal-links-card strong {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 700;
}
.internal-links-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.internal-links-card li {
    margin-bottom: 0.4rem;
}
.internal-links-card a {
    text-decoration: none;
    color: #475569;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.internal-links-card a:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
    padding: 2rem 0;
    background: #f8fafc;
}
.faq-item {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.faq-item strong {
    display: block;
    margin-bottom: 0.5rem;
}

/* ---------- DYNAMIC SECTIONS (location_content) ---------- */
.dynamic-sections {
    padding: 1rem 0;
}
.section-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
}
.section-title {
    color: #1e3a8a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.section-intro {
    color: #475569;
    margin-bottom: 1.5rem;
}

/* ---------- BLOG SECTION ---------- */
.blog-section {
    padding: 2rem 0;
    background: white;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.blog-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}
.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.blog-card h3 a {
    color: #1e3a8a;
    text-decoration: none;
}
.blog-card h3 a:hover {
    text-decoration: underline;
}
.blog-date {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}
.blog-excerpt {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.read-more {
    color: #1e40af;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

/* ---------- AMENITY DESCRIPTION CARD ---------- */
.amenity-desc-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

/* ---------- COMPARISON TABLE ---------- */
.compare-table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    min-width: 600px;
}
.compare-table th, .compare-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}
.compare-table th {
    background: #f8fafc;
    font-weight: 600;
    width: 20%;
}
.compare-table td {
    width: 40%;
}
.winner-badge {
    color: #059669;
    font-weight: 600;
}
.verdict-card {
    background: #f0fdf4;
    border: 2px solid #86efac;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

/* ---------- TOP PROJECTS RANKING ---------- */
.top-card {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.top-card:hover {
    transform: translateX(4px);
}
.rank {
    font-size: 2rem;
    font-weight: bold;
    color: #f59e0b;
    min-width: 60px;
    text-align: center;
}
.top-details {
    flex: 1;
}
@media (max-width: 600px) {
    .top-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .rank {
        text-align: left;
    }
}

/* ---------- LANDMARK & NEARBY ---------- */
.landmark-info {
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}
.nearby-list {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}
.nearby-badge {
    background: #0284c7;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* ---------- PRICE TREND ---------- */
.trend-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.trend-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e40af;
}
.trend-change {
    font-size: 1.2rem;
}
.positive { color: #059669; }
.negative { color: #dc2626; }

/* ---------- QUESTION PAGE (quick answer) ---------- */
.quick-answer {
    background: #fff7ed;
    border-left: 4px solid #ea580c;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

/* ---------- RERA BADGE ---------- */
.rera-badge {
    background: #d1fae5;
    color: #065f46;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* ---------- LOCATION / BUILDER / AMENITY CARDS (homepage) ---------- */
.location-card, .builder-card, .amenity-card, .insight-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}
.location-card:hover, .builder-card:hover, .amenity-card:hover, .insight-card:hover {
    transform: translateY(-3px);
}
.location-card-header {
    height: 120px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}
.location-card-body, .builder-card-body, .amenity-card-body, .insight-card-body {
    padding: 1rem;
}
.location-badge {
    display: inline-block;
    background: #fef3c7;
    color: #b45309;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* ---------- GRID HELPERS (homepage, etc.) ---------- */
.grid-2, .grid-3, .grid-4 {
    display: grid;
    gap: 1.5rem;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* ---------- PROPERTY PAGE SPECIFIC ---------- */
.prop-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 1.5rem 0 2rem;
}
.prop-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1e40af;
}
.highlight-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #f1f5f9;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    color: #1e293b;
}
.amenity-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 0.2rem;
}
.similar-card, .builder-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.similar-card:hover, .builder-card:hover {
    transform: translateY(-2px);
    background: #f1f5f9;
}
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 0.8rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    z-index: 100;
    border-top: 1px solid #e2e8f0;
}
.sticky-cta button {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
}
@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
    body {
        padding-bottom: 0;
    }
}
.prop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .prop-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.share-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.share-btn {
    background: #e2e8f0;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    text-decoration: none;
    color: #1e293b;
    display: inline-block;
}
.lead-btn {
    background: #059669;
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}
.lead-btn-outline {
    background: white;
    color: #059669;
    border: 1px solid #059669;
}
.lead-btn-outline:hover {
    background: #059669;
    color: white;
}

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ---------- RESPONSIVE OVERRIDES ---------- */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .sectors-grid, .property-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    .internal-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .internal-links-grid {
        grid-template-columns: 1fr;
    }
    .compare-table th, .compare-table td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   HOMEPAGE SPECIFIC (missing from base)
   ============================================ */

/* Hero section variant */
.home-hero {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 0; /* override hero-section margin */
}
.hero-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

/* Quick search box */
.quick-search {
    background: rgba(255,255,255,0.15);
    padding: 1rem;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
}
.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.search-select {
    flex: 2;
    min-width: 120px;
    padding: 0.6rem;
    border: none;
    border-radius: 6px;
}
.search-btn {
    background: #059669;
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* Property type cards */
.type-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    text-align: center;
}
.type-card:hover {
    transform: translateY(-3px);
}
.type-icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}
.type-count {
    font-size: 0.85rem;
    color: #64748b;
}

/* Market insights icons */
.insight-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Quick links grid */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}
.quick-links-grid ul {
    list-style: none;
    padding-left: 0;
}
.quick-links-grid li {
    margin-bottom: 0.4rem;
}

/* Amenities section */
.amenity-icon {
    font-size: 1.8rem;
}
.amenity-usage {
    font-size: 0.75rem;
    color: #64748b;
}

/* Landmark cards */
.landmark-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    text-align: center;
}
.landmark-card:hover {
    transform: translateY(-3px);
}
.landmark-icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}
.landmark-location {
    font-size: 0.85rem;
    color: #64748b;
}

/* Plain list (no bullets) */
.plain-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
}
.plain-list li {
    margin-bottom: 0.4rem;
}

/* Card row (flex row for location cards) */
.card-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

/* Descriptive Links Grid (long-tail SEO) */
.descriptive-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}
.descriptive-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.descriptive-links-column li {
    margin-bottom: 0.6rem;
}
.descriptive-links-column a {
    color: #1e40af;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    display: inline-block;
}
.descriptive-links-column a:hover {
    text-decoration: underline;
}
@media (max-width: 992px) {
    .descriptive-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .descriptive-links-grid {
        grid-template-columns: 1fr;
    }
}

/* Filter chips - horizontal scroll on mobile */
.filter-chips {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 0.5rem 0 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.filter-chip {
    flex: 0 0 auto;
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    color: #1e40af;
    text-decoration: none;
    white-space: nowrap;
}
.filter-chip:hover {
    background: #1e40af;
    color: white;
}