/*==================================================
            FOOTER
==================================================*/

.footer{

    background:#0F172A;

    color:#CBD5E1;

    padding:90px 0 40px;

    position:relative;

    overflow:hidden;

}

.footer::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:#2563EB;

    opacity:.05;

    top:-250px;

    left:-250px;

}

.footer::after{

    content:"";

    position:absolute;

    width:400px;

    height:400px;

    border-radius:50%;

    background:#7C3AED;

    opacity:.05;

    right:-180px;

    bottom:-180px;

}



/*==================================================
            FOOTER TOP
==================================================*/

.footer-top{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

    margin-bottom:60px;

}



/*==================================================
            COLUMN
==================================================*/

.footer-col{

    display:flex;

    flex-direction:column;

}



/*==================================================
            LOGO
==================================================*/

.footer-logo{

    display:inline-block;

    margin-bottom:25px;

}

.footer-logo img{

    height:55px;

}



/*==================================================
            ABOUT
==================================================*/

.footer-about p{

    color:#CBD5E1;

    line-height:1.9;

    margin-bottom:30px;

}



/*==================================================
            CONTACT
==================================================*/

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-contact a{

    display:flex;

    align-items:center;

    gap:12px;

    color:#CBD5E1;

    transition:.35s;

}

.footer-contact a:hover{

    color:#ffffff;

}

.footer-contact i{

    width:42px;

    height:42px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:12px;

    background:rgba(255,255,255,.08);

    color:#60A5FA;

}



/*==================================================
            TITLE
==================================================*/

.footer-col h3{

    color:#fff;

    font-size:22px;

    margin-bottom:22px;

}
/*==================================================
            FOOTER MENU
==================================================*/

.footer-col ul{

    margin:0;

    padding:0;

}

.footer-col ul li{

    list-style:none;

    margin-bottom:12px;

}

.footer-col ul li a{

    color:#CBD5E1;

    font-size:15px;

    transition:.30s;

    display:inline-flex;

    align-items:center;

    gap:8px;

}

.footer-col ul li a::before{

    content:"›";

    color:#60A5FA;

    font-size:18px;

}

.footer-col ul li a:hover{

    color:#ffffff;

    padding-left:8px;

}



/*==================================================
            FOOTER BIG LINKS
==================================================*/

.footer-big-links{

    position:relative;

    z-index:2;

    margin:60px 0;

    padding:45px;

    border-radius:28px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

}

.footer-big-links h2{

    color:#fff;

    font-size:34px;

    margin-bottom:15px;

}

.footer-big-links p{

    color:#CBD5E1;

    margin-bottom:30px;

    line-height:1.8;

}



/*==================================================
            LINK GRID
==================================================*/

.footer-link-grid{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.footer-link-grid a{

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:#E2E8F0;

    font-size:14px;

    transition:.30s;

}

.footer-link-grid a:hover{

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    color:#fff;

    transform:translateY(-3px);

}



/*==================================================
            FOOTER MIDDLE
==================================================*/

.footer-middle{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:50px;

    margin:70px 0;

}



/*==================================================
            QUICK LINKS
==================================================*/

.footer-links h3{

    color:#fff;

    margin-bottom:25px;

    font-size:24px;

}

.link-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:15px;

}

.link-grid a{

    color:#CBD5E1;

    transition:.30s;

}

.link-grid a:hover{

    color:#60A5FA;

}



/*==================================================
            NEWSLETTER
==================================================*/

.footer-newsletter{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px;

}

.footer-newsletter h3{

    color:#fff;

    margin-bottom:15px;

}

.footer-newsletter p{

    margin-bottom:25px;

    color:#CBD5E1;

}

.footer-newsletter form{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-newsletter input{

    height:55px;

    border:none;

    border-radius:14px;

    padding:0 18px;

    background:#fff;

    font-size:15px;

}

.footer-newsletter button{

    height:55px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    color:#fff;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.footer-newsletter button:hover{

    transform:translateY(-3px);

}
/*==================================================
            SOCIAL
==================================================*/

.footer-social{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:15px;

    margin:60px 0 35px;

}

.footer-social a{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:#ffffff;

    font-size:22px;

    transition:.35s;

}

.footer-social a:hover{

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    border-color:transparent;

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(37,99,235,.30);

}



/*==================================================
            FOOTER BOTTOM
==================================================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

    padding-top:35px;

    border-top:1px solid rgba(255,255,255,.08);

}



/*==================================================
            COPYRIGHT
==================================================*/

.copyright{

    color:#CBD5E1;

    font-size:15px;

    line-height:1.8;

}

.copyright strong{

    color:#ffffff;

}



/*==================================================
            FOOTER LINKS
==================================================*/

.footer-bottom-links{

    display:flex;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;

}

.footer-bottom-links a{

    color:#CBD5E1;

    font-size:15px;

    transition:.30s;

}

.footer-bottom-links a:hover{

    color:#60A5FA;

}



/*==================================================
            PAYMENT ICONS
==================================================*/

.payment-method{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    margin-top:35px;

}

.payment-method img{

    height:34px;

    background:#ffffff;

    padding:6px 10px;

    border-radius:10px;

}



/*==================================================
            BACKGROUND LINE
==================================================*/

.footer hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.08);

    margin:35px 0;

}



/*==================================================
            TABLET
==================================================*/

@media(max-width:1200px){

.footer-top{

grid-template-columns:1fr 1fr;

}

.link-grid{

grid-template-columns:repeat(2,1fr);

}

}



/*==================================================
            TABLET
==================================================*/

@media(max-width:992px){

.footer-middle{

grid-template-columns:1fr;

}

.footer-big-links{

padding:35px;

}

.footer-big-links h2{

font-size:28px;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

}



/*==================================================
            MOBILE
==================================================*/

@media(max-width:768px){

.footer{

padding:70px 0 30px;

}

.footer-top{

grid-template-columns:1fr;

gap:40px;

}

.footer-big-links{

padding:25px;

}

.footer-big-links h2{

font-size:24px;

line-height:1.4;

}

.footer-link-grid{

gap:10px;

}

.footer-link-grid a{

font-size:13px;

padding:8px 14px;

}

.link-grid{

grid-template-columns:1fr;

}

.footer-newsletter{

padding:25px;

}

.footer-newsletter input,

.footer-newsletter button{

height:50px;

}

.footer-social{

flex-wrap:wrap;

gap:12px;

}

.footer-social a{

width:48px;

height:48px;

font-size:20px;

}

.footer-bottom-links{

justify-content:center;

gap:15px;

}

}



/*==================================================
            SMALL MOBILE
==================================================*/

@media(max-width:480px){

.footer-logo img{

height:45px;

}

.footer-col h3{

font-size:20px;

}

.footer-about p{

font-size:15px;

}

.copyright{

font-size:14px;

}

}