/* ========================================
   FOOTER STYLES - JOboost Design System V2
   ======================================== */

/* =========================
   SITE FOOTER
   ========================= */

   a {
    text-decoration: none;
   }
   
.site-footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #f9fafb;
    margin-top: 4rem;
    padding-top: 3rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #14b8a6, #f59e0b);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================
   FOOTER TOP
   ========================= */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
    color: #10b981;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-family: 'Poppins', sans-serif;
}

/* Logo Column */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

.footer-logo h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #10b981;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.footer-description {
    color: #d1d5db;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    color: #10b981;
    transition: all 300ms ease;
}

.footer-social a:hover {
    background: #10b981;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Footer Links */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 300ms ease;
}

.footer-column ul li a i {
    font-size: 0.75rem;
    color: #10b981;
    transition: transform 300ms ease;
}

.footer-column ul li a:hover {
    color: #10b981;
    padding-left: 0.5rem;
}

.footer-column ul li a:hover i {
    transform: translateX(3px);
}

/* =========================
   FOOTER BOTTOM
   ========================= */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left p,
.footer-bottom-right p {
    margin: 0;
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom-right p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.jomak-logo {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.6);
    transition: opacity 300ms ease;
}

.jomak-logo:hover {
    opacity: 1;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .site-footer {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 2rem;
    }
    
    .footer-column:first-child {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 0;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.875rem;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
    }
}
