/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 20px 20px;
    margin-top: auto;
    background-image: linear-gradient(to bottom, var(--dark-color), #1a232f);
    position: relative;
    overflow: hidden;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(to left, var(--primary-color), transparent);
}

.footer-column ul li {
    margin-bottom: 15px;
    position: relative;
    padding-right: 20px;
    transition: all 0.3s ease;
}

.footer-column ul li::before {
    content: '›';
    position: absolute;
    right: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.footer-column ul li:hover {
    transform: translateX(-5px);
}

.footer-column ul li:hover::before {
    transform: translateX(-5px);
    color: var(--primary-color);
}

.footer-column a:hover {
    color: var(--secondary-color);
}

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

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

.social-icons a:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #3b5998, #2d4373);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.social-icons a:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #25D366, #128C7E);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a i.fa-facebook {
    color: #fff;
}

.social-icons a i.fa-whatsapp {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Add decorative elements to footer */
.footer-pattern {
    height: 30px;
    background-image: url('../arabic_patterns.png');
    background-size: contain;
    background-repeat: repeat-x;
    margin-bottom: 20px;
    opacity: 0.4;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-color) 10%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--secondary-color) 10%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
}

.footer-bottom p {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@import '../footer.css';