/*
==========================================================
Homepage V3
==========================================================
*/

/* ==========================
   Hero
========================== */

.hero-section{
    padding:30px 0 20px;
}

.hero-card{
    background:#fff;
    border:1px solid #ddd;
    border-radius:16px;
    padding:40px;
    box-shadow:0 2px 12px rgba(0,0,0,.06);
}

.hero-row{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
}

.hero-content{
    padding-right:40px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#5c5040;
    color:#fff;
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-title{
    font-size:56px;
    line-height:1.08;
    font-weight:800;
    margin:0 0 20px;
    color:#222;
    max-width:520px;
}

.hero-subtitle{
    font-size:18px;
    line-height:1.7;
    color:#555;
    margin-bottom:28px;
    max-width:520px;
}

.hero-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:32px;
}

.hero-primary-btn{
    padding:14px 28px;
    font-weight:700;
}

.hero-secondary-btn{
    padding:14px 28px;
    font-weight:600;
}

.hero-stats{
    display:flex;
    flex-wrap:wrap;
    gap:28px;
}

.hero-stat{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.hero-stat strong{
    font-size:18px;
    color:#222;
}

.hero-stat span{
    font-size:13px;
    color:#666;
}

.hero-image-wrapper{
    background:#f7f7f7;
    border-radius:14px;
    overflow:hidden;
}

.hero-image{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
}

/* ==========================
   Trust Bar
========================== */

.trust-bar-section{
    padding:10px 0 35px;
}

.trust-bar{
    background:#fff;
    border:1px solid #ddd;
    border-radius:14px;
    padding:28px 24px;
    box-shadow:0 2px 10px rgba(0,0,0,.04);
}

.trust-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:20px;
}

.trust-icon{
    width:44px;
    height:44px;
    border-radius:12px;
    background:#f0ad4e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;
}

.trust-content strong{
    display:block;
    margin-bottom:6px;
    color:#222;
}

.trust-content p{
    margin:0;
    font-size:13px;
    line-height:1.5;
    color:#666;
}

/* ==========================
   Featured Section
========================== */

.featured-section{
    padding:10px 0 50px;
}

.section-header{
    margin-bottom:35px;
}

.section-header h2{
    font-size:36px;
    font-weight:800;
    margin-bottom:10px;
    color:#222;
}

.section-header p{
    color:#666;
    font-size:16px;
}

.featured-more{
    margin-top:30px;
}

/* ==========================
   Responsive
========================== */

@media (max-width:991px){

    .hero-card{
        padding:28px 22px;
    }

    .hero-row{
        display:block;
    }

    .hero-image-col{
        margin-top:25px;
    }

    .hero-title{
        font-size:36px;
    }

    .hero-image{
        height:320px;
    }
}

@media (max-width:767px){

    .hero-section{
        padding-top:15px;
    }

    .hero-card{
        padding:22px 18px;
        border-radius:12px;
    }

    .hero-title{
        font-size:32px;
        text-align:center;
    }

    .hero-subtitle{
        text-align:center;
        font-size:16px;
    }

    .hero-badge{
        display:flex;
        justify-content:center;
        width:100%;
    }

    .hero-actions{
        flex-direction:column;
    }

    .hero-actions .btn{
        width:100%;
    }

    .hero-stats{
        justify-content:center;
        text-align:center;
        gap:18px;
    }

    .hero-image{
        height:240px;
    }

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

@media (min-width: 1200px){

    .hero-card{
        padding:50px 55px;
    }

    .hero-image{
        height:480px;
    }

    .hero-content{
        display:flex;
        flex-direction:column;
        justify-content:center;
        min-height:480px;
    }
}
