/*==========================================================
WHY GLORE FASHION
==========================================================*/

.gf-why{

    position:relative;

    padding:20px 0 90px;

    overflow:hidden;

    background:
    radial-gradient(circle at top right,
    rgba(212,175,55,.10) 0%,
    transparent 28%),

    radial-gradient(circle at bottom left,
    rgba(212,175,55,.08) 0%,
    transparent 32%),

    #ffffff;

}


/*==========================================================
HEADING
==========================================================*/

.gf-why-heading{

    max-width:860px;

    margin:0 auto 50px;

    text-align:center;

}

.gf-why-label{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:#FFF7DE;

    color:#C79A12;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:24px;

}

.gf-why-heading h2{

    font-size:68px;

    line-height:1.05;

    font-weight:800;

    color:#111;

    margin-bottom:24px;

}

.gf-why-heading h2 span{

    display:block;

    color:#D4AF37;

}

.gf-why-heading p{

    max-width:760px;

    margin:auto;

    font-size:20px;

    line-height:1.8;

    color:#666;

}


/*==========================================================
GRID
==========================================================*/

.gf-why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    align-items:stretch;

}


/*==========================================================
WHY CARD
==========================================================*/

.gf-why-card{

    position:relative;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(20px);

    border-radius:30px;

    padding:38px 34px;

    overflow:hidden;

    border:1px solid rgba(212,175,55,.14);

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.45s cubic-bezier(.2,.8,.2,1);

}

.gf-why-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 28px 60px rgba(0,0,0,.10);

}


/*==========================================================
TOP GOLD ACCENT
==========================================================*/

.gf-why-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        #D4AF37,
        #FFD76A,
        #D4AF37
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s ease;

}

.gf-why-card:hover::before{

    transform:scaleX(1);

}


/*==========================================================
ICON
==========================================================*/

.gf-why-icon{

    width:72px;

    height:72px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    background:linear-gradient(
        135deg,
        #FFF9E8,
        #FFE49B
    );

    box-shadow:
    0 12px 30px rgba(212,175,55,.25);

    margin-bottom:28px;

    transition:.4s ease;

}

.gf-why-card:hover .gf-why-icon{

    transform:rotate(-10deg) scale(1.08);

}


/*==========================================================
CONTENT
==========================================================*/

.gf-why-content{

    position:relative;

    z-index:5;

}

.gf-why-title{

    font-size:28px;

    line-height:1.2;

    font-weight:800;

    color:#111;

    margin-bottom:16px;

    transition:.35s ease;

}

.gf-why-text{

    font-size:17px;

    line-height:1.8;

    color:#666;

    margin-bottom:30px;

}


/*==========================================================
ARROW
==========================================================*/

.gf-why-arrow{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:42px;

    height:42px;

    border-radius:50%;

    background:#FFF7E0;

    color:#C79A12;

    font-size:22px;

    font-weight:700;

    transition:.35s ease;

}

.gf-why-card:hover .gf-why-arrow{

    transform:translateX(8px);

    background:#D4AF37;

    color:#fff;

}


/*==========================================================
GOLD GLOW
==========================================================*/

.gf-why-card::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    right:-70px;

    top:-70px;

    border-radius:50%;

    background:radial-gradient(circle,
        rgba(212,175,55,.16) 0%,
        rgba(212,175,55,.05) 45%,
        transparent 75%);

    opacity:0;

    transition:.45s ease;

    pointer-events:none;

}

.gf-why-card:hover::after{

    opacity:1;

    transform:scale(1.2);

}


/*==========================================================
SUBTLE SHINE
==========================================================*/

.gf-why-card{

    isolation:isolate;

}

.gf-why-card .gf-why-content{

    position:relative;

    z-index:2;

}

.gf-why-card::before{

    z-index:3;

}

.gf-why-card:hover .gf-why-title{

    color:#C79A12;

}


/*==========================================================
TABLET
==========================================================*/

@media (max-width:1024px){

.gf-why{

    padding:70px 0;

}

.gf-why-heading{

    margin-bottom:50px;

}

.gf-why-heading h2{

    font-size:50px;

}

.gf-why-heading p{

    font-size:18px;

}

.gf-why-grid{

    grid-template-columns:repeat(2,1fr);

    gap:24px;

}

.gf-why-card{

    padding:30px 28px;

}

.gf-why-icon{

    width:64px;

    height:64px;

    font-size:30px;

}

.gf-why-title{

    font-size:24px;

}

.gf-why-text{

    font-size:16px;

}

}


/*==========================================================
MOBILE
==========================================================*/

@media (max-width:767px){

.gf-why{

    padding:60px 0;

}

.gf-why-heading{

    margin-bottom:35px;

    padding:0 18px;

}

.gf-why-heading h2{

    font-size:34px;

}

.gf-why-heading p{

    font-size:15px;

    line-height:1.7;

}

.gf-why-grid{

    grid-template-columns:1fr;

    gap:20px;

}

.gf-why-card{

    padding:28px 24px;

    border-radius:22px;

}

.gf-why-icon{

    width:58px;

    height:58px;

    font-size:28px;

    margin-bottom:20px;

}

.gf-why-title{

    font-size:22px;

}

.gf-why-text{

    font-size:15px;

    line-height:1.7;

    margin-bottom:20px;

}

.gf-why-arrow{

    width:38px;

    height:38px;

    font-size:20px;

}

}



