/*==================================================
FEATURED PROPERTIES
==================================================*/

.featured-properties{

    padding:110px 0;

    background:#F9F7F3;

    overflow:hidden;

}

.container{

    width:min(1500px,92%);

    margin:auto;

}

/*==================================================
SECTION HEADER
==================================================*/

.section-header{

    display:flex;

    justify-content:space-between;

    align-items:end;

    margin-bottom:50px;

}

.section-subtitle{

    display:block;

    color:#C89255;

    font-size:13px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.section-title{

    font-size:42px;

    font-family:'Cormorant Garamond',serif;

    color:#111;

}

.view-all{

    display:flex;

    align-items:center;

    gap:10px;

    color:#111;

    font-weight:600;

    transition:.3s;

}

.view-all:hover{

    color:#C89255;

}

/*==================================================
SLIDER
==================================================*/

.featured-slider{

    position:relative;

}

.featured-track{

    display:flex;

    gap:25px;

    overflow:hidden;

    scroll-behavior:smooth;

}

/*==================================================
CARD
==================================================*/

.property-card{

    min-width:calc((100% - 75px)/4);

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    flex-shrink:0;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.property-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

/*==================================================
IMAGE
==================================================*/

.property-image{

    position:relative;

    overflow:hidden;

}

.property-image img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.6s;

}

.property-card:hover img{

    transform:scale(1.08);

}

/*==================================================
LOCATION
==================================================*/

.property-location{

    position:absolute;

    top:18px;

    left:18px;

    background:rgba(0,0,0,.70);

    color:#fff;

    padding:8px 14px;

    border-radius:30px;

    font-size:12px;

    display:flex;

    gap:8px;

    align-items:center;

}

/*==================================================
BODY
==================================================*/

.property-content{

    padding:24px;

}

.property-title{

    font-size:24px;

    font-family:'Cormorant Garamond',serif;

    margin-bottom:8px;

    color:#111;

}

.property-address{

    color:#777;

    font-size:14px;

    margin-bottom:22px;

}

/*==================================================
INFO
==================================================*/

.property-info{

    display:flex;

    justify-content:space-between;

    margin-bottom:22px;

    font-size:14px;

    color:#666;

}

.property-info span{

    display:flex;

    align-items:center;

    gap:6px;

}

/*==================================================
PRICE
==================================================*/

.property-price{

    font-size:28px;

    color:#111;

    font-weight:700;

}

/*==================================================
ARROWS
==================================================*/

.slider-btn{

    position:absolute;

    top:40%;

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:#fff;

    cursor:pointer;

    font-size:26px;

    box-shadow:0 10px 30px rgba(0,0,0,.10);

    z-index:5;

    transition:.3s;

}

.slider-btn:hover{

    background:#C89255;

    color:#fff;

}

.slider-btn.prev{

    left:-26px;

}

.slider-btn.next{

    right:-26px;

}

/*==================================================
DOTS
==================================================*/

.slider-pagination{

    display:flex;

    justify-content:center;

    gap:10px;

    margin-top:40px;

}

.slider-pagination button{

    width:10px;

    height:10px;

    border:none;

    border-radius:50%;

    background:#d5d5d5;

    cursor:pointer;

}

.slider-pagination button.active{

    width:34px;

    border-radius:30px;

    background:#C89255;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

    .property-card{

        min-width:calc((100% - 25px)/2);

    }

}

@media(max-width:768px){

    .section-header{

        flex-direction:column;

        align-items:flex-start;

        gap:20px;

    }

    .property-card{

        min-width:100%;

    }

    .slider-btn{

        display:none;

    }

}