/* ============================
   FOOTER
============================ */
.kortoba-footer {
    background: #0b1224;
    color: #fff;
    padding: 80px 8% 30px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Helvetica, Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-size: 28px;
    color: #f5c542;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

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

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

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #f5c542;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 10px;
    opacity: 0.85;
}

.footer-contact p a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact p a:hover {
    color: #f5c542;
}

/* Social Icons */
.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f5c542;
    color: #111;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    margin-right: 10px;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 197, 66, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

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

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-social a {
        margin-right: 8px;
    }
}