.footer {
    margin-top: 60px;
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
    padding: 40px 20px 15px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand,
.footer-links,
.footer-info {
    flex: 1;
    min-width: 220px;
}

.footer h3,
.footer h4 {
    margin-bottom: 15px;
    color: #fbbf24;
}

.footer p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fbbf24;
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #9ca3af;
}