/* --- Social Links Icons (Minimal Style) --- */
.footer-section .social-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}

.footer-section .social-links a {
    color: #a7b3ce; 
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section .social-links a:hover {
    color: #ffffff;
    transform: scale(1.15);
}

/* === Footer Styles === */
footer {
    background-color: rgba(20, 28, 45, 0.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #9ca3af;
    padding: 50px 0 25px 0;
    margin-top: auto;
    border-top: 1px solid var(--border-color-soft);
}

footer .footer-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px; 
    margin-bottom: 35px; 
}

html[dir="ltr"] footer .footer-content-wrapper { text-align: left; }
html[dir="rtl"] footer .footer-content-wrapper { text-align: right; }

footer .footer-section {
    flex: 1;
    min-width: 200px; 
    margin-bottom: 25px; 
}

footer .footer-section h4 {
    font-size: 1.2em; 
    color: #e5e7eb;
    margin-bottom: 20px; 
    font-weight: 600;
    padding-bottom: 10px; 
    border-bottom: 1px solid rgba(100, 116, 139, 0.4);
    display: inline-block;
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: none; /* Override base ul style */
}

footer nav ul li {
    margin-bottom: 10px; 
    padding-left: 0; /* Override base li style */
}

html[dir="rtl"] footer nav ul li {
    padding-right: 0; /* Override base li style */
}

footer nav ul li a {
    color: #9ca3af;
    font-size:0.95em; 
}

footer .support-links p {
    margin: 10px 0; 
    font-size: 0.95em; 
}

footer .support-links a {
    color: #9ca3af;
}

footer .copyright {
    font-size: 0.9em; 
    color: #6b7280;
    width: 100%;
    text-align: center;
    padding-top: 35px; 
    border-top: 1px solid var(--border-color-medium);
}

/* --- Footer Logos --- */
.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    margin-top: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-logos img {
    height: 45px;
    max-width: 160px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.compliance-text {
    text-align: center;
    font-size: 13px;
    color: #a7b3ce;
    opacity: 0.6;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 700;
}