/* ─── PAA SECTION (FOOTER) WRAPPER ─── */
.ft-wrap {
    background: #000;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.ft-brand-row { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.ft-logo-video {
    height: 70px; width: 180px;
    border-radius: var(--radius-xs);
    background: #000;
    overflow: hidden;
}
.ft-logo-video video { height: 100%; width: auto; object-fit: contain; }



.ft-col-header {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding-bottom: 2px;
}

.ft-nav { list-style: none; padding: 0; margin: 0; }
.ft-nav li a {
    display: flex; align-items: center; justify-content: space-between;
    color: #ffffff; font-size: 14x;
    text-decoration: none; padding: 6px 0;
    transition: color 0.3s ease;
}
.ft-nav li a:hover { color: greenyellow; }
.ft-nav li a svg { width: 12px; height: 12px; opacity: 0; transform: translateX(-10px); transition: all 0.3s ease; }
.ft-nav li a:hover svg { opacity: 1; transform: translateX(0); }

/* REACH US PAA*/
.ft-card {
    display: flex; 
    /*align-items: center; 
    gap: 12px;*/
    padding: 12px 12px; 
    /*border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);*/
    color: #ffffff; 
    text-decoration: none; margin-bottom: 10px;
    transition: all 0.3s ease;
    margin-top: 2px;
}
.ft-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.15); color: #fff; }

/* Socials */
.ft-socials { display: flex; gap: 12px; }
.ft-social {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: #9ca3af; text-decoration: none; transition: all 0.3s ease;
}
.ft-social:hover { background: #fff; color: #000; border-color: #fff; }

/* Partners & Legal */
.ft-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 40px 0; }
.ft-logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: flex-start; margin-top: 10px; }
.ft-logos img { height:40px; }

.ft-legal { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; }
.ft-copy { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; }
.ft-legal-links {  display: flex; gap: 24px; }
.ft-legal-links a { color:#ffffff; font-size: 11px; text-decoration: none !important; text-transform: uppercase; }
.ft-legal-links a:hover { color: greenyellow; }

@media (max-width: 991px) {
    .ft-legal { flex-direction: column; gap: 20px; text-align: center; }
}





