﻿
:root {
    --primary-blue: #0e223f;
    --gold-accent: #c5a065;
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.8);
    --footer-bg: #0e223f;
    --primary-overlay: rgba(30, 60, 100, 0.92);
    --gold-color: #c5a065;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.05);
}

.custom-footer {
    background-color: var(--footer-bg);
    color: var(--text-white);
    padding: 40px 0 0px 0;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    color: var(--gold-accent);
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.footer-col p {
    line-height: 1.8;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

    .social-link:hover {
        background-color: var(--gold-accent);
        transform: translateY(-3px);
        color: #000;
    }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 15px;
    }

    .footer-links a {
        color: var(--text-light);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.95rem;
        transition: transform 0.3s ease, color 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--gold-accent);
            transform: translateX(-5px);
        }

    .footer-links i {
        font-size: 0.8rem;
        color: var(--gold-accent);
    }

.newsletter-text {
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.subscribe-form {
    display: flex;
    margin-bottom: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    height: 48px;
}

    .subscribe-form input {
        flex: 1;
        border: none;
        padding: 0 15px;
        outline: none;
        font-family: 'Cairo', sans-serif;
        font-size: 0.9rem;
        color: #333;
    }

.subscribe-btn {
    background-color: var(--gold-accent);
    color: #fff;
    border: none;
    padding: 0 25px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    transition: background-color 0.3s ease;
}

    .subscribe-btn:hover {
        background-color: #d4b075;
    }

.payment-methods {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.payment-icon {
    width: 50px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5px;
    padding-top: 20px;
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .social-links,
    .payment-methods {
        justify-content: center;
    }

    .footer-links a:hover {
        transform: translateY(-2px);
    }
}
