/* ==========================
   Footer extra styling
   ========================== */

.footer {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    color: #fff;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer-box h3 {
    margin-bottom: 15px;
    color: #00b4d8;
}

.footer-box p,
.footer-box a {
    color: #cbd5e1;
    font-size: 14px;
    text-decoration: none;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 8px;
}

.footer-box ul li a:hover {
    color: #00b4d8;
}

/* Social icons */
.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.social:hover {
    color: #00b4d8;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #94a3b8;
}