/* ==========================================================
   SYLFOW MARKET
   HERO PREMIUM
   PARTIE 1/3
   ========================================================== */

/* ==========================================================
   HERO
   ========================================================== */

.sf-hero{

    position:relative;

    overflow:hidden;

    padding:110px 0 90px;

    background:
        radial-gradient(circle at top right,#e9fff4 0%,#ffffff 45%),
        radial-gradient(circle at bottom left,#f5fff9 0%,transparent 45%),
        linear-gradient(180deg,#ffffff 0%,#f8fbf9 100%);

}

.sf-hero::before{

    content:"";

    position:absolute;

    top:-180px;

    right:-180px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(25,135,84,.05);

    filter:blur(40px);

    pointer-events:none;

}

.sf-hero::after{

    content:"";

    position:absolute;

    bottom:-200px;

    left:-180px;

    width:460px;

    height:460px;

    border-radius:50%;

    background:rgba(25,135,84,.04);

    filter:blur(60px);

    pointer-events:none;

}

.sf-container{

    position:relative;

    z-index:2;

    width:min(1380px,92%);

    margin:auto;

}

/* ==========================================================
   CONTENT
   ========================================================== */

.sf-hero-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

    gap:30px;

    height:100%;

}

/* ==========================================================
   BADGE
   ========================================================== */

.sf-hero-badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    width:max-content;

    padding:12px 22px;

    border-radius:999px;

    background:#ecfff5;

    border:1px solid rgba(25,135,84,.12);

    color:#198754;

    font-weight:700;

    font-size:.92rem;

    box-shadow:

        0 10px 25px rgba(25,135,84,.08);

}

.sf-hero-badge i{

    font-size:1rem;

}

/* ==========================================================
   TITLE
   ========================================================== */

.sf-hero-title{

    margin:0;

    font-size:clamp(3rem,5vw,5rem);

    line-height:1.05;

    font-weight:900;

    letter-spacing:-1px;

    color:#111827;

}

.sf-hero-title span{

    color:#198754;

    position:relative;

}

.sf-hero-title span::after{

    content:"";

    position:absolute;

    left:0;

    bottom:8px;

    width:100%;

    height:12px;

    background:rgba(25,135,84,.12);

    z-index:-1;

    border-radius:20px;

}

/* ==========================================================
   SUBTITLE
   ========================================================== */

.sf-hero-subtitle{

    margin:0;

    max-width:650px;

    color:#64748b;

    font-size:1.15rem;

    line-height:1.9;

}

/* ==========================================================
   ACTIONS
   ========================================================== */

.sf-hero-actions{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

}

.sf-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    min-height:60px;

    padding:0 30px;

    border-radius:18px;

    text-decoration:none;

    font-weight:700;

    transition:

        transform .30s ease,

        box-shadow .30s ease,

        background .30s ease;

}

.sf-btn-primary{

    background:#198754;

    color:#fff;

    box-shadow:

        0 18px 40px rgba(25,135,84,.22);

}

.sf-btn-primary:hover{

    color:#fff;

    background:#157347;

    transform:translateY(-4px);

}

.sf-btn-secondary{

    background:#fff;

    color:#111827;

    border:1px solid #e5e7eb;

}

.sf-btn-secondary:hover{

    color:#111827;

    transform:translateY(-4px);

    box-shadow:

        0 18px 40px rgba(15,23,42,.08);

}

/* ==========================================================
   SEARCH BAR
   ========================================================== */

.sf-search{

    margin-top:8px;

    width:100%;

}

.sf-search-wrapper{

    display:flex;

    align-items:center;

    width:100%;

    min-height:82px;

    padding:10px;

    border-radius:24px;

    background:#ffffff;

    border:1px solid rgba(15,23,42,.06);

    box-shadow:
        0 25px 60px rgba(15,23,42,.08);

    gap:6px;

}

.sf-search-item{

    display:flex;

    align-items:center;

    flex:1;

    gap:14px;

    padding:0 18px;

    min-height:62px;

}

.sf-search-item i{

    font-size:1.15rem;

    color:#198754;

    flex-shrink:0;

}

.sf-search-item input,

.sf-search-item select{

    width:100%;

    border:none;

    outline:none;

    background:transparent;

    font-size:1rem;

    color:#111827;

}

.sf-search-item input::placeholder{

    color:#94a3b8;

}

.sf-search-item select{

    appearance:none;

    cursor:pointer;

}

.sf-search-divider{

    width:1px;

    align-self:stretch;

    background:#edf2f7;

}

.sf-search-button{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    height:62px;

    padding:0 34px;

    border:none;

    border-radius:18px;

    background:#198754;

    color:#ffffff;

    font-weight:700;

    transition:.30s;

    white-space:nowrap;

    flex-shrink:0;

}

.sf-search-button:hover{

    background:#157347;

    transform:translateY(-2px);

    box-shadow:
        0 18px 35px rgba(25,135,84,.25);

}


