﻿:root {
    --primary: #0f172a;
    --secondary: #2563eb;
    --gold: #f59e0b;
    --light: #f8fafc;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fb;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */
.main-section {
    padding-left: 120px;
    padding-right: 120px;
}

.premium-hero {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #000;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.65));
}

.hero-content {
    z-index: 10;
    position: relative;
    margin-top: 0px;
    margin-bottom: 0px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    color: #fff;
    margin-bottom: 25px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-title {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    /*max-width: 850px;*/
    margin-bottom: 25px;
}

.hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 20px;
    max-width: 650px;
    margin-bottom: 40px;
}

/*
    AI Search Section
*/
.ai-search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.ai-search-input {
    flex: 1;
    min-width: 0;
    height: 55px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 15px;
    font-size: 16px;
}

.ai-search-btn {
    background: linear-gradient(135deg, #efa644, #dcc426);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0 25px;
    height: 55px;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s ease;
    white-space: nowrap;
}

    .ai-search-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,.15);
    }
/*.ai-search-form {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-search-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 5px;
    display: flex;
    gap: 12px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #f4952f;
}

.ai-search-input {
    flex: 1;
    border: none;
    font-size: 16px;
    padding: 14px 16px;
    outline: none;
}

    .ai-search-input::placeholder {
        color: #9ca3af;
    }

.ai-search-btn {
    background: linear-gradient(135deg, #efa644, #dcc426);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0 26px;
    border-radius: 10px;
    width: 20%;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .ai-search-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 1px 5px #efa644;
    }
*/
/* ========================= */
/* HERO TABS */
/* ========================= */

