/* ==========================
Hero Slider
========================== */

.fc-slider{
    position:relative;
    width:100%;
    height:650px;
    overflow:hidden;
}

.fc-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity .8s ease;
}

.fc-slide.active{
    opacity:1;
    z-index:2;
}

.fc-slide img{
    width:100%;
    height:650px;
    object-fit:cover;
}

.fc-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.fc-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    max-width:600px;
    color:#fff;
    z-index:5;
}

.fc-content span{
    display:inline-block;
    background:#d4af37;
    color:#111;
    padding:10px 20px;
    border-radius:40px;
    font-weight:700;
    margin-bottom:20px;
}

.fc-content h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:20px;
}

.fc-content p{
    font-size:22px;
    line-height:1.7;
    margin-bottom:35px;
}

.fc-btn{
    display:inline-block;
    padding:16px 35px;
    background:#d4af37;
    color:#111;
    text-decoration:none;
    border-radius:40px;
    font-weight:700;
}

.fc-btn:hover{
    background:#fff;
}

@media(max-width:991px){

.fc-slider,
.fc-slide img{
height:500px;
}

.fc-content h1{
font-size:42px;
}

.fc-content p{
font-size:18px;
}

}

@media(max-width:768px){

.fc-slider,
.fc-slide img{
height:420px;
}

.fc-content{
left:20px;
right:20px;
max-width:100%;
}

.fc-content h1{
font-size:32px;
}

.fc-content p{
font-size:16px;
}

}
/*==============================
CUSTOMER REVIEWS
==============================*/

.fc-reviews{
    padding:90px 0;
    background:#fff7f8;
}

.fc-review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.fc-review-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.fc-review-card:hover{
    transform:translateY(-10px);
}

.fc-review-card img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
}

.fc-review-card h3{
    font-size:22px;
    color:#222;
    margin-bottom:10px;
}

.stars{
    color:#D4AF37;
    font-size:22px;
    margin-bottom:15px;
}

.fc-review-card p{
    color:#666;
    line-height:1.8;
}