/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4A03D 0%, #F8C453 50%, #D4A03D 100%);
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.logo-container {
    background: white;
    padding: 15px 20px;
    border-radius: 50px;
    margin-right: 20px;
    box-shadow: 0 8px 25px rgba(212, 160, 61, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 160, 61, 0.4);
}

.logo-container img {
    height: 50px;
    width: auto;
}

.brand-text {
    text-align: left;
}

.brand-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #D4A03D;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.brand-tagline {
    font-size: 1rem;
    color: #bdc3c7;
    margin: 5px 0 0 0;
    font-style: italic;
}

.footer-sections {
    margin-top: 40px;
}

.footer-section h5 {
    color: #D4A03D;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #D4A03D, #F8C453);
    border-radius: 2px;
}

.footer-section p {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.6;
}

.address-block + .address-block {
    margin-top: 20px;
}

.address-title {
    font-weight: 600;
    color: #F8C453;
    margin-bottom: 8px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.address-title i {
    color: #D4A03D;
    margin-right: 10px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.address-text {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 0;
    padding-left: 30px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #bdc3c7;
}

.contact-info li i {
    color: #D4A03D;
    margin-right: 12px;
    width: 20px;
    font-size: 1.1rem;
}

.social-media {
    text-align: center;
    margin-top: 40px;
    padding: 30px 0;
    border-top: 1px solid #4a5568;
}

.social-title {
    color: #D4A03D;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link i {
    font-size: 1.4rem;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
}

/* Social Media Platform Colors */
.facebook { background: linear-gradient(135deg, #3b5998, #4c70ba); color: white; }
.facebook:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(59, 89, 152, 0.4); color: white; }

.twitter { background: linear-gradient(135deg, #1da1f2, #4dabf7); color: white; }
.twitter:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(29, 161, 242, 0.4); color: white; }

.linkedin { background: linear-gradient(135deg, #0077b5, #00a0dc); color: white; }
.linkedin:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 119, 181, 0.4); color: white; }

.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: white; }
.instagram:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(131, 58, 180, 0.4); color: white; }

.youtube { background: linear-gradient(135deg, #ff0000, #ff4444); color: white; }
.youtube:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 0, 0, 0.4); color: white; }

.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); color: white; }
.whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4); color: white; }

.phone { background: linear-gradient(135deg, #25d366, #128c7e); color: white; }
.phone:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4); color: white; }

.email { background: linear-gradient(135deg, #25d366, #128c7e); color: white; }
.email:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4); color: white; }

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #4a5568;
    margin-top: 20px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

.footer-bottom-logo {
    height: 24px;
    margin-right: 12px;
}

.footer-bottom-akm-logo {
    height: 32px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-bottom-akm-logo:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-brand {
        flex-direction: column;
        text-align: center;
    }

    .logo-container {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .brand-name {
        font-size: 1.8rem;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }

    .social-link i {
        font-size: 1.2rem;
    }

    .footer-bottom {
        flex-direction: column;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer-bottom-left {
        margin-bottom: 15px;
        text-align: center;
        flex-direction: column;
    }

    .footer-bottom-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }

.address-plus-code {
    padding-left: 30px;
    font-size: 0.9rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 5px;
}

.address-links {
    padding-left: 30px;
    margin-top: 15px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.address-link {
    color: #D4A03D;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.address-link i {
    margin-right: 8px;
    font-size: 1rem;
}

.address-link:hover {
    color: #F8C453;
    text-decoration: underline;
}