/*=========================================
            FUTURISTIC FOOTER
=========================================*/

.footer{
    position:relative;
    padding:90px 8% 30px;

    background:var(--bg);

    border-top:1px solid var(--border);

    overflow:hidden;
}



/*=========================================
            GRID
=========================================*/

.footer-grid{

    position:relative;
    z-index:2;

    display:grid;

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

    gap:55px;

    padding-bottom:70px;

    border-bottom:1px solid var(--border);

}

/*=========================================
            BRAND
=========================================*/
.footer-brand img {
    width: 150px;
    margin-bottom: 25px;
  }

.footer-brand .logo-light {
    display: none;
    
  }
  
  html[data-theme="dark"] .footer-brand .logo-dark {
    display: none;
  }
  
  html[data-theme="dark"] .footer-brand .logo-light {
    display: block;
  }

.footer-brand p{

    color:var(--text-light);

    line-height:1.9;

    font-size:15px;

    max-width:360px;

    margin-bottom:35px;

}

/*=========================================
        SOCIAL ICONS
=========================================*/

.footer-social{

    display:flex;

    gap:14px;

}

.footer-social a{

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    color:var(--primary);

    background:var(--card-bg);

    border:1px solid var(--border);

    transition:.35s;
}

.footer-social a:hover{

    background:var(--primary);

    border-color:var(--primary);

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(83, 216, 65, 0.28);
}

.footer-social i{

    font-size:22px;

}

/*=========================================
            COLUMNS
=========================================*/

.footer-column{

    display:flex;

    flex-direction:column;

}

.footer-column h3{

    color:var(--heading);

    font-size:18px;

    margin-bottom:25px;

    position:relative;

}

.footer-column h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:40px;

    height:3px;

    border-radius:20px;

    background:var(--primary);

}

.footer-column a{

    text-decoration:none;

    color:var(--text-light);

    margin-bottom:16px;

    transition:.3s;

    font-size:15px;

}

.footer-column a:hover{

    color:var(--primary);

    padding-left:8px;

}

/*==============================
Light Theme
==============================*/

html[data-theme="light"] .footer{

    background:#f8f9fb;
}

html[data-theme="light"] .highlight-card,
html[data-theme="light"] .footer-disclaimer,
html[data-theme="light"] .footer-social a{

    background:#ffffff;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/*==============================
Dark Theme
==============================*/

html[data-theme="dark"] .footer{

    background:#050505;
}

html[data-theme="dark"] .highlight-card,
html[data-theme="dark"] .footer-disclaimer,
html[data-theme="dark"] .footer-social a{

    background:#111111;
}

/*=========================================
        HIGHLIGHT CARDS
=========================================*/

.footer-highlight{

    display:grid;

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

    gap:22px;

    margin:65px 0;

}

.highlight-card{

    display:flex;

    align-items:center;

    gap:18px;

    padding:22px 26px;

    border-radius:22px;

    background:var(--card-bg);
    border:1px solid var(--border);

    backdrop-filter:blur(16px);

    transition:.35s;

}

.highlight-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:0 18px 40px rgba(65, 216, 105, 0.18);

}

.highlight-card i{

    font-size:32px;

    color:var(--primary);

}

.highlight-card span{

    color:var(--text-light);

    font-size:16px;

    font-weight:500;

}

/*=========================================
        DISCLAIMER
=========================================*/

.footer-disclaimer{

    padding:28px 35px;

    border-radius:24px;

    background:var(--card-bg);
    border:1px solid var(--border);

    margin-bottom:45px;

}

.footer-disclaimer p{

    color:var(--text-light);

    line-height:1.9;

    font-size:14px;

}

.footer-disclaimer strong{

    color:var(--primary);

}

/*=========================================
        BOTTOM
=========================================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    padding-top:28px;

    border-top:1px solid var(--border);

}

.footer-bottom p{

    color:var(--text-light);

    font-size:14px;

}

.footer-bottom-links{

    display:flex;

    gap:28px;

}

.footer-bottom-links a{

    color:var(--text-light);

    text-decoration:none;

    transition:.3s;

    font-size:14px;

}

.footer-bottom-links a:hover{

    color:var(--primary);

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1200px){

.footer-grid{

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

}

.footer-highlight{

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

}

}

@media(max-width:768px){

.footer{

padding:70px 25px 25px;

}

.footer-grid{

grid-template-columns:1fr;

gap:45px;

}

.footer-brand{

text-align:center;

}

.footer-brand img{

margin:auto auto 25px;

}

.footer-brand p{

margin:auto auto 30px;

}

.footer-social{

justify-content:center;

}

.footer-highlight{

grid-template-columns:1fr;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

.footer-bottom-links{

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

.highlight-card{

justify-content:center;

text-align:center;

flex-direction:column;

gap:12px;

}

}