/* Footer CSS - Professional & Responsive Redesign */
.footer {
    background-color: var(--primary-color);
    color: #f3f4f6;
    padding: 80px 5% 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr; /* 3 Column Layout */
    gap: 60px;
}

/* Footer About Column */
.footer-about .logo {
    display: block;
    margin-bottom: 25px;
}

.footer-about .logo img {
    height: 50px;
    width: auto;
    background-color: #fff;
    padding: 5px 12px;
    border-radius: 8px;
}

.footer-about p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 0.95rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(29, 122, 118, 0.3);
}

/* Footer Link Columns */
.footer-column h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: -0.5px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

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

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

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.footer-column ul li a i {
    font-size: 0.75rem;
    color: var(--accent-color);
}

.footer-column ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Contact Column Specifics */
.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    color: #9ca3af;
    align-items: flex-start;
}

.contact-info li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    margin-top: 3px;
}

.contact-info li span, 
.contact-info li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 1.05rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.contact-info li a:hover {
    color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    max-width: 1200px;
    margin: 70px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6b7280;
    font-size: 0.9rem;
}

.footer-links-bottom {
    display: flex;
    gap: 25px;
}

.footer-links-bottom a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #fff;
}

/* Responsive Logic */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 7% 30px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-links-bottom {
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-about p {
        max-width: 100%;
    }
}