.hero-tabs {
    display: inline-flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero-tab {
    border: none;
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

    .hero-tab.active,
    .hero-tab:hover {
        background: var(--secondary);
    }

/* ========================= */
/* SEARCH */
/* ========================= */

.advanced-search-wrapper {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
}

.search-group label {
    color: #fff;
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
}

.search-control {
    height: 58px;
    border-radius: 16px;
    border: none;
    padding-left: 20px;
    font-weight: 500;
}

.hero-search-btn {
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.trending-searches {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

    .trending-searches span {
        color: rgba(255,255,255,0.7);
    }

    .trending-searches a {
        color: #fff;
        text-decoration: none;
        padding: 8px 14px;
        background: rgba(255,255,255,0.08);
        border-radius: 100px;
        font-size: 13px;
    }

/* ========================= */
/* STATS */
/* ========================= */

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-stat-item h3 {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
}

.hero-stat-item p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* ========================= */
/* FEATURED PROJECTS */
/* ========================= */

.featured-projects-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-subtitle {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
}

.view-all-btn {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
}

/* ========================= */
/* PROPERTY CARD */
/* ========================= */

.premium-property-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

    .premium-property-card:hover {
        transform: translateY(-10px);
    }

.property-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.premium-property-card:hover .property-image {
    transform: scale(1.08);
}

.property-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}

.property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 100px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

    .property-badge.luxury {
        background: #f59e0b;
    }

    .property-badge.hot {
        background: #ef4444;
    }

    .property-badge.new {
        background: #10b981;
    }

.property-roi {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 12px;
}

.property-content {
    padding: 25px;
}

.property-location {
    color: #64748b;
    margin-bottom: 10px;
    font-size: 14px;
}

.property-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.property-details {
    display: flex;
    gap: 10px;
    color: #64748b;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.property-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 25px;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-btn {
    background: var(--primary);
    color: #fff;
    border-radius: 14px;
    padding: 12px 22px;
    font-weight: 600;
}

.wishlist-btn {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    border: none;
    background: #f1f5f9;
}

/* ========================= */
/* FLOATING CIRCLES */
/* ========================= */

.floating-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: rgba(37,99,235,0.4);
    top: -50px;
    right: -50px;
}

.circle-2 {
    width: 250px;
    height: 250px;
    background: rgba(245,158,11,0.25);
    bottom: 0;
    left: -50px;
}
/* ===================================================== */
/* LIGHT LUXURY PROPERTY SECTION */
/* ===================================================== */

.curated-property-section {
    background: #f8fafc;
    padding: 25px 0;
}

/* ===================================================== */
/* HEADER */
/* ===================================================== */

.curated-section-header {
    margin-bottom: 15px;
}

.section-mini-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: #e0f2fe;
    color: #0284c7;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.curated-main-title {
    font-size: 28px;
    line-height: 1.08;
    font-weight: 800;
    color: #0f172a;
    max-width: 850px;
}

.curated-subtitle {
    color: #64748b;
    font-size: 17px;
    line-height: 1.5;
    padding-left: 2px;
    margin-bottom: 0px;
}

/* ===================================================== */
/* FEATURED SHOWCASE */
/* ===================================================== */

.featured-showcase-card {
    height: 100%;
}

.showcase-image-wrapper {
    position: relative;
    min-height: 720px;
    border-radius: 18px;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.showcase-image-wrapper:hover .showcase-image {
    transform: scale(1.05);
}

/* ===================================================== */
/* TOP BAR */
/* ===================================================== */

.showcase-top-bar {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    z-index: 5;
}

.showcase-status {
    background: rgba(255,255,255,0.92);
    padding: 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
}

.showcase-icon-btn {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    border: none;
    background: rgba(255,255,255,0.92);
    color: #0f172a;
}

/* ===================================================== */
/* FLOATING CARD */
/* ===================================================== */

.showcase-floating-card {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 18px;
    padding: 18px;
    background: rgba(255,255,255,0.96);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(15,23,42,0.12);
}

.showcase-location {
    color: #8d1616;
    margin-bottom: 12px;
    font-weight: 500;
}

.showcase-title {
    font-size: 25px;
    line-height: 1;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.showcase-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

    .showcase-features span {
        padding: 10px;
        background: #f1f5f9;
        border-radius: 100px;
        color: #334155;
        font-size: 10px;
        font-weight: bold;
    }

.showcase-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.showcase-price-label {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 8px;
}

.showcase-price {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.showcase-btn {
    min-width: 220px;
    height: 50px;
    border-radius: 20px;
    background: #efa644;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all .3s ease;
}

    .showcase-btn:hover {
        background: #dcc426;
        color: #fff;
        transform: translateY(-2px);
    }

/* ===================================================== */
/* RIGHT SIDE */
/* ===================================================== */

.property-side-layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
}

/* ===================================================== */
/* MINIMAL PROPERTY CARD */
/* ===================================================== */

.minimal-property-container {
    background: #ffffff;
    border-radius: 18px;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(15,23,42,0.05);
    transition: all .35s ease;
}

    .minimal-property-container:hover {
        transform: translateY(-6px);
    }

.minimal-property-card {
    display: flex;
    gap: 22px;
    align-items: center;
}


.minimal-property-image {
    width: 160px;
    min-width: 160px;
    height: 160px;
    border-radius: 15px;
    overflow: hidden;
}

    .minimal-property-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.minimal-property-content {
    flex: 1;
    width: 100%;
}

.minimal-property-location {
    color: #2563eb;
    margin-bottom: 2px;
    font-size: 14px;
}

.minimal-property-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.minimal-property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 6px;
}

    .minimal-property-features span {
        padding: 10px;
        background: #f1f5f9;
        border-radius: 100px;
        color: #475569;
        font-size: 10px;
        font-weight: bold;
    }

.minimal-property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 45px;
}

.minimal-property-price {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.minimal-link-btn {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

/* ===================================================== */
/* INSIGHT CARD */
/* ===================================================== */
.investment-insight-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #ececec;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: all .3s ease;
    margin-top: -70px;
}

    .investment-insight-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0,0,0,.10);
    }

.insight-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg,#efa644,#dcc426);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .insight-icon i {
        color: #fff;
        font-size: 28px;
    }

.insight-content {
    flex: 1;
}

.insight-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(239,166,68,.12);
    color: #c97d0a;
    font-size: 10px;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 1px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.insight-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
}

.insight-content p {
    margin-bottom: 12px;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.insight-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg,#efa644,#dcc426);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all .3s ease;
}

    .insight-btn:hover {
        color: #fff;
        transform: translateX(3px);
    }

    .insight-btn i {
        font-size: 18px;
    }
/* ===================================================== */
/* TRENDING LOCATIONS */
/* ===================================================== */
.trending-location-section {
    margin-top: 20px;
}

.section-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

    .section-block-header h3 {
        font-size: 30px;
        font-weight: 800;
        color: #0f172a;
    }

.explore-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 32px;
    background: #e0f2fe;
    color: #0284c7;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.location-card {
    position: relative;
    height: 200px;
    border-radius: 18px;
    overflow: hidden;
}

    .location-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .8s ease;
    }

    .location-card:hover img {
        transform: scale(1.08);
    }

.location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,0.75), rgba(0,0,0,0.1) );
}

.location-content {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 5;
}

    .location-content h4 {
        color: #fff;
        font-size: 23px;
        font-weight: 800;
    }
    .location-content h4 a{
        color: #fff;
    }
    .location-content p {
        color: rgba(255,255,255,0.8);
        margin: 0;
    }

