/* Footer Base */
.site-footer {
    background: #0d224a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* Layout */
.footer-container {
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* Brand */
.footer-brand .logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #d1d5db;
    line-height: 1.7;
    font-size: 15px;
}

/* Headings */
.site-footer h4 {
    font-size: 16px;
    margin-bottom: 18px;
    color: #f4ba18;
    letter-spacing: 0.5px;
}

/* Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffcc00;
    padding-left: 6px;
}

/* Contact */
.footer-contact p {
    font-size: 14px;
    color: #d1d5db;
    margin-bottom: 10px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffcc00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffcc00;
    color: #0d224a;
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 18px;
    font-size: 14px;
    color: #d1d5db;
}

/* Responsive */
@media (max-width: 600px) {
    .footer-container {
        padding: 40px 20px;
    }

    .footer-brand .logo {
        font-size: 24px;
    }
}

.footer-brand .logo img{
    height: 122px;
    background: #fff;
    border-radius: 100%;
    width: 120px;
    object-fit: contain;
}