/* الخطوط والأساسيات */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Arabic', Arial, sans-serif!important;
    background: linear-gradient(135deg, #313745 0%, #2a2f3a 100%);
    color: #f1ecd9;
    min-height: 100vh;
}

.container {
    max-width: 900px;
}

/* العنوان الرئيسي */
.site-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #dca061;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.site-subtitle {
    font-size: 1.5rem;
    color: #e6b57b;
    font-weight: 400;
    margin-bottom: 30px;
}

/* اللوجو */
.main-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 20px 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* عناوين الأقسام */
.section-title {
    font-size: 1.8rem;
    color: #dca061;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 2px solid #e6b57b;
}

/* روابط التواصل الاجتماعي */
.social-links-section {
    margin-top: 40px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #313745 0%, #2a2f3a 100%);
    border: 2px solid #dca061;
    border-radius: 15px;
    color: #e6b57b;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.social-link i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.social-link:hover {
    background: linear-gradient(135deg, #dca061 0%, #e6b57b 100%);
    color: #313745;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(220, 160, 97, 0.4);
    border-color: #e6b57b;
}

/* ألوان خاصة لكل منصة */
.social-link.snapchat:hover {
    background: linear-gradient(135deg, #FFFC00 0%, #FFF700 100%);
    color: #000;
}

.social-link.facebook:hover {
    background: linear-gradient(135deg, #1877F2 0%, #42A5F5 100%);
    color: #fff;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #E4405F 0%, #F77737 50%, #FCAF45 100%);
    color: #fff;
}

.social-link.tiktok:hover {
    background: linear-gradient(135deg, #000 0%, #FF0050 100%);
    color: #fff;
}

.social-link.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #FF4444 100%);
    color: #fff;
}

/* معلومات الاتصال */
.contact-info-section {
    margin-top: 40px;
}

.contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #313745 0%, #2a2f3a 100%);
    border: 2px solid #dca061;
    border-radius: 10px;
    color: #e6b57b;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.contact-link i {
    font-size: 1.5rem;
}

.contact-link:hover {
    background: linear-gradient(135deg, #dca061 0%, #e6b57b 100%);
    color: #313745;
    transform: translateX(-5px);
    box-shadow: 0 5px 10px rgba(220, 160, 97, 0.4);
}

.contact-link.whatsapp:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
}

/* نموذج التواصل */
.contact-form-section {
    margin-top: 40px;
    background: rgba(49, 55, 69, 0.6);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #dca061;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.contact-form .form-label {
    color: #e6b57b;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-form .form-control {
    background-color: rgba(241, 236, 217, 0.1);
    border: 2px solid #dca061;
    border-radius: 8px;
    color: #f1ecd9;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background-color: rgba(241, 236, 217, 0.2);
    border-color: #e6b57b;
    color: #f1ecd9;
    box-shadow: 0 0 0 0.2rem rgba(220, 160, 97, 0.25);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: rgba(241, 236, 217, 0.5);
}

.required {
    color: #ff6b6b;
    margin-right: 3px;
}

.btn-submit {
    background: linear-gradient(135deg, #dca061 0%, #e6b57b 100%);
    color: #313745;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #e6b57b 0%, #dca061 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(220, 160, 97, 0.4);
    color: #313745;
}

.btn-submit i {
    margin-left: 8px;
}

/* التنبيهات */
.alert {
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
    border: none;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    color: #90ee90;
    border: 2px solid #28a745;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
    border: 2px solid #dc3545;
}

.alert i {
    margin-left: 8px;
}

/* الفوتر */
.site-footer {
    background: linear-gradient(135deg, #2a2f3a 0%, #1e2329 100%);
    border-top: 2px solid #dca061;
    padding: 25px 0;
    margin-top: 60px;
    bottom: 0;
    width: 100%;
}

.footer-text {
    text-align: center;
    color: #e6b57b;
    font-size: 1rem;
    margin: 0;
}
.footer-text a {
    color: #cf2e2e;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    &:hover {
        color: #fcb900;
        transform: translateY(-2px);
    }
}

.footer-text i {
    margin-left: 5px;
}

#current-year {
    font-weight: 600;
    color: #dca061;
}
.fa-phone {
    transform: scalex(-1);
}
/* التصميم المتجاوب */
@media (max-width: 768px) {
    .site-title {
        font-size: 2.5rem;
    }

    .site-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .social-link {
        width: 100px;
        height: 100px;
    }

    .social-link i {
        font-size: 2rem;
    }

    .social-link span {
        font-size: 0.8rem;
    }

    .contact-form-section {
        padding: 25px 20px;
    }

    .contact-link {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    .site-title {
        font-size: 2rem;
    }

    .site-subtitle {
        font-size: 1rem;
    }

    .main-logo {
        max-width: 400px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 90px;
        height: 90px;
    }

    .social-link i {
        font-size: 1.8rem;
    }

    .social-link span {
        font-size: 0.75rem;
    }

    .contact-form-section {
        padding: 20px 15px;
    }
}