/* ========================================================= */
/* PHASE 2 SECTION */
/* ========================================================= */

.phase2-home-section {
    background: #ffffff;
    padding: 5px 0;
}

/* ========================================================= */
/* TRUST STRIP */
/* ========================================================= */

.trust-strip-wrapper {
    margin-bottom: 110px;
}

.trust-strip-card {
    background: #f8fafc;
    border-radius: 40px;
    padding: 40px 45px;
    border: 1px solid #e2e8f0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.trust-icon {
    width: 70px;
    height: 70px;
    border-radius: 24px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #2563eb;
    box-shadow: 0 10px 25px rgba(15,23,42,0.06);
}

.trust-content h3 {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.trust-content p {
    color: #64748b;
    margin: 0;
}

/* ========================================================= */
/* COMMON SECTION HEADER */
/* ========================================================= */

.section-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}

.section-tag {
    display: inline-flex;
    padding: 10px 18px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title-modern {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    color: #0f172a;
    max-width: 800px;
}

.section-link-btn {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

/* ========================================================= */
/* LIFESTYLE SECTION */
/* ========================================================= */

.lifestyle-section {
    margin-bottom: 40px;
}

.lifestyle-card {
    position: relative;
    height: 240px;
    border-radius: 18px;
    overflow: hidden;
}

.lifestyle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.lifestyle-card:hover .lifestyle-image {
    transform: scale(1.08);
}

.lifestyle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1) );
}

.lifestyle-content {
    position: absolute;
    left: 22px;
    bottom: 15px;
    right: 14px;
    z-index: 5;
}

.lifestyle-icon {
    width: 70px;
    height: 70px;
    border-radius: 24px;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.lifestyle-content h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 0px;
}

.lifestyle-content p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

/* ========================================================= */
/* MARKET INSIGHTS */
/* ========================================================= */

.market-insights-section {
    margin-bottom: 40px;
}

.insight-main-card {
    background: linear-gradient(135deg,#0f172a,#1e293b);
    border-radius: 24px;
    padding: 36px 55px;
    min-height: 90%;
    position: relative;
    overflow: hidden;
}

.insight-growth-badge {
    display: inline-flex;
    padding: 12px 20px;
    border-radius: 100px;
    background: rgba(16,185,129,0.15);
    color: #10b981;
    margin-bottom: 30px;
    font-weight: 600;
}

.insight-main-card h3 {
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 24px;
    max-width: 700px;
}

.insight-main-card p {
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
    max-width: 650px;
}

.insight-mini-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.mini-stat h4 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
}

.mini-stat span {
    color: rgba(255,255,255,0.7);
}

.market-table-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 24px;
    height: 100%;
}

.market-table-header h4 {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
}

.market-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

    .market-row:last-child {
        border-bottom: none;
    }

    .market-row h5 {
        font-size: 22px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 6px;
    }

    .market-row span {
        color: #64748b;
    }

.market-growth {
    min-width: 90px;
    height: 46px;
    border-radius: 100px;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ========================================================= */
/* TOP BUILDERS */
/* ========================================================= */

.top-builders-section {
    margin-bottom: 5px;
}

.builder-card-modern {
    background: #e3c3ff;
    border: 1px solid #99a2af;
    border-radius: 15px;
    padding: 15px 25px;
    transition: all .35s ease;
    /*height: 100%;*/
}

    .builder-card-modern:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(15,23,42,0.08);
    }

.builder-logo {
    width: 80px;
    height: 80px;
    border-radius: 26px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 28px;
}

.builder-card-modern h4 {
    font-size: 23px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.builder-card-modern p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.builder-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .builder-stats span {
        padding: 10px 16px;
        border-radius: 100px;
        background: #f1f5f9;
        color: #475569;
        font-size: 13px;
        font-weight: 600;
    }

/* ========================================================= */
/* LIVE PROPERTY EXPLORER */
/* ========================================================= */

.live-property-explorer {
    padding: 10px 0;
    background: #f8fafc;
    overflow: hidden;
}

.explorer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
    gap: 30px;
}

.explorer-mini-tag {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
}

.explorer-title {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    color: #0f172a;
    max-width: 850px;
}

