:root{
    --green:#07951b;
    --dark:#10292f;
    --text:#5d686c;
    --border:#e5eeee;
}

/* HERO */

.home-hero-section{
    position:relative;
    width:100%;
    min-height:690px;
    background:#f6fbff;
    overflow:visible;
    padding-bottom:110px;
}

.home-hero-bg{
    position:absolute;
    inset:0;
    height:560px;
    overflow:hidden;
}

.home-hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:right center;
    display:block;
}

.home-hero-fade{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,.96) 24%,
            rgba(255,255,255,.78) 43%,
            rgba(255,255,255,.20) 72%,
            rgba(255,255,255,0) 100%
        ),
        linear-gradient(
            180deg,
            rgba(246,251,255,0) 65%,
            rgba(246,251,255,1) 100%
        );
}

.home-hero-wrap{
    position:relative;
    z-index:2;
    max-width:1180px;
    height:560px;
    margin:0 auto;
    display:flex;
    align-items:center;
}

.home-hero-content{
    max-width:560px;
}

.home-subtitle{
    position:relative;
    display:inline-block;
    color:var(--green);
    font-size:15px;
    font-weight:900;
    letter-spacing:.2px;
    margin-bottom:24px;
}

.home-subtitle::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:34px;
    height:3px;
    border-radius:20px;
    background:var(--green);
}

.home-hero-content h1{
    color:var(--dark);
    font-size:58px;
    line-height:1.16;
    font-weight:900;
    letter-spacing:-2px;
    margin-bottom:22px;
}

.home-hero-content h1 span{
    color:var(--green);
}

.home-hero-content p{
    max-width:420px;
    color:var(--text);
    font-size:16px;
    line-height:1.85;
    font-weight:500;
    margin-bottom:34px;
}

.home-features{
    display:flex;
    align-items:center;
    gap:36px;
}

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

.home-feature svg{
    width:34px;
    height:34px;
    stroke:var(--green);
    stroke-width:2;
}

.home-feature h6{
    color:var(--dark);
    font-size:14px;
    line-height:1.45;
    font-weight:900;
    margin:0;
}

/* SEARCH BOX */

.hero-search-box{
    position:absolute;
    left:50%;
    bottom:-52px;
    transform:translateX(-50%);
    z-index:5;
    width:100%;
    max-width:980px;
    background:#fff;
    border:1px solid #edf1f0;
    border-radius:14px;
    padding:28px;
    box-shadow:
        0 18px 45px rgba(16,41,47,.10),
        0 4px 14px rgba(16,41,47,.04);
}

.search-form{
    display:grid;
    grid-template-columns:1fr 1fr 1fr 170px;
    gap:18px;
    align-items:end;
}

.search-field label{
    display:block;
    color:#59676b;
    font-size:13px;
    font-weight:700;
    margin-bottom:8px;
}

.search-field select{
    width:100%;
    height:48px;
    border:1px solid #dfe8e6;
    border-radius:7px;
    background:#fff;
    color:#7a8588;
    font-size:14px;
    font-weight:500;
    padding:0 14px;
    outline:none;
}

.search-field select:focus{
    border-color:var(--green);
    box-shadow:0 0 0 3px rgba(7,149,27,.08);
}

.search-btn{
    height:48px;
    border:0;
    border-radius:7px;
    background:var(--green);
    color:#fff;
    font-size:14px;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
}

.search-btn svg{
    width:17px;
    height:17px;
    stroke:#fff;
}

/* NEXT SECTION GAP FIX */

.home-hero-section + section{
    margin-top:35px;
}

/* TABLET */

@media(max-width:991px){
    .home-hero-section{
        min-height:auto;
        padding-bottom:40px;
    }

    .home-hero-bg{
        position:relative;
        height:380px;
    }

    .home-hero-fade{
        background:transparent;
    }

    .home-hero-wrap{
        height:auto;
        padding:40px 24px 20px;
    }

    .home-hero-content h1{
        font-size:42px;
    }

    .hero-search-box{
        position:relative;
        left:auto;
        bottom:auto;
        transform:none;
        max-width:calc(100% - 48px);
        margin:20px auto 0;
    }

    .search-form{
        grid-template-columns:1fr 1fr;
    }

    .search-btn{
        grid-column:1 / -1;
    }

    .home-hero-section + section{
        margin-top:0;
    }
}

