/* =========================================
   HERO
========================================= */

.hero-section {

    padding-top: 40px;
    padding-bottom: 70px;
}


/* =========================================
   WRAPPER
========================================= */

.hero-wrapper {

    display: grid;
    grid-template-columns: 1fr 0.95fr;

    gap: 60px;

    align-items: center;
}


/* =========================================
   LEFT
========================================= */

.hero-content {

    max-width: 760px;
}

.hero-content h1 {

    margin-top: 26px;
    margin-bottom: 28px;
}

.hero-description {

    max-width: 640px;

    font-size: 18px;

    margin-bottom: 40px;
}


/* =========================================
   TRUST CHIPS
========================================= */

.hero-trust-chips {

    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}


/* =========================================
   RIGHT
========================================= */

.hero-dashboard {

    position: relative;
}


/* PANEL */
.hero-search-panel {

    padding: 34px;
}


/* TOP */
.search-panel-top {

    margin-bottom: 30px;
}

/* =========================================
   FILTER PILLS
========================================= */

.property-filter-pills {

    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 24px;
}


/* PILL */
.filter-pill {

    padding: 12px 18px;

    border-radius: 100px;

    border:
        1px solid rgba(15,35,68,0.08);

    background:
        rgba(15,35,68,0.04);

    color: var(--primary);

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition: var(--transition);
}


/* ACTIVE */
.filter-pill.active {

    background:
        var(--gradient-accent);

    border-color:
        transparent;

    color: white;

    box-shadow:
        0 10px 24px rgba(252,64,2,0.18);
}


/* HOVER */
.filter-pill:hover {

    transform:
        translateY(-2px);
}

.panel-label {

    display: inline-flex;

    padding: 10px 16px;

    border-radius: 100px;

    background:
        rgba(252,64,2,0.08);

    color: var(--accent);

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 18px;
}

.search-panel-top h3 {

    font-size: 36px;

    margin-bottom: 16px;
}


/* =========================================
   FORM
========================================= */

.hero-search-form {

    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 22px;
}


/* =========================================
   LIVE CHIP
========================================= */

.live-market-chip {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(15,35,68,0.06);
    border: 1px solid rgba(15,35,68,0.08);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 30px;
}


/* =========================================
   MAIN CTA
========================================= */

.hero-main-btn {

    width: 100%;
}


/* =========================================
   SECONDARY CTA
========================================= */

.hero-secondary-cta {

    padding: 20px;

    border-radius: 22px;

    background:
        rgba(255,255,255,0.34);

    border:
        1px solid rgba(255,255,255,0.45);

    backdrop-filter: blur(14px);

    transition: var(--transition);
}

.hero-secondary-cta:hover {

    transform:
        translateY(-4px);

    background:
        rgba(255,255,255,0.55);
}

.hero-secondary-cta span {

    display: block;

    color: var(--primary);

    font-size: 16px;
    font-weight: 700;

    margin-bottom: 8px;
}

.hero-secondary-cta small {

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .hero-wrapper {

        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .hero-section {

        padding-bottom: 40px;
    }

    .hero-description {

        font-size: 16px;
    }

    .hero-search-panel {

        padding: 24px;
    }

    .search-panel-top h3 {

        font-size: 30px;
    }

}