/* ========================================
   Footer - Modern Professional Design
   ======================================== */
.footer-modern {
    background: linear-gradient(180deg, #1A1A1A 0%, #0F0F0F 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #FFD500;
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
    z-index: 2;
}

/* Footer Widget */
.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 0.9375rem;
    color: #9CA3AF;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-4px);
    color: #000;
}

.social-link.facebook:hover {
    background: #1877F2;
}

.social-link.whatsapp:hover {
    background: #25D366;
}

.social-link.phone:hover {
    background: #FFD500;
}

.social-link.email:hover {
    background: #FFD500;
}

/* Widget Title */
.footer-widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FFD500 0%, #FFC400 100%);
    border-radius: 2px;
}

/* RTL: Underline on the right */
html[dir="rtl"] .footer-widget-title::after {
    right: 0;
    left: auto;
}

/* LTR: Underline on the left */
html[dir="ltr"] .footer-widget-title::after {
    left: 0;
    right: auto;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FFD500;
    padding-right: 0.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #9CA3AF;
    font-size: 0.9375rem;
}

.footer-contact i {
    color: #FFD500;
    font-size: 1.125rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.copyright {
    color: #9CA3AF;
    font-size: 0.9375rem;
    margin: 0;
}

.copyright strong {
    color: #FFD500;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #FFD500;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-top {
        padding: 60px 0 40px;
    }
}