/* MOBILE */

@media(max-width:575px){
    .home-hero-bg{
        height:280px;
    }

    .home-hero-wrap{
        padding:35px 20px 15px;
    }

    .home-hero-content h1{
        font-size:34px;
        line-height:1.18;
        letter-spacing:-1px;
    }

    .home-hero-content p{
        font-size:14px;
    }

    .home-features{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

    .hero-search-box{
        max-width:calc(100% - 40px);
        padding:20px;
    }

    .search-form{
        grid-template-columns:1fr;
    }
}

.home-container{
    max-width:1180px;
}

.service-area-section{
    padding:70px 72px 0;
    background:#fff;
}

.home-section-title{
    position:relative;
    display:inline-block;
    color:var(--green);
    font-size:13px;
    font-weight:900;
    margin-bottom:22px;
}

.home-section-title::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-10px;
    transform:translateX(-50%);
    width:32px;
    height:3px;
    background:var(--green);
    border-radius:20px;
}

.service-area-section h2{
    color:var(--dark);
    font-size:38px;
    line-height:1.2;
    font-weight:900;
    letter-spacing:-1px;
    margin-bottom:42px;
}

.service-area-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.area-card{
    background:#fff;
    border:1px solid #e5eeee;
    border-radius:15px;
    overflow:hidden;
    text-align:left;
    box-shadow:0 10px 28px rgba(16,41,47,.06);
}

.area-card img{
    width:100%;
    height:185px;
    object-fit:cover;
    display:block;
}

.area-content{
    padding:24px 26px 26px;
}

.area-content h3{
    color:var(--dark);
    font-size:24px;
    font-weight:900;
    letter-spacing:-.5px;
    margin-bottom:14px;
}

.area-content p{
    color:var(--text);
    font-size:14px;
    line-height:1.8;
    margin-bottom:22px;
}

.area-content a{
    width:150px;
    height:38px;
    border:1px solid var(--green);
    border-radius:6px;
    color:var(--green);
    text-decoration:none;
    font-size:13px;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.area-content a svg{
    width:14px;
    height:14px;
}

/* RESPONSIVE */

@media(max-width:991px){
    .service-area-section{
        padding:60px 24px 0;
    }

    .service-area-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:575px){
    .service-area-section{
        padding:50px 20px 0;
    }

    .service-area-section h2{
        font-size:30px;
    }

    .area-card img{
        height:170px;
    }
}

/* WHY CHOOSE */

.home-why-section{
    padding:58px 72px 0;
    background:#fff;
}

.home-why-section h2,
.featured-property-section h2{
    color:var(--dark);
    font-size:34px;
    line-height:1.2;
    font-weight:900;
    letter-spacing:-.8px;
    margin-bottom:34px;
}

.home-why-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
}

.home-why-card{
    height:145px;
    background:#fff;
    border:1px solid #e7eeee;
    border-radius:14px;
    padding:22px 16px 18px;
    text-align:center;
    box-shadow:0 4px 16px rgba(16,41,47,.015);
}

.home-why-icon{
    width:42px;
    height:42px;
    margin:0 auto 14px;
    border-radius:50%;
    background:#edf9f0;
    display:flex;
    align-items:center;
    justify-content:center;
}

.home-why-icon svg{
    width:22px;
    height:22px;
    stroke:#0b9f25;
    stroke-width:2;
}

.home-why-card h6{
    color:var(--dark);
    font-size:14px;
    font-weight:900;
    margin-bottom:8px;
}

.home-why-card p{
    color:var(--text);
    font-size:12.5px;
    line-height:1.5;
    margin:0;
}

/* FEATURED PROPERTIES */

.featured-property-section{
    padding:48px 72px 0;
    background:#fff;
}