/* ==========================================================
   HERO STATS
   ========================================================== */

.sf-hero-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

    margin-top:20px;

}

.sf-stat-card{

    display:flex;

    align-items:center;

    gap:16px;

    padding:22px;

    border-radius:22px;

    background:#ffffff;

    border:1px solid rgba(15,23,42,.05);

    box-shadow:
        0 15px 35px rgba(15,23,42,.05);

    transition:
        transform .30s ease,
        box-shadow .30s ease;

}

.sf-stat-card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 28px 55px rgba(15,23,42,.10);

}

.sf-stat-icon{

    width:58px;

    height:58px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#ecfff5;

    color:#198754;

    font-size:1.4rem;

    flex-shrink:0;

}

.sf-stat-info{

    display:flex;

    flex-direction:column;

}

.sf-stat-info h3{

    margin:0;

    font-size:1.45rem;

    font-weight:800;

    color:#111827;

}

.sf-stat-info p{

    margin:4px 0 0;

    color:#64748b;

    font-size:.92rem;

}


/* ==========================================================
   HERO IMAGE
   ========================================================== */

.sf-hero-image-container{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:720px;

    height:100%;

}

.sf-hero-image{

    width:100%;

    max-width:860px;

    height:auto;

    display:block;

    border-radius:34px;

    filter:
        drop-shadow(0 45px 90px rgba(15,23,42,.16));

    transition:
        transform .45s ease,
        filter .45s ease;

    animation:
        sfHeroFloat 6s ease-in-out infinite;

}

.sf-hero-image:hover{

    transform:
        translateY(-10px)
        scale(1.03);

    filter:
        drop-shadow(0 55px 110px rgba(15,23,42,.22));

}

/* ==========================================================
   HERO ANIMATION
   ========================================================== */

@keyframes sfHeroFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-14px);
    }

    100%{
        transform:translateY(0);
    }

}


/* ==========================================================
   LARGE DESKTOP
   ========================================================== */

@media (min-width:1400px){

    .sf-hero{

        padding:130px 0 100px;

    }

    .sf-container{

        width:min(1480px,92%);

    }

    .sf-hero-content{

        padding-right:50px;

    }

    .sf-hero-image{

        max-width:940px;

    }

}


/* ==========================================================
   DESKTOP
   ========================================================== */

@media (max-width:1199px){

    .sf-hero{

        padding:90px 0;

    }

    .sf-hero-title{

        font-size:3.5rem;

    }

    .sf-search-wrapper{

        flex-wrap:wrap;

        padding:16px;

        gap:14px;

    }

    .sf-search-divider{

        display:none;

    }

    .sf-search-item{

        flex:1 1 calc(50% - 10px);

        min-width:260px;

        border:1px solid #eef2f7;

        border-radius:16px;

    }

    .sf-search-button{

        width:100%;

        height:60px;

    }

    .sf-hero-stats{

        grid-template-columns:repeat(2,1fr);

    }

    .sf-hero-image-container{

        min-height:620px;

    }

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width:991px){

    .sf-hero{

        padding:70px 0;

        text-align:center;

    }

    .sf-hero-content{

        align-items:center;

    }

    .sf-hero-subtitle{

        max-width:100%;

    }

    .sf-hero-actions{

        justify-content:center;

    }

    .sf-search{

        width:100%;

    }

    .sf-search-wrapper{

        flex-direction:column;

        align-items:stretch;

    }

    .sf-search-item{

        width:100%;

        min-width:100%;

    }

    .sf-search-button{

        width:100%;

    }

    .sf-hero-stats{

        width:100%;

        grid-template-columns:repeat(2,1fr);

    }

    .sf-hero-image-container{

        min-height:auto;

        margin-top:40px;

    }

    .sf-hero-image{

        max-width:700px;

    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width:767px){

    .sf-hero{

        padding:55px 0;

    }

    .sf-hero-title{

        font-size:2.5rem;

    }

    .sf-hero-subtitle{

        font-size:1rem;

        line-height:1.8;

    }

    .sf-btn{

        width:100%;

    }

    .sf-hero-actions{

        width:100%;

        flex-direction:column;

    }

    .sf-hero-stats{

        grid-template-columns:1fr;

    }

    .sf-stat-card{

        padding:18px;

    }

    .sf-search-wrapper{

        border-radius:18px;

    }

    .sf-search-item{

        min-height:56px;

        padding:0 14px;

    }

    .sf-search-button{

        height:56px;

    }

    .sf-hero-image{

        max-width:100%;

        border-radius:22px;

    }

}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width:480px){

    .sf-hero-title{

        font-size:2rem;

    }

    .sf-hero-badge{

        font-size:.82rem;

        padding:10px 16px;

    }

    .sf-stat-info h3{

        font-size:1.2rem;

    }

}