/* Custom Footer Styles - Agaram Foundation Theme */
.custom-footer {
    background-color: #0a0a0a;
    /* Very dark background */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    /* Assuming Inter is available, fallback to sans-serif */
    padding: 60px 0 20px;
    font-size: 14px;
    line-height: 1.6;
}

.custom-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Column 1: Logo & Mission */
.footer-col-1 h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    display: block;
}

.footer-mission {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #3b82f6;
    /* Blue accent on hover */
}

/* Columns 2 & 3: Links */
.footer-col-title {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    display: block;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Column 4: Contact & App */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #cccccc;
}

.footer-contact-icon {
    margin-right: 10px;
    font-size: 16px;
    color: #3b82f6;
    margin-top: 4px;
}

.footer-app-download {
    margin-top: 30px;
}

.app-store-btn {
    display: inline-block;
    background: #000;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 5px 10px;
    margin-top: 10px;
}

.app-store-btn img {
    height: 40px;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 50px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #888;
    font-size: 13px;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .custom-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .custom-footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}