.explorer-view-all {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

/* ========================================================= */
/* CHIPS */
/* ========================================================= */

.property-chips-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.property-chip {
    border: none;
    background: #fff;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    transition: all .3s ease;
}

    .property-chip.active,
    .property-chip:hover {
        background: #0f172a;
        color: #fff;
    }

/* ========================================================= */
/* HORIZONTAL SCROLL */
/* ========================================================= */

.property-scroll-wrapper {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

    .property-scroll-wrapper::-webkit-scrollbar {
        height: 8px;
    }

    .property-scroll-wrapper::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 100px;
    }

/* ========================================================= */
/* CARD */
/* ========================================================= */

.live-property-card {
    min-width: 33%;
    max-width: 33%;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(15,23,42,0.05);
    transition: all .35s ease;
    scroll-snap-align: start;
    border: 1px solid #b4b4b4;
}

    .live-property-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(15,23,42,0.10);
    }

.live-property-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.live-property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.live-property-card:hover .live-property-image {
    transform: scale(1.08);
}

.property-ai-match {
    position: absolute;
    top: 15px;
    left: 13px;
    background: rgba(255,255,255,0.92);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.live-property-content {
    padding: 22px;
}

.live-property-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.property-builder-name {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
}

.live-property-top h3 {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
}

.property-save-btn {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #0f172a;
}

.property-location-line {
    color: #64748b;
    margin-bottom: 12px;
}

.property-feature-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

    .property-feature-tags span {
        background: #f1f4f7;
        padding: 10px;
        border-radius: 100px;
        font-size: 9px;
        font-weight: 600;
        color: #475569;
    }

.property-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.metric-box {
    background: #d9d3fa;
    border-radius: 12px;
    padding: 10px 18px;
}

    .metric-box span {
        display: block;
        font-size: 13px;
        color: #64748b;
        margin-bottom: 1px;
    }

    .metric-box strong {
        font-size: 12px;
        color: #0f172a;
    }

.property-action-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 58px;
    border-radius: 18px;
    background: #0f172a;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px) {
    .main-section {
        padding-left: 2px;
        padding-right: 2px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 32px;
    }

    .property-title {
        font-size: 20px;
    }

    .property-price {
        font-size: 22px;
    }

    .hero-content {
        padding-top: 52px;
        padding-bottom: 20px;
    }

    .hero-stats {
        gap: 15px;
        margin-top: 18px;
    }

    .hero-stat-item h3 {
        font-size: 26px;
    }

    .ai-search-box {
        flex-direction: column;
        gap: 10px;
    }

    .ai-search-input {
        width: 100%;
        min-height: 55px;
    }

    .ai-search-btn {
        width: 100%;
    }

    .live-property-explorer {
        padding: 20px 0;
    }

    .explorer-title {
        font-size: 26px;
    }

    .explorer-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .property-scroll-wrapper {
        display: grid
    }

    .live-property-card {
        min-width: 100%;
        margin-bottom: 12px;
    }

    .live-property-top h3 {
        font-size: 20px;
    }

    .curated-property-section {
        padding: 20px 0;
    }

    .curated-main-title {
        font-size: 26px;
    }

    .showcase-floating-card {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 24px;
    }

    .showcase-title {
        font-size: 28px;
    }

    .showcase-bottom {
        flex-direction: column;
        /*align-items: flex-start;*/
        gap: 15px;
    }

    .section-block-header h3 {
        font-size: 26px;
    }

    .section-block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }

    .location-card {
        height: 320px;
    }

    .phase2-home-section {
        padding: 20px 0;
    }

    .trust-strip-card {
        padding: 30px;
    }

    .section-title-modern {
        font-size: 26px;
    }

    .insight-main-card {
        padding: 35px;
    }

        .insight-main-card h3 {
            font-size: 28px;
        }

    .minimal-property-footer {
        margin-top: 2px;
    }

    .minimal-property-price {
        margin-bottom: 10px;
    }

    .market-table-card {
        padding: 15px 30px;
    }

    .builder-card-modern {
        padding: 10px 25px;
    }

    .investment-insight-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
        padding: 18px;
        margin-top: 2px;
    }

    .insight-icon {
        margin: 0 auto;
    }

    .insight-content h4 {
        font-size: 20px;
    }

    .insight-btn {
        width: 50%;
        justify-content: center;
    }

    .advanced-search-wrapper {
        padding: 20px;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .curated-subtitle {
        padding-left: 0;
        margin-top: 12px;
    }

    .showcase-image-wrapper {
        min-height: 650px;
    }

    .minimal-property-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .minimal-property-image {
        width: 100%;
        min-width: 100%;
    }

    .section-header-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .lifestyle-card {
        height: 420px;
    }

    .insight-mini-stats {
        flex-wrap: wrap;
        gap: 25px;
    }

    .property-chip {
        font-size: 12px;
        padding: 10px 12px;
    }
}