.featured-property-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.property-card{
    background:#fff;
    border:1px solid #e6eeee;
    border-radius:14px;
    overflow:hidden;
    text-align:left;
    box-shadow:0 8px 24px rgba(16,41,47,.055);
}

.property-image{
    position:relative;
    height:150px;
    overflow:hidden;
}

.property-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.property-badge{
    position:absolute;
    left:12px;
    top:10px;
    height:24px;
    padding:0 10px;
    border-radius:20px;
    color:#fff;
    font-size:11px;
    font-weight:900;
    display:flex;
    align-items:center;
}

.property-badge.sale{
    background:#07951b;
}

.property-badge.rent{
    background:#7b2cff;
}

.wishlist-btn{
    position:absolute;
    right:12px;
    top:10px;
    width:30px;
    height:30px;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.9);
    display:flex;
    align-items:center;
    justify-content:center;
}

.wishlist-btn svg{
    width:16px;
    height:16px;
    stroke:#7a8588;
}

.property-content{
    padding:16px 16px 0;
}

.property-content h4{
    color:var(--green);
    font-size:18px;
    font-weight:900;
    margin-bottom:10px;
}

.property-content h4 small{
    color:#6f7c80;
    font-size:11px;
    font-weight:700;
}

.property-content h3{
    color:var(--dark);
    font-size:15px;
    font-weight:900;
    margin-bottom:10px;
}

.property-location{
    display:flex;
    align-items:center;
    gap:6px;
    color:#667277;
    font-size:12.5px;
    font-weight:600;
    margin-bottom:18px;
}

.property-location svg{
    width:14px;
    height:14px;
    stroke:var(--green);
}

.property-info{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid #edf1f1;
    margin-left:-16px;
    margin-right:-16px;
}

.property-info span{
    color:#6d787d;
    font-size:12px;
    font-weight:700;
    padding:12px 8px;
    text-align:center;
    border-right:1px solid #edf1f1;
}

.property-info span:last-child{
    border-right:0;
}

.view-all-btn{
    margin-top:28px;
    width:185px;
    height:44px;
    border-radius:7px;
    background:var(--green);
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:900;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    margin-bottom: 10px;
}

.view-all-btn svg{
    width:15px;
    height:15px;
}

/* RESPONSIVE */

@media(max-width:1200px){
    .home-why-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .featured-property-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
    .home-why-section,
    .featured-property-section{
        padding-left:20px;
        padding-right:20px;
    }

    .home-why-grid,
    .featured-property-grid{
        grid-template-columns:1fr;
    }

    .home-why-card{
        height:auto;
        min-height:145px;
    }

    .home-why-section h2,
    .featured-property-section h2{
        font-size:28px;
    }
}

/* =========================
   WHY CHOOSE US
========================= */

.home-why-section{
    padding:58px 72px 0;
    background:#fff;
}

.home-why-section h2{
    color:#10292f;
    font-size:34px;
    line-height:1.2;
    font-weight:900;
    letter-spacing:-0.8px;
    margin-bottom:34px;
}

.home-why-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
}

.home-why-card{
    background:#fff;
    border:1px solid #e8eeee;
    border-radius:14px;
    padding:24px 18px 22px;
    text-align:center;
    min-height:160px;

    box-shadow:
        0 4px 16px rgba(16,41,47,.02);
}

.home-why-icon{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#edf9f0;

    margin:0 auto 16px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.home-why-icon svg{
    width:22px;
    height:22px;
    stroke:#0b9f25;
    stroke-width:2.2;
}

.home-why-card h6{
    color:#10292f;
    font-size:14px;
    font-weight:900;
    margin-bottom:10px;
}

.home-why-card p{
    color:#667277;
    font-size:12.5px;
    line-height:1.6;
    margin:0;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .home-why-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:767px){

    .home-why-section{
        padding:55px 20px 0;
    }

    .home-why-grid{
        grid-template-columns:1fr;
    }

    .home-why-section h2{
        font-size:28px;
    }

}



