.footer {
    padding: 40px 20px;
    margin: 0;
    background: var(--surface-gradient);
    color:var(--on-surface-gradient);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex: 1 1 22%;
    min-width: 200px;
    margin-bottom: 20px;
}
.footer p{
    color:inherit;
}
.footer-section p a {
    text-decoration: none;
    color:inherit;
}

.footer h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-accent);
}


.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color:inherit;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer ul li a:hover {
    color:var(--brand-accent);
    font-weight: bold;
}

/* Contact Section */
.footer .contact p {
    margin: 5px 0;
    color:inherit;
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-icon {
    font-size: 16px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

.fb {
    background-color: #3b5998;
}
.insta {
    background-color: #e4405f;
}
.twitter {
    background-color: #1da1f2;
}
.youtube {
    background-color: #ff0000;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Bottom Copyright Section */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 15px;
    margin-top: 20px;
    font-size: 14px;
    color:var(--on-surface-gradient);
    border-top:1px solid var(--border-light);
}
.btp {
    color: var(--text-accent);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .footer-section {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-section {
        width: 100%;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}
