footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 30px;
    border-top: 1px solid #1e293b;
    margin-top: 50px;
    font-size: 15px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-col img {
    height: 300px !important;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 25px !important;
}

.footer-desc p:first-child {
    font-size: 24px;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.footer-desc p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-col h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #4f46e5;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: #1e293b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
    border: 1px solid rgba(255,255,255,0.05);
}

.social-icons a:hover {
    background: #4f46e5;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.copyright {
    text-align: center;
    margin-top: 70px;
    padding-top: 25px;
    border-top: 1px solid #1e293b;
    font-size: 14px;
    color: #64748b;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-col img {
        margin: 0 auto 20px !important;
    }

    .social-icons {
        justify-content: center;
    }
}