/* ========== FOOTER WITH SOCIAL MEDIA ========== */
footer {
    background: #0a2b1f; /* Warna gelap solid, bukan gradient */
    color: #e2f0e9;
    padding: 40px 0 20px;
    margin-top: 40px;
    border-top: 3px solid #2c7a4d;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-content h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    color: #ffffff;
}

.footer-content h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #2c7a4d;
    border-radius: 2px;
}

.footer-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #cce3da;
    opacity: 0.95;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-5px);
    border-color: transparent;
}

/* Warna khusus untuk setiap icon saat hover */
.social-icon.facebook:hover {
    background: #1877f2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
    box-shadow: 0 5px 15px rgba(214, 41, 118, 0.4);
}

.social-icon.youtube:hover {
    background: #ff0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.social-icon.tiktok:hover {
    background: linear-gradient(45deg, #00f2ea, #ff004f);
    box-shadow: 0 5px 15px rgba(0, 242, 234, 0.4);
}

.social-tagline {
    font-size: 0.7rem;
    margin-top: 12px;
    color: #a0bfb3;
    opacity: 0.8;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    color: #cce3da;
}

.footer-bottom p {
    color: #cce3da;
}

.developer-credit {
    margin-top: 8px;
    font-size: 0.7rem;
    opacity: 0.7;
    color: #a0bfb3;
}

.developer-credit span {
    color: #2c7a4d;
    font-weight: 500;
}

/* License Footer */
.license-footer {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.license-footer p {
    color: #cce3da;
}

.license-footer a {
    color: #2c7a4d;
    text-decoration: none;
}

.license-footer a:hover {
    color: #3d9e62;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        text-align: center;
        gap: 25px;
    }
    
    .footer-content h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}