
/* =========================
MODERN FOOTER
========================= */

.modern-footer{

    margin-top:80px;

    padding:0 18px 30px;
}

/* WRAPPER */

.footer-wrapper{

    max-width:1200px;

    margin:auto;

    background:linear-gradient(
        135deg,
        #ffffff,
        #f8f5ff
    );

    border:1px solid #ece8ff;

    border-radius:36px;

    overflow:hidden;

    box-shadow:
    0 10px 40px rgba(109,40,217,0.05);
}

/* =========================
TOP
========================= */

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

    padding:55px;
}

/* =========================
BRAND
========================= */

.footer-logo{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:22px;
}

.footer-logo-icon{

    width:62px;

    height:62px;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        #7c3aed,
        #6d28d9
    );

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    color:white;

    box-shadow:
    0 10px 25px rgba(109,40,217,0.2);
}

.footer-brand h2{

    font-size:32px;

    color:#111827;

    font-family:'Poppins',sans-serif;

    line-height:1.2;
}

.footer-brand p{

    font-size:16px;

    line-height:1.9;

    color:#64748b;

    max-width:430px;

    margin-bottom:24px;
}

/* TAG */

.footer-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#f3e8ff;

    color:#6d28d9;

    padding:14px 20px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;
}

/* =========================
COLUMNS
========================= */

.footer-column h3{

    font-size:19px;

    margin-bottom:22px;

    color:#111827;

    font-family:'Poppins',sans-serif;
}

.footer-column{

    display:flex;

    flex-direction:column;
}

.footer-column a{

    text-decoration:none;

    color:#64748b;

    margin-bottom:16px;

    transition:0.3s ease;

    font-size:15px;

    width:fit-content;

    position:relative;
}

.footer-column a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-3px;

    width:0;

    height:2px;

    background:#6d28d9;

    transition:0.3s ease;
}

.footer-column a:hover{

    color:#6d28d9;
}

.footer-column a:hover::after{

    width:100%;
}

/* =========================
BOTTOM
========================= */

.footer-bottom{

    padding:24px;

    border-top:1px solid #ede9fe;

    text-align:center;

    background:white;
}

.footer-bottom p{

    color:#94a3b8;

    font-size:14px;

    line-height:1.8;
}

/* =========================
TABLET
========================= */

@media(max-width:1000px){

.footer-top{

    grid-template-columns:1fr 1fr;

    gap:40px;
}

.footer-brand{

    grid-column:1/-1;
}

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

.modern-footer{

    margin-top:50px;

    padding:0 12px 20px;
}

.footer-wrapper{

    border-radius:28px;
}

/* TOP */

.footer-top{

    grid-template-columns:1fr;

    gap:34px;

    padding:30px 22px;
}

/* LOGO */

.footer-logo{

    gap:14px;

    margin-bottom:18px;
}

.footer-logo-icon{

    width:54px;

    height:54px;

    border-radius:18px;

    font-size:24px;
}

.footer-brand h2{

    font-size:24px;
}

.footer-brand p{

    font-size:15px;

    line-height:1.9;

    margin-bottom:20px;
}

/* TAG */

.footer-tag{

    width:100%;

    justify-content:center;

    text-align:center;

    font-size:13px;

    padding:12px 16px;
}

/* COLUMNS */

.footer-column h3{

    font-size:17px;

    margin-bottom:16px;
}

.footer-column a{

    font-size:15px;

    margin-bottom:14px;
}

/* BOTTOM */

.footer-bottom{

    padding:18px;
}

.footer-bottom p{

    font-size:13px;
}

}
