/*==================================================
WHY PREMIUM
==================================================*/

.whyPremium{

    padding:110px 0;

    background:linear-gradient(180deg,#fcfaf7 0%,#ffffff 100%);

    position:relative;

    overflow:hidden;

}

.whyPremium::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:rgba(139,26,26,.03);

    border-radius:50%;

    top:-250px;

    right:-220px;

}

.whyPremium::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    background:rgba(201,158,73,.05);

    border-radius:50%;

    bottom:-170px;

    left:-170px;

}



/*==================================================
HEADER
==================================================*/

.whyHeader{

    max-width:860px;

    margin:auto auto 70px;

}

.whyBadge{

    display:inline-block;

    padding:10px 28px;

    border:1px solid #dcc39a;

    border-radius:50px;

    color:#8B1A1A;

    letter-spacing:3px;

    font-size:12px;

    font-weight:700;

    margin-bottom:20px;

    background:#fff;

}

.whyHeader h2{

    font-family:"Playfair Display",serif;

    font-size:56px;

    line-height:1.18;

    color:#111;

    margin-bottom:20px;

}

.whyHeader h2 span{

    color:#8B1A1A;

    font-style:italic;

}

.whyHeader p{

    max-width:760px;

    margin:auto;

    color:#666;

    font-size:17px;

    line-height:1.9;

}



/*==================================================
CARD
==================================================*/

.featureBox{

    background:#fff;

    border:1px solid #ecdcc3;

    border-radius:18px;

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:22px;

    height:100%;

    position:relative;

    overflow:hidden;

    transition:.35s;

    box-shadow:

    0 10px 25px rgba(0,0,0,.04);

}

.featureBox::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:0;

    background:

    linear-gradient(180deg,#caa04b,#8B1A1A);

    transition:.35s;

}

.featureBox:hover::before{

    height:100%;

}

.featureBox:hover{

    transform:translateY(-8px);

    border-color:#d6b36c;

    box-shadow:

    0 18px 40px rgba(0,0,0,.09);

}



/*==================================================
ICON
==================================================*/

.featureIcon{

    width:56px;

    height:56px;

    min-width:56px;

    border-radius:16px;

    background:

    linear-gradient(135deg,#9a1c1c,#711313);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:22px;

    transition:.35s;

    box-shadow:

    0 10px 20px rgba(139,26,26,.20);

}

.featureBox:hover .featureIcon{

    transform:rotate(8deg) scale(1.08);

}



/*==================================================
TEXT
==================================================*/

.featureContent{

    flex:1;

}

.featureContent h5{

    font-size:12px;

    color:#c49534;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:8px;

    font-weight:700;

}

.featureContent p{

    margin:0;

    color:#444;

    font-size:15px;

    line-height:1.75;

}



/*==================================================
HOVER GLOW
==================================================*/

.featureBox::after{

    content:"";

    position:absolute;

    right:-60px;

    top:-60px;

    width:160px;

    height:160px;

    background:rgba(214,179,108,.12);

    border-radius:50%;

    opacity:0;

    transition:.4s;

}

.featureBox:hover::after{

    opacity:1;

}



/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.whyPremium{

padding:90px 0;

}

.whyHeader h2{

font-size:42px;

}

}

@media(max-width:768px){

.whyPremium{

padding:70px 0;

}

.whyHeader{

margin-bottom:45px;

}

.whyHeader h2{

font-size:34px;

}

.featureBox{

padding:18px;

gap:14px;

}

.featureIcon{

width:50px;

height:50px;

min-width:50px;

font-size:18px;

border-radius:14px;

}

.featureContent h5{

font-size:11px;

}

.featureContent p{

font-size:14px;

line-height:1.6;

}

}

@media(max-width:576px){

.whyHeader h2{

font-size:28px;

}

.whyHeader p{

font-size:15px;

}

.featureBox{

padding:16px;

}

}