/* ===== FOOTER - مشترك بين جميع الصفحات ===== */
footer {
    background: linear-gradient(135deg, #0a0a0a, #000000);
    color: #999;
    text-align: center;
    padding: 40px 20px 30px;
    font-size: 0.95rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

/* خلفية زخرفية للفوتر */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.6), 
        rgba(212, 175, 55, 0.8), 
        rgba(212, 175, 55, 0.6), 
        transparent
    );
}

/* تأثير إضاءة خفيف */
footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    pointer-events: none;
}

/* النص الرئيسي */
footer p {
    margin: 8px 0;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* النص الذهبي المميز */
footer .gold-text {
    color: #d4af37 !important;
    font-weight: 700;
    margin-top: 15px !important;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* رابط الخصوصية */
footer .privacy-link {
    color: #d4af37;
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

footer .privacy-link:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* أيقونات وسائل التواصل (لو حابب تضيفها) */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-social a {
    color: #999;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* ===== MEDIA QUERIES للفوتر ===== */
@media (max-width: 768px) {
    footer {
        padding: 30px 15px 20px;
        font-size: 0.9rem;
    }
    
    footer .gold-text {
        font-size: 0.95rem;
        margin-top: 12px !important;
    }
    
    .footer-social {
        gap: 15px;
        margin: 15px 0;
    }
    
    .footer-social a {
        font-size: 1.1rem;
        padding: 6px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 25px 10px 15px;
        font-size: 0.85rem;
    }
    
    footer .gold-text {
        font-size: 0.9rem;
        margin-top: 10px !important;
    }
    
    .footer-social {
        gap: 12px;
        margin: 12px 0;
    }
    
    footer p {
        line-height: 1.5;
    }
}