/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #1c0c27 0%, #5d2d7b 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    transform: rotate(180deg);
    z-index: 1;
}

.footer-waves svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

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

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: #9c27b0;
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #4a2561;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #9c27b0;
    transform: translateY(-3px);
}

.footer-newsletter .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    margin-bottom: 15px;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter .btn-primary {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    background-color: #9c27b0;
    border-color: #9c27b0;
    transition: all 0.3s ease;
}

.footer-newsletter .btn-primary:hover {
    background-color: #7b1fa2;
    border-color: #7b1fa2;
    transform: translateY(-2px);
}

.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-rights {
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .modern-footer {
        padding-top: 60px;
    }

    .footer-waves {
        height: 60px;
    }

    .footer-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .footer-logo {
        max-width: 150px;
    }

    .footer-links,
    .contact-info {
        margin-bottom: 20px;
    }
}

/* RTL Support */
[dir="rtl"] .footer-links a:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .contact-info i {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] .social-icons {
    padding-right: 0;
}
