.footer-area {
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 70px 0 20px;
    margin-top: 100px;
    direction: rtl;
}

.footer-heading {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    text-align: right;
}

.footer-heading::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #e63946;
}

/* Links Styling */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
        text-align: right;

}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
        text-align: right;
}

.footer-links a:hover {
    color: #e63946;
}

/* Contact Info Styling */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact i {
    margin-left: 10px;
    color: #e63946;
    font-size: 1.1rem;
    margin-top: 5px;
}

.footer-contact span {
    font-size: 0.95rem;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e63946;
    color: #fff;
    transform: translateY(-3px);
}

/* Newsletter Form */
.newsletter-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #cccccc;
}

.newsletter-form .input-group {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.newsletter-form input {
    border: none;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-align: right;
}

.newsletter-form input::placeholder {
    color: #cccccc;
}

.newsletter-form button {
    background: #e63946;
    border: none;
    padding: 15px 25px;
    color: #fff;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff367b;
}

/* Copyright Bar */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-area {
        padding: 50px 0 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-heading {
        margin-top: 20px;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form button {
        border-radius: 30px;
        margin-top: 10px;
    }
}