/* ===================================
   FEATURES HERO
=================================== */

.features-hero{
    padding:140px 0 100px;
    background:#f8fbf8;
    overflow:hidden;
}

.features-hero-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.features-hero-content{
    flex:1;
}

.hero-badge{
    display:inline-block;
    background:#e8f5e9;
    color:#2e7d32;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:20px;
}

.features-hero-content h1{
    font-size:48px;
    line-height:1.15;
    font-weight:800;
    color:#111;
    margin-bottom:25px;
}

.features-hero-content p{
    font-size:16px;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:50px;
}

.hero-btn-primary{
    background:#2e7d32;
    color:#fff;
    text-decoration:none;
    padding:16px 30px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.hero-btn-primary:hover{
    transform:translateY(-3px);
}

.hero-btn-secondary{
    background:#fff;
    color:#111;
    text-decoration:none;
    padding:16px 30px;
    border-radius:12px;
    border:1px solid #ddd;
    font-weight:600;
}

.hero-mini-stats{
    display:flex;
    gap:40px;
}

.mini-stat h3{
    font-size:32px;
    color:#2e7d32;
    margin-bottom:6px;
}

.mini-stat span{
    color:#666;
    font-size:14px;
}

.features-hero-image{
    flex:1;
}

.hero-image-box{
    position:relative;
}

.hero-image-box img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.floating-card{
    position:absolute;
    background:#fff;
    padding:18px 22px;
    border-radius:16px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    animation:floatCard 3s ease-in-out infinite;
}

.floating-card strong{
    display:block;
    margin-bottom:5px;
}

.floating-card span{
    color:#666;
    font-size:14px;
}

.card-one{
    top:40px;
    right:-20px;
}

.card-two{
    left:-20px;
    bottom:50px;
}

@keyframes floatCard{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}
@media(max-width:991px){

    .features-hero{
        padding:120px 0 80px;
    }

    .features-hero-wrapper{
        gap:40px;
    }

    .features-hero-content h1{
        font-size:48px;
    }

    .features-hero-content p{
        font-size:16px;
    }

    .hero-image-box img{
        height:500px;
    }

    .hero-mini-stats{
        gap:20px;
    }

}@media(max-width:767px){

    .features-hero{
        padding:110px 0 70px;
    }

    .features-hero-wrapper{
        flex-direction:column;
        gap:35px;
    }

    .features-hero-content{
        order:1;
    }

    .features-hero-image{
        order:2;
        width:100%;
    }

    .features-hero-content h1{
        font-size:36px;
        line-height:1.2;
    }

    .features-hero-content p{
        font-size:15px;
        margin-bottom:25px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:12px;
        margin-bottom:35px;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
        width:100%;
        text-align:center;
    }

    .hero-mini-stats{
        justify-content:space-between;
        gap:10px;
    }

    .mini-stat h3{
        font-size:22px;
    }

    .hero-image-box img{
        height:320px;
        border-radius:20px;
    }

    .floating-card{
        padding:12px 15px;
    }

    .floating-card span{
        font-size:12px;
    }

    .card-one{
        top:15px;
        right:10px;
    }

    .card-two{
        left:10px;
        bottom:15px;
    }

}

/* ===================================
   FEATURE HIGHLIGHTS
=================================== */

.feature-highlights{
    padding:30px 0;
    background:#ffffff;
}

.feature-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.feature-header h2{
    font-size:52px;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.feature-header p{
    font-size:16px;
    color:#666;
    line-height:1.8;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.feature-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:28px;
    overflow:hidden;
    transition:.4s;
    position:relative;
}

.feature-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#2e7d32;
    transform:scaleX(0);
    transition:.4s;
}

.feature-card:hover::before{
    transform:scaleX(1);
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.feature-image{
    overflow:hidden;
}

.feature-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.6s;
}

.feature-card:hover .feature-image img{
    transform:scale(1.08);
}

.feature-icon{
    width:75px;
    height:75px;
    background:#2e7d32;
    color:#fff;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin:25px;
    transition:.4s;
}

.feature-card:hover .feature-icon{
    transform:rotate(10deg);
}

.feature-card h3{
    font-size:24px;
    margin:0 25px 15px;
    color:#111;
}

.feature-card p{
    color:#666;
    line-height:1.8;
    margin:0 25px 30px;
}
@media(max-width:991px){

    .feature-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .feature-header h2{
        font-size:40px;
    }

    .feature-card h3{
        font-size:24px;
    }

}
@media(max-width:767px){

    .feature-highlights{
        padding:20px 0;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .feature-header h2{
        font-size:30px;
    }

    .feature-header p{
        font-size:15px;
    }

    .feature-image img{
        height:220px;
    }

    .feature-card h3{
        font-size:22px;
    }

}
.feature-showcase{
    padding:30px 0;
    background:#f8fbf8;
}

.showcase-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.showcase-header h2{
    font-size:52px;
    margin-bottom:20px;
}

.showcase-tabs{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:60px;
    flex-wrap:wrap;
}

.showcase-tab{
    border:none;
    background:#fff;
    padding:14px 25px;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.showcase-tab.active{
    background:#2e7d32;
    color:#fff;
}

.showcase-content{
    display:none;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    animation:fadeIn .5s ease;
}

.showcase-content.active{
    display:grid;
}

.showcase-left h3{
    font-size:24px;
    line-height:1.3;
    margin-bottom:20px;
}

.showcase-left p{
    color:#666;
    line-height:1.8;
    font-size:16px;
    margin-bottom:25px;
}

.showcase-left ul{
    margin-bottom:30px;
}

.showcase-left li{
    margin-bottom:12px;
}

.showcase-right img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:28px;
}

.showcase-btn{
    background:#2e7d32;
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:12px;
    display:inline-block;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@media(max-width:991px){

    .showcase-content{
        grid-template-columns:1fr;
        gap:35px;
    }

    .showcase-left h3{
        font-size:32px;
    }

}

@media(max-width:767px){

    .feature-showcase{
        padding:20px 0;
    }

    .showcase-tabs{
        justify-content:flex-start;
        overflow-x:auto;
        flex-wrap:nowrap;
        padding-bottom:10px;
    }

    .showcase-tab{
        flex-shrink:0;
    }

    .showcase-right img{
        height:280px;
    }

    .showcase-left h3{
        font-size:26px;
    }

}

/* ===================================
   WHY IDF
=================================== */

.why-idf-section{
    padding:30px 0;
    background:#fff;
}

.why-idf-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.why-idf-image{
    position:relative;
}

.why-idf-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:30px;
}

.experience-badge{
    position:absolute;
    bottom:30px;
    right:-20px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.experience-badge strong{
    display:block;
    font-size:38px;
    color:#2e7d32;
}

.experience-badge span{
    color:#666;
    font-size:14px;
}

.why-idf-content h2{
    font-size:52px;
    margin:20px 0;
    line-height:1.15;
}

.why-idf-content p{
    color:#666;
    font-size:16px;
    line-height:1.8;
    margin-bottom:30px;
}

.benefits-grid{
    display:grid;
    gap:20px;
    margin-bottom:35px;
}

.benefit-item{
    display:flex;
    gap:18px;
    padding:20px;
    border-radius:18px;
    background:#f8fbf8;
    transition:.3s;
}

.benefit-item:hover{
    transform:translateX(8px);
}

.benefit-icon{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#2e7d32;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    flex-shrink:0;
}

.benefit-item h4{
    margin-bottom:6px;
}

.benefit-item p{
    margin:0;
    font-size:14px;
}

.why-btn{
    display:inline-block;
    padding:16px 30px;
    background:#2e7d32;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    font-weight:600;
}
@media(max-width:991px){

    .why-idf-wrapper{
        grid-template-columns:1fr;
    }

    .why-idf-content h2{
        font-size:40px;
    }

    .why-idf-image img{
        height:500px;
    }

}

@media(max-width:767px){

    .why-idf-section{
        padding:20px 0;
    }

    .why-idf-content h2{
        font-size:30px;
    }

    .why-idf-image img{
        height:320px;
    }

    .experience-badge{
        right:10px;
        bottom:10px;
        padding:15px;
    }

}
/* ===================================
   SOLUTION PROCESS
=================================== */

.solution-process{
    padding:30px 0;
    background:#f8fbf8;
}

.process-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.process-header h2{
    font-size:52px;
    margin:20px 0;
    font-weight:800;
}

.process-header p{
    color:#666;
    font-size:16px;
    line-height:1.8;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    position:relative;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.step-number{
    position:absolute;
    top:15px;
    right:15px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:#2e7d32;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.process-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.process-card h3{
    font-size:24px;
    margin:25px 25px 15px;
}

.process-card p{
    margin:0 25px 25px;
    color:#666;
    line-height:1.8;
}
/* Tablet */

@media(max-width:991px){

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .process-header h2{
        font-size:40px;
    }

}

/* Mobile */

@media(max-width:767px){

    .solution-process{
        padding:20px 0;
    }

    .process-grid{
        grid-template-columns:1fr;
    }

    .process-header h2{
        font-size:30px;
    }

    .process-card img{
        height:200px;
    }

}
/* ===================================
   FEATURES CTA
=================================== */

.features-cta{
    position:relative;
    padding:140px 0;
    background:url('../images/features/cta-bg.jpg')
    center center/cover no-repeat;
    overflow:hidden;
}

.cta-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.60);
}

.cta-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:950px;
    margin:auto;
}

.cta-content .section-tag{
    color:#fff;
    background:rgba(255,255,255,.15);
    padding:10px 18px;
    border-radius:40px;
    display:inline-block;
    margin-bottom:25px;
}

.cta-content h2{
    font-size:42px;
    color:#fff;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:800;
}

.cta-content p{
    color:rgba(255,255,255,.85);
    font-size:16px;
    line-height:1.8;
    max-width:800px;
    margin:0 auto 50px;
}

.cta-stats{
    display:flex;
    justify-content:center;
    gap:70px;
    margin-bottom:50px;
}

.cta-stat h3{
    color:#fff;
    font-size:46px;
    margin-bottom:8px;
}

.cta-stat span{
    color:rgba(255,255,255,.75);
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.cta-btn-primary{
    background:#2e7d32;
    color:#fff;
    padding:18px 35px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.cta-btn-primary:hover{
    transform:translateY(-4px);
}

.cta-btn-secondary{
    background:#fff;
    color:#111;
    padding:18px 35px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.cta-btn-secondary:hover{
    transform:translateY(-4px);
}
@media(max-width:991px){

    .cta-content h2{
        font-size:48px;
    }

    .cta-stats{
        gap:35px;
    }

}
@media(max-width:767px){

    .features-cta{
        padding:80px 0;
    }

    .cta-content h2{
        font-size:34px;
    }

    .cta-content p{
        font-size:15px;
    }

    .cta-stats{
        flex-direction:column;
        gap:25px;
        margin-bottom:35px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta-btn-primary,
    .cta-btn-secondary{
        width:100%;
    }

}

.feature-header h2,
.showcase-header h2,
.why-idf-content h2,
.process-header h2,
.cta-content h2{
    font-size:42px;
    line-height:1.2;
    font-weight:800;
}
@media(max-width:767px){

    .features-hero-content h1{
        font-size:34px;
    }

    .feature-header h2,
    .showcase-header h2,
    .why-idf-content h2,
    .process-header h2,
    .cta-content h2{
        font-size:28px;
    }

    .feature-card h3,
    .showcase-left h3{
        font-size:22px;
    }

    .features-hero-content p,
    .feature-header p,
    .showcase-left p,
    .why-idf-content p,
    .process-header p,
    .cta-content p{
        font-size:15px;
    }

}