/* أكواد CSS مخصصة لصفحات شركة نظرة الإبداع */

/* تنسيق أزرار التواصل */
.contact-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.contact-buttons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.contact-buttons .whatsapp-contact {
    background-color: #25d366;
}

.contact-buttons .whatsapp-contact:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
}

.contact-buttons .call {
    background-color: #fe2600;
}

.contact-buttons .call:hover {
    background-color: #e01e00;
    transform: scale(1.1);
}

/* تحسين عرض العناوين العربية */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    line-height: 1.4;
}

/* تحسين عرض النصوص العربية */
body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
}

/* تحسين عرض القوائم */
.navmenu ul li a {
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
}

/* تحسين عرض البطاقات */
.service-item {
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* تحسين عرض الأيقونات */
.service-item .icon {
    margin: 0 auto 20px;
}

/* إصلاح مشاكل الـ RTL */
.row {
    direction: rtl;
}

.col-lg-4, .col-lg-3, .col-lg-6, .col-md-6 {
    text-align: center;
}

/* تحسين عرض الهيرو */
.hero {
    min-height: 60vh;
}

.hero .hero-container {
    position: relative;
    z-index: 3;
}

/* تحسين عرض الفوتر */
.footer {
    padding: 50px 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    padding: 5px 0;
}

.footer-links ul li a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fe2600;
}

/* تحسين الاستجابة للشاشات الصغيرة */
@media (max-width: 768px) {
    .hero .info h2 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .contact-buttons {
        left: 10px;
        bottom: 10px;
    }
    
    .contact-buttons a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
